From c2d9b75a798300d904eb44fdb6dd6012efabed67 Mon Sep 17 00:00:00 2001 From: Boris Besemer Date: Tue, 4 Mar 2025 22:10:46 +0100 Subject: [PATCH 01/13] feat: add src folder with initial args plan --- src/lib/graphql.ts | 1 + v2-plan.md | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 src/lib/graphql.ts create mode 100644 v2-plan.md diff --git a/src/lib/graphql.ts b/src/lib/graphql.ts new file mode 100644 index 0000000..1c8eec7 --- /dev/null +++ b/src/lib/graphql.ts @@ -0,0 +1 @@ +// Contains Schema parsing and transformation logic diff --git a/v2-plan.md b/v2-plan.md new file mode 100644 index 0000000..65003ac --- /dev/null +++ b/v2-plan.md @@ -0,0 +1,5 @@ +# V2 Plan + +V1 implementation is way too simple to work with, just a generic GraphQL query call is not enough. + +Idea is to generate tools based on the given schema for introspection. From c23e5a07d70125259ca81ebf542cd477f19ef96d Mon Sep 17 00:00:00 2001 From: Boris Besemer Date: Tue, 4 Mar 2025 22:31:17 +0100 Subject: [PATCH 02/13] feat: basic schema introspection load --- src/lib/graphql.ts | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/src/lib/graphql.ts b/src/lib/graphql.ts index 1c8eec7..c9348ea 100644 --- a/src/lib/graphql.ts +++ b/src/lib/graphql.ts @@ -1 +1,26 @@ // Contains Schema parsing and transformation logic + +import { getIntrospectionQuery } from "graphql"; + +export async function loadSchema( + endpoint: string, + headers?: Record +) { + if (endpoint) { + const response = await fetch(endpoint, { + headers: { + "Content-Type": "application/json", + ...headers, + }, + body: JSON.stringify({ + query: getIntrospectionQuery(), + }), + }); + + if (!response.ok) { + throw new Error(`Failed to fetch GraphQL schema: ${response.statusText}`); + } + + const data = await response.json(); + } +} From 1a01e1d9d30ab174fe6e998e0d4a673c82b7fb6d Mon Sep 17 00:00:00 2001 From: Boris Besemer Date: Wed, 5 Mar 2025 13:41:48 +0100 Subject: [PATCH 03/13] feat: add initial tool collection from gql parsing --- src/index.ts | 3 + src/lib/config.ts | 84 ++++++++++++++++++++ src/lib/graphql.ts | 194 ++++++++++++++++++++++++++++++++++++++++++++- 3 files changed, 280 insertions(+), 1 deletion(-) create mode 100644 src/lib/config.ts diff --git a/src/index.ts b/src/index.ts index 2d3646e..0422939 100644 --- a/src/index.ts +++ b/src/index.ts @@ -199,6 +199,9 @@ server.tool( }, ); +/** + * Connects the server to a transport + */ async function main() { const transport = new StdioServerTransport(); await server.connect(transport); diff --git a/src/lib/config.ts b/src/lib/config.ts new file mode 100644 index 0000000..6958ba9 --- /dev/null +++ b/src/lib/config.ts @@ -0,0 +1,84 @@ +import yargs from "yargs"; +import { hideBin } from "yargs/helpers"; +import { z } from "zod"; + +export const configSchema = z.discriminatedUnion( + "source", + [ + z.object({ + source: z.literal("endpoint"), + // Endpoint for the schema to be introspected and transformed into tools + endpoint: z.string().url(), + // Headers to be sent with the request to the schema endpoint + headers: z.record(z.string()).optional(), + // Allow MCP clients to use mutations, can potentially be dangerous so we disable by default + allowMutations: z.boolean().optional().default(false), + // Queries to exclude from the generated tools + excludeQueries: z.array(z.string()).optional(), + // Mutations to exclude from the generated tools + excludeMutations: z.array(z.string()).optional(), + }), + z.object({ + source: z.literal("file"), + // File path alternative to endpoint, will read the file instead of fetching the endpoint + schemaPath: z.string(), + // Allow MCP clients to use mutations, can potentially be dangerous so we disable by default + allowMutations: z.boolean().optional().default(false), + // Queries to exclude from the generated tools + excludeQueries: z.array(z.string()).optional(), + // Mutations to exclude from the generated tools + excludeMutations: z.array(z.string()).optional(), + }), + ], + { + errorMap: () => ({ + message: + "You must provide either an endpoint URL or a schema file path, but not both", + }), + } +); + +export type Config = z.infer; + +export function parseArgumentsToConfig(): Config { + const argv = yargs(hideBin(process.argv)) + .option("endpoint", { + type: "string", + description: + "Endpoint for the schema to be introspected and transformed into tools", + }) + .option("schemaPath", { + type: "string", + description: + "File path alternative to endpoint, will read the file instead of fetching the endpoint", + }) + .option("headers", { + type: "string", + description: + "JSON stringified headers to be sent with the request to the schema endpoint", + default: "{}", + }) + .option("allowMutations", { + type: "boolean", + description: + "Allow MCP clients to use mutations, can potentially be dangerous so we disable by default", + }) + .option("excludeQueries", { + type: "array", + description: "Queries to exclude from the generated tools", + }) + .option("excludeMutations", { + type: "array", + description: "Mutations to exclude from the generated tools", + }) + .help() + .parseSync(); + + const parsedArgs = { + ...argv, + headers: argv.headers ? JSON.parse(argv.headers) : undefined, + }; + + // Just let this throw, will catch it during main execution + return configSchema.parse(parsedArgs); +} diff --git a/src/lib/graphql.ts b/src/lib/graphql.ts index c9348ea..a00f78f 100644 --- a/src/lib/graphql.ts +++ b/src/lib/graphql.ts @@ -1,6 +1,17 @@ // Contains Schema parsing and transformation logic -import { getIntrospectionQuery } from "graphql"; +import { + Kind, + type OperationDefinitionNode, + type TypeNode, + type VariableDefinitionNode, + getIntrospectionQuery, + parse, +} from "graphql"; +import { readFile } from "node:fs/promises"; +import { z } from "zod"; +import zodToJsonSchema, { type JsonSchema7Type } from "zod-to-json-schema"; +import type { Config } from "./config"; export async function loadSchema( endpoint: string, @@ -22,5 +33,186 @@ export async function loadSchema( } const data = await response.json(); + + return data; } } + +export async function loadSchemaFromFile(path: string) { + const data = await readFile(path, "utf-8"); + + return data; +} + +/** + * Extracts all operations from a GraphQL schema and return them in a structured format + * @param schema - The GraphQL schema to extract operations from + * @returns An array of operations + */ +export async function getOperations(schema: string): Promise<{ + queries: OperationDefinitionNode[]; + mutations: OperationDefinitionNode[]; +}> { + const document = parse(schema); + + const operationDefinition = document.definitions.filter( + (definition) => definition.kind === "OperationDefinition" + ); + + // Subscriptions are not supported (yet?) + return { + queries: operationDefinition.filter( + (operation) => operation.operation === "query" + ), + mutations: operationDefinition.filter( + (operation) => operation.operation === "mutation" + ), + }; +} + +type Tool = { + name: string; + description: string; + parameters: z.ZodTypeAny; + inputSchema: JsonSchema7Type; +}; + +/** + * Converts a GraphQL operation to a MCP tool object + * @param operation - The GraphQL operation to convert + * @returns A MCP tool object + */ +export function operationToTool(operation: OperationDefinitionNode): Tool { + // Import necessary types if they're not already imported + + // Create a name for the tool based on the operation + const name = operation.name?.value + ? `${operation.operation}-${operation.name.value}` + : `anonymous-${operation.operation}`; + + // Get description from the operation or use a default + const description = + operation.name?.value || `Anonymous ${operation.operation}`; + + // Build parameters schema based on variable definitions + const paramSchema = buildZodSchemaFromVariables( + operation.variableDefinitions || [] + ); + + // Return the tool object + return { + name, + description, + parameters: paramSchema, + inputSchema: zodToJsonSchema(paramSchema), + }; +} + +/** + * Builds a Zod schema from GraphQL variable definitions + * @param variableDefinitions - The variable definitions from a GraphQL operation + * @returns A Zod schema object + */ +function buildZodSchemaFromVariables( + variableDefinitions: ReadonlyArray +) { + const schemaObj: Record = {}; + + for (const varDef of variableDefinitions) { + const varName = varDef.variable.name.value; + schemaObj[varName] = typeNodeToZodSchema(varDef.type); + } + + return z.object(schemaObj); +} + +/** + * Converts a GraphQL type node to a Zod schema + * @param typeNode - The GraphQL type node + * @returns A Zod schema + */ +function typeNodeToZodSchema(typeNode: TypeNode): z.ZodTypeAny { + switch (typeNode.kind) { + case Kind.NON_NULL_TYPE: + return typeNodeToZodSchema(typeNode.type); + + case Kind.LIST_TYPE: + return z.array(typeNodeToZodSchema(typeNode.type)); + + case Kind.NAMED_TYPE: + return namedTypeToZodSchema(typeNode.name.value); + + default: + return z.any(); + } +} + +/** + * Converts a GraphQL named type to a Zod schema + * @param typeName - The name of the GraphQL type + * @returns A Zod schema + */ +function namedTypeToZodSchema(typeName: string): z.ZodTypeAny { + switch (typeName) { + case "String": + return z.string(); + case "Int": + return z.number().int(); + case "Float": + return z.number(); + case "Boolean": + return z.boolean(); + case "ID": + return z.string(); + default: + // We just fallback to string for now when using custom scalars + // TODO: Handle custom scalars using configuration + return z.string(); + } +} + +export async function createGraphQLHandler(config: Config) { + let schema: string; + + if (config.source === "file") { + schema = await loadSchemaFromFile(config.schemaPath); + } else if (config.source === "endpoint") { + schema = await loadSchema(config.endpoint, config.headers); + } + + const tools: Array = []; + + return { + async getTools() { + const operations = await getOperations(schema); + + // Add queries + for (const operation of operations.queries) { + if ( + !operation.name?.value || + config.excludeQueries?.includes(operation.name.value) + ) { + // Operation not found or excluded + continue; + } + + tools.push(operationToTool(operation)); + } + + // Add mutations + for (const operation of operations.mutations) { + if ( + !operation.name?.value || + config.excludeMutations?.includes(operation.name.value) + ) { + // Operation not found or excluded + continue; + } + + tools.push(operationToTool(operation)); + } + + return tools; + }, + }; +} From 4a84807e16b4576c395a098352d9ee89beb3ffcb Mon Sep 17 00:00:00 2001 From: Boris Besemer Date: Wed, 5 Mar 2025 14:02:50 +0100 Subject: [PATCH 04/13] feat: add start of tool calling --- src/index.ts | 18 +++++++++++++- src/lib/graphql.ts | 60 +++++++++++++++++++++------------------------- 2 files changed, 44 insertions(+), 34 deletions(-) diff --git a/src/index.ts b/src/index.ts index 0422939..6b944c7 100644 --- a/src/index.ts +++ b/src/index.ts @@ -200,7 +200,23 @@ server.tool( ); /** - * Connects the server to a transport + * Handles tool calling from the client and executes the tool + */ +// async function handleToolCall(name: string, body: string, variables: string) { +// const tool = handler.getTool(name); +// if (!tool) { +// console.error(`Tool ${name} not found`); +// return { +// status: "error", +// message: `Tool ${name} not found`, +// }; +// } +// const result = await handler.execute(tool, body, variables); +// return result; +// } + +/** + * Sets up the transport and starts the server with it */ async function main() { const transport = new StdioServerTransport(); diff --git a/src/lib/graphql.ts b/src/lib/graphql.ts index a00f78f..620af69 100644 --- a/src/lib/graphql.ts +++ b/src/lib/graphql.ts @@ -49,25 +49,23 @@ export async function loadSchemaFromFile(path: string) { * @param schema - The GraphQL schema to extract operations from * @returns An array of operations */ -export async function getOperations(schema: string): Promise<{ - queries: OperationDefinitionNode[]; - mutations: OperationDefinitionNode[]; -}> { +export async function getOperations( + schema: string, + // Subscriptions are not supported (yet?) + allowedOperations: ("query" | "mutation")[] +): Promise { const document = parse(schema); const operationDefinition = document.definitions.filter( (definition) => definition.kind === "OperationDefinition" ); - // Subscriptions are not supported (yet?) - return { - queries: operationDefinition.filter( - (operation) => operation.operation === "query" - ), - mutations: operationDefinition.filter( - (operation) => operation.operation === "mutation" - ), - }; + return operationDefinition.filter((operation) => + allowedOperations.includes( + // TODO: Fix with proper types + operation.operation as unknown as "query" | "mutation" + ) + ); } type Tool = { @@ -180,39 +178,35 @@ export async function createGraphQLHandler(config: Config) { schema = await loadSchema(config.endpoint, config.headers); } - const tools: Array = []; + const tools = new Map(); return { - async getTools() { - const operations = await getOperations(schema); - - // Add queries - for (const operation of operations.queries) { - if ( - !operation.name?.value || - config.excludeQueries?.includes(operation.name.value) - ) { - // Operation not found or excluded - continue; - } - - tools.push(operationToTool(operation)); - } - - // Add mutations - for (const operation of operations.mutations) { + async loadTools() { + const operations = await getOperations( + schema, + config.allowMutations ? ["query", "mutation"] : ["query"] + ); + + // Add tools + for (const operation of operations) { if ( !operation.name?.value || + config.excludeQueries?.includes(operation.name.value) || config.excludeMutations?.includes(operation.name.value) ) { // Operation not found or excluded continue; } - tools.push(operationToTool(operation)); + const tool = operationToTool(operation); + + tools.set(tool.name, tool); } return tools; }, + getTool(name: string) { + return tools.get(name); + }, }; } From 57a2b3ad166c023df6c9c7786897aac3a353be38 Mon Sep 17 00:00:00 2001 From: Boris Besemer Date: Thu, 6 Mar 2025 14:50:12 +0100 Subject: [PATCH 05/13] feat: use graphql schema object to parse tools --- package.json | 8 + schema.graphql | 70315 +++++++++++++++++++++++++++++++++++++++++++ src/lib/config.ts | 51 +- src/lib/graphql.ts | 214 +- 4 files changed, 70474 insertions(+), 114 deletions(-) create mode 100644 schema.graphql diff --git a/package.json b/package.json index 1f171cb..860d98a 100644 --- a/package.json +++ b/package.json @@ -26,9 +26,17 @@ "zod-to-json-schema": "3.24.3" }, "scripts": { +<<<<<<< HEAD "dev": "bun --watch src/index.ts", "build": "bun build src/index.ts --outdir dist --target node && bun -e \"require('fs').chmodSync('dist/index.js', '755')\"", "start": "bun run dist/index.js" }, "packageManager": "bun@1.2.4" +======= + "dev": "bun --watch index.ts", + "build": "bun build index.ts --outdir dist --target node && bun -e \"require('fs').chmodSync('dist/index.js', '755')\"", + "build:new": "bun build src/index.ts --outdir dist --target node && bun -e \"require('fs').chmodSync('dist/index.js', '755')\"", + "start": "bun run dist/index.js --endpoint https://beta.pokeapi.co/graphql/v1beta" + } +>>>>>>> c36a65d (feat: use graphql schema object to parse tools) } diff --git a/schema.graphql b/schema.graphql new file mode 100644 index 0000000..22882ce --- /dev/null +++ b/schema.graphql @@ -0,0 +1,70315 @@ +schema { + query: query_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 + +""" +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!] +} + +""" +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!] +} + +""" +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 +} + +"""ordering argument of a cursor""" +enum cursor_ordering { + """ascending ordering of the cursor""" + ASC + + """descending ordering of the cursor""" + DESC +} + +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!] +} + +"""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 "pokemon_v2_ability" +""" +type pokemon_v2_ability { + generation_id: Int + id: Int! + is_main_series: Boolean! + name: String! + + """An array relationship""" + pokemon_v2_abilitychanges( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilitychange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilitychange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilitychange_bool_exp + ): [pokemon_v2_abilitychange!]! + + """An aggregate relationship""" + pokemon_v2_abilitychanges_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilitychange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilitychange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilitychange_bool_exp + ): pokemon_v2_abilitychange_aggregate! + + """An array relationship""" + pokemon_v2_abilityeffecttexts( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilityeffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilityeffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilityeffecttext_bool_exp + ): [pokemon_v2_abilityeffecttext!]! + + """An aggregate relationship""" + pokemon_v2_abilityeffecttexts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilityeffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilityeffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilityeffecttext_bool_exp + ): pokemon_v2_abilityeffecttext_aggregate! + + """An array relationship""" + pokemon_v2_abilityflavortexts( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilityflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilityflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilityflavortext_bool_exp + ): [pokemon_v2_abilityflavortext!]! + + """An aggregate relationship""" + pokemon_v2_abilityflavortexts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilityflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilityflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilityflavortext_bool_exp + ): pokemon_v2_abilityflavortext_aggregate! + + """An array relationship""" + pokemon_v2_abilitynames( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilityname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilityname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilityname_bool_exp + ): [pokemon_v2_abilityname!]! + + """An aggregate relationship""" + pokemon_v2_abilitynames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilityname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilityname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilityname_bool_exp + ): pokemon_v2_abilityname_aggregate! + + """An object relationship""" + pokemon_v2_generation: pokemon_v2_generation + + """An array relationship""" + pokemon_v2_pokemonabilities( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonability_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonability_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonability_bool_exp + ): [pokemon_v2_pokemonability!]! + + """An aggregate relationship""" + pokemon_v2_pokemonabilities_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonability_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonability_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonability_bool_exp + ): pokemon_v2_pokemonability_aggregate! + + """An array relationship""" + pokemon_v2_pokemonabilitypasts( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonabilitypast_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonabilitypast_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonabilitypast_bool_exp + ): [pokemon_v2_pokemonabilitypast!]! + + """An aggregate relationship""" + pokemon_v2_pokemonabilitypasts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonabilitypast_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonabilitypast_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonabilitypast_bool_exp + ): pokemon_v2_pokemonabilitypast_aggregate! +} + +""" +aggregated selection of "pokemon_v2_ability" +""" +type pokemon_v2_ability_aggregate { + aggregate: pokemon_v2_ability_aggregate_fields + nodes: [pokemon_v2_ability!]! +} + +input pokemon_v2_ability_aggregate_bool_exp { + bool_and: pokemon_v2_ability_aggregate_bool_exp_bool_and + bool_or: pokemon_v2_ability_aggregate_bool_exp_bool_or + count: pokemon_v2_ability_aggregate_bool_exp_count +} + +input pokemon_v2_ability_aggregate_bool_exp_bool_and { + arguments: pokemon_v2_ability_select_column_pokemon_v2_ability_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: pokemon_v2_ability_bool_exp + predicate: Boolean_comparison_exp! +} + +input pokemon_v2_ability_aggregate_bool_exp_bool_or { + arguments: pokemon_v2_ability_select_column_pokemon_v2_ability_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: pokemon_v2_ability_bool_exp + predicate: Boolean_comparison_exp! +} + +input pokemon_v2_ability_aggregate_bool_exp_count { + arguments: [pokemon_v2_ability_select_column!] + distinct: Boolean + filter: pokemon_v2_ability_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_ability" +""" +type pokemon_v2_ability_aggregate_fields { + avg: pokemon_v2_ability_avg_fields + count(columns: [pokemon_v2_ability_select_column!], distinct: Boolean): Int! + max: pokemon_v2_ability_max_fields + min: pokemon_v2_ability_min_fields + stddev: pokemon_v2_ability_stddev_fields + stddev_pop: pokemon_v2_ability_stddev_pop_fields + stddev_samp: pokemon_v2_ability_stddev_samp_fields + sum: pokemon_v2_ability_sum_fields + var_pop: pokemon_v2_ability_var_pop_fields + var_samp: pokemon_v2_ability_var_samp_fields + variance: pokemon_v2_ability_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_ability" +""" +input pokemon_v2_ability_aggregate_order_by { + avg: pokemon_v2_ability_avg_order_by + count: order_by + max: pokemon_v2_ability_max_order_by + min: pokemon_v2_ability_min_order_by + stddev: pokemon_v2_ability_stddev_order_by + stddev_pop: pokemon_v2_ability_stddev_pop_order_by + stddev_samp: pokemon_v2_ability_stddev_samp_order_by + sum: pokemon_v2_ability_sum_order_by + var_pop: pokemon_v2_ability_var_pop_order_by + var_samp: pokemon_v2_ability_var_samp_order_by + variance: pokemon_v2_ability_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_ability_avg_fields { + generation_id: Float + id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_ability" +""" +input pokemon_v2_ability_avg_order_by { + generation_id: order_by + id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_ability". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_ability_bool_exp { + _and: [pokemon_v2_ability_bool_exp!] + _not: pokemon_v2_ability_bool_exp + _or: [pokemon_v2_ability_bool_exp!] + generation_id: Int_comparison_exp + id: Int_comparison_exp + is_main_series: Boolean_comparison_exp + name: String_comparison_exp + pokemon_v2_abilitychanges: pokemon_v2_abilitychange_bool_exp + pokemon_v2_abilitychanges_aggregate: pokemon_v2_abilitychange_aggregate_bool_exp + pokemon_v2_abilityeffecttexts: pokemon_v2_abilityeffecttext_bool_exp + pokemon_v2_abilityeffecttexts_aggregate: pokemon_v2_abilityeffecttext_aggregate_bool_exp + pokemon_v2_abilityflavortexts: pokemon_v2_abilityflavortext_bool_exp + pokemon_v2_abilityflavortexts_aggregate: pokemon_v2_abilityflavortext_aggregate_bool_exp + pokemon_v2_abilitynames: pokemon_v2_abilityname_bool_exp + pokemon_v2_abilitynames_aggregate: pokemon_v2_abilityname_aggregate_bool_exp + pokemon_v2_generation: pokemon_v2_generation_bool_exp + pokemon_v2_pokemonabilities: pokemon_v2_pokemonability_bool_exp + pokemon_v2_pokemonabilities_aggregate: pokemon_v2_pokemonability_aggregate_bool_exp + pokemon_v2_pokemonabilitypasts: pokemon_v2_pokemonabilitypast_bool_exp + pokemon_v2_pokemonabilitypasts_aggregate: pokemon_v2_pokemonabilitypast_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_ability_max_fields { + generation_id: Int + id: Int + name: String +} + +""" +order by max() on columns of table "pokemon_v2_ability" +""" +input pokemon_v2_ability_max_order_by { + generation_id: order_by + id: order_by + name: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_ability_min_fields { + generation_id: Int + id: Int + name: String +} + +""" +order by min() on columns of table "pokemon_v2_ability" +""" +input pokemon_v2_ability_min_order_by { + generation_id: order_by + id: order_by + name: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_ability".""" +input pokemon_v2_ability_order_by { + generation_id: order_by + id: order_by + is_main_series: order_by + name: order_by + pokemon_v2_abilitychanges_aggregate: pokemon_v2_abilitychange_aggregate_order_by + pokemon_v2_abilityeffecttexts_aggregate: pokemon_v2_abilityeffecttext_aggregate_order_by + pokemon_v2_abilityflavortexts_aggregate: pokemon_v2_abilityflavortext_aggregate_order_by + pokemon_v2_abilitynames_aggregate: pokemon_v2_abilityname_aggregate_order_by + pokemon_v2_generation: pokemon_v2_generation_order_by + pokemon_v2_pokemonabilities_aggregate: pokemon_v2_pokemonability_aggregate_order_by + pokemon_v2_pokemonabilitypasts_aggregate: pokemon_v2_pokemonabilitypast_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_ability" +""" +enum pokemon_v2_ability_select_column { + """column name""" + generation_id + + """column name""" + id + + """column name""" + is_main_series + + """column name""" + name +} + +""" +select "pokemon_v2_ability_aggregate_bool_exp_bool_and_arguments_columns" columns of table "pokemon_v2_ability" +""" +enum pokemon_v2_ability_select_column_pokemon_v2_ability_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + is_main_series +} + +""" +select "pokemon_v2_ability_aggregate_bool_exp_bool_or_arguments_columns" columns of table "pokemon_v2_ability" +""" +enum pokemon_v2_ability_select_column_pokemon_v2_ability_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + is_main_series +} + +"""aggregate stddev on columns""" +type pokemon_v2_ability_stddev_fields { + generation_id: Float + id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_ability" +""" +input pokemon_v2_ability_stddev_order_by { + generation_id: order_by + id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_ability_stddev_pop_fields { + generation_id: Float + id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_ability" +""" +input pokemon_v2_ability_stddev_pop_order_by { + generation_id: order_by + id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_ability_stddev_samp_fields { + generation_id: Float + id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_ability" +""" +input pokemon_v2_ability_stddev_samp_order_by { + generation_id: order_by + id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_ability" +""" +input pokemon_v2_ability_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_ability_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_ability_stream_cursor_value_input { + generation_id: Int + id: Int + is_main_series: Boolean + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_ability_sum_fields { + generation_id: Int + id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_ability" +""" +input pokemon_v2_ability_sum_order_by { + generation_id: order_by + id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_ability_var_pop_fields { + generation_id: Float + id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_ability" +""" +input pokemon_v2_ability_var_pop_order_by { + generation_id: order_by + id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_ability_var_samp_fields { + generation_id: Float + id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_ability" +""" +input pokemon_v2_ability_var_samp_order_by { + generation_id: order_by + id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_ability_variance_fields { + generation_id: Float + id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_ability" +""" +input pokemon_v2_ability_variance_order_by { + generation_id: order_by + id: order_by +} + +""" +columns and relationships of "pokemon_v2_abilitychange" +""" +type pokemon_v2_abilitychange { + ability_id: Int + id: Int! + + """An object relationship""" + pokemon_v2_ability: pokemon_v2_ability + + """An array relationship""" + pokemon_v2_abilitychangeeffecttexts( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilitychangeeffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilitychangeeffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilitychangeeffecttext_bool_exp + ): [pokemon_v2_abilitychangeeffecttext!]! + + """An aggregate relationship""" + pokemon_v2_abilitychangeeffecttexts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilitychangeeffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilitychangeeffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilitychangeeffecttext_bool_exp + ): pokemon_v2_abilitychangeeffecttext_aggregate! + + """An object relationship""" + pokemon_v2_versiongroup: pokemon_v2_versiongroup + version_group_id: Int +} + +""" +aggregated selection of "pokemon_v2_abilitychange" +""" +type pokemon_v2_abilitychange_aggregate { + aggregate: pokemon_v2_abilitychange_aggregate_fields + nodes: [pokemon_v2_abilitychange!]! +} + +input pokemon_v2_abilitychange_aggregate_bool_exp { + count: pokemon_v2_abilitychange_aggregate_bool_exp_count +} + +input pokemon_v2_abilitychange_aggregate_bool_exp_count { + arguments: [pokemon_v2_abilitychange_select_column!] + distinct: Boolean + filter: pokemon_v2_abilitychange_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_abilitychange" +""" +type pokemon_v2_abilitychange_aggregate_fields { + avg: pokemon_v2_abilitychange_avg_fields + count(columns: [pokemon_v2_abilitychange_select_column!], distinct: Boolean): Int! + max: pokemon_v2_abilitychange_max_fields + min: pokemon_v2_abilitychange_min_fields + stddev: pokemon_v2_abilitychange_stddev_fields + stddev_pop: pokemon_v2_abilitychange_stddev_pop_fields + stddev_samp: pokemon_v2_abilitychange_stddev_samp_fields + sum: pokemon_v2_abilitychange_sum_fields + var_pop: pokemon_v2_abilitychange_var_pop_fields + var_samp: pokemon_v2_abilitychange_var_samp_fields + variance: pokemon_v2_abilitychange_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_abilitychange" +""" +input pokemon_v2_abilitychange_aggregate_order_by { + avg: pokemon_v2_abilitychange_avg_order_by + count: order_by + max: pokemon_v2_abilitychange_max_order_by + min: pokemon_v2_abilitychange_min_order_by + stddev: pokemon_v2_abilitychange_stddev_order_by + stddev_pop: pokemon_v2_abilitychange_stddev_pop_order_by + stddev_samp: pokemon_v2_abilitychange_stddev_samp_order_by + sum: pokemon_v2_abilitychange_sum_order_by + var_pop: pokemon_v2_abilitychange_var_pop_order_by + var_samp: pokemon_v2_abilitychange_var_samp_order_by + variance: pokemon_v2_abilitychange_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_abilitychange_avg_fields { + ability_id: Float + id: Float + version_group_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_abilitychange" +""" +input pokemon_v2_abilitychange_avg_order_by { + ability_id: order_by + id: order_by + version_group_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_abilitychange". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_abilitychange_bool_exp { + _and: [pokemon_v2_abilitychange_bool_exp!] + _not: pokemon_v2_abilitychange_bool_exp + _or: [pokemon_v2_abilitychange_bool_exp!] + ability_id: Int_comparison_exp + id: Int_comparison_exp + pokemon_v2_ability: pokemon_v2_ability_bool_exp + pokemon_v2_abilitychangeeffecttexts: pokemon_v2_abilitychangeeffecttext_bool_exp + pokemon_v2_abilitychangeeffecttexts_aggregate: pokemon_v2_abilitychangeeffecttext_aggregate_bool_exp + pokemon_v2_versiongroup: pokemon_v2_versiongroup_bool_exp + version_group_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_abilitychange_max_fields { + ability_id: Int + id: Int + version_group_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_abilitychange" +""" +input pokemon_v2_abilitychange_max_order_by { + ability_id: order_by + id: order_by + version_group_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_abilitychange_min_fields { + ability_id: Int + id: Int + version_group_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_abilitychange" +""" +input pokemon_v2_abilitychange_min_order_by { + ability_id: order_by + id: order_by + version_group_id: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_abilitychange".""" +input pokemon_v2_abilitychange_order_by { + ability_id: order_by + id: order_by + pokemon_v2_ability: pokemon_v2_ability_order_by + pokemon_v2_abilitychangeeffecttexts_aggregate: pokemon_v2_abilitychangeeffecttext_aggregate_order_by + pokemon_v2_versiongroup: pokemon_v2_versiongroup_order_by + version_group_id: order_by +} + +""" +select columns of table "pokemon_v2_abilitychange" +""" +enum pokemon_v2_abilitychange_select_column { + """column name""" + ability_id + + """column name""" + id + + """column name""" + version_group_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_abilitychange_stddev_fields { + ability_id: Float + id: Float + version_group_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_abilitychange" +""" +input pokemon_v2_abilitychange_stddev_order_by { + ability_id: order_by + id: order_by + version_group_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_abilitychange_stddev_pop_fields { + ability_id: Float + id: Float + version_group_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_abilitychange" +""" +input pokemon_v2_abilitychange_stddev_pop_order_by { + ability_id: order_by + id: order_by + version_group_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_abilitychange_stddev_samp_fields { + ability_id: Float + id: Float + version_group_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_abilitychange" +""" +input pokemon_v2_abilitychange_stddev_samp_order_by { + ability_id: order_by + id: order_by + version_group_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_abilitychange" +""" +input pokemon_v2_abilitychange_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_abilitychange_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_abilitychange_stream_cursor_value_input { + ability_id: Int + id: Int + version_group_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_abilitychange_sum_fields { + ability_id: Int + id: Int + version_group_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_abilitychange" +""" +input pokemon_v2_abilitychange_sum_order_by { + ability_id: order_by + id: order_by + version_group_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_abilitychange_var_pop_fields { + ability_id: Float + id: Float + version_group_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_abilitychange" +""" +input pokemon_v2_abilitychange_var_pop_order_by { + ability_id: order_by + id: order_by + version_group_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_abilitychange_var_samp_fields { + ability_id: Float + id: Float + version_group_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_abilitychange" +""" +input pokemon_v2_abilitychange_var_samp_order_by { + ability_id: order_by + id: order_by + version_group_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_abilitychange_variance_fields { + ability_id: Float + id: Float + version_group_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_abilitychange" +""" +input pokemon_v2_abilitychange_variance_order_by { + ability_id: order_by + id: order_by + version_group_id: order_by +} + +""" +columns and relationships of "pokemon_v2_abilitychangeeffecttext" +""" +type pokemon_v2_abilitychangeeffecttext { + ability_change_id: Int + effect: String! + id: Int! + language_id: Int + + """An object relationship""" + pokemon_v2_abilitychange: pokemon_v2_abilitychange + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language +} + +""" +aggregated selection of "pokemon_v2_abilitychangeeffecttext" +""" +type pokemon_v2_abilitychangeeffecttext_aggregate { + aggregate: pokemon_v2_abilitychangeeffecttext_aggregate_fields + nodes: [pokemon_v2_abilitychangeeffecttext!]! +} + +input pokemon_v2_abilitychangeeffecttext_aggregate_bool_exp { + count: pokemon_v2_abilitychangeeffecttext_aggregate_bool_exp_count +} + +input pokemon_v2_abilitychangeeffecttext_aggregate_bool_exp_count { + arguments: [pokemon_v2_abilitychangeeffecttext_select_column!] + distinct: Boolean + filter: pokemon_v2_abilitychangeeffecttext_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_abilitychangeeffecttext" +""" +type pokemon_v2_abilitychangeeffecttext_aggregate_fields { + avg: pokemon_v2_abilitychangeeffecttext_avg_fields + count(columns: [pokemon_v2_abilitychangeeffecttext_select_column!], distinct: Boolean): Int! + max: pokemon_v2_abilitychangeeffecttext_max_fields + min: pokemon_v2_abilitychangeeffecttext_min_fields + stddev: pokemon_v2_abilitychangeeffecttext_stddev_fields + stddev_pop: pokemon_v2_abilitychangeeffecttext_stddev_pop_fields + stddev_samp: pokemon_v2_abilitychangeeffecttext_stddev_samp_fields + sum: pokemon_v2_abilitychangeeffecttext_sum_fields + var_pop: pokemon_v2_abilitychangeeffecttext_var_pop_fields + var_samp: pokemon_v2_abilitychangeeffecttext_var_samp_fields + variance: pokemon_v2_abilitychangeeffecttext_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_abilitychangeeffecttext" +""" +input pokemon_v2_abilitychangeeffecttext_aggregate_order_by { + avg: pokemon_v2_abilitychangeeffecttext_avg_order_by + count: order_by + max: pokemon_v2_abilitychangeeffecttext_max_order_by + min: pokemon_v2_abilitychangeeffecttext_min_order_by + stddev: pokemon_v2_abilitychangeeffecttext_stddev_order_by + stddev_pop: pokemon_v2_abilitychangeeffecttext_stddev_pop_order_by + stddev_samp: pokemon_v2_abilitychangeeffecttext_stddev_samp_order_by + sum: pokemon_v2_abilitychangeeffecttext_sum_order_by + var_pop: pokemon_v2_abilitychangeeffecttext_var_pop_order_by + var_samp: pokemon_v2_abilitychangeeffecttext_var_samp_order_by + variance: pokemon_v2_abilitychangeeffecttext_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_abilitychangeeffecttext_avg_fields { + ability_change_id: Float + id: Float + language_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_abilitychangeeffecttext" +""" +input pokemon_v2_abilitychangeeffecttext_avg_order_by { + ability_change_id: order_by + id: order_by + language_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_abilitychangeeffecttext". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_abilitychangeeffecttext_bool_exp { + _and: [pokemon_v2_abilitychangeeffecttext_bool_exp!] + _not: pokemon_v2_abilitychangeeffecttext_bool_exp + _or: [pokemon_v2_abilitychangeeffecttext_bool_exp!] + ability_change_id: Int_comparison_exp + effect: String_comparison_exp + id: Int_comparison_exp + language_id: Int_comparison_exp + pokemon_v2_abilitychange: pokemon_v2_abilitychange_bool_exp + pokemon_v2_language: pokemon_v2_language_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_abilitychangeeffecttext_max_fields { + ability_change_id: Int + effect: String + id: Int + language_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_abilitychangeeffecttext" +""" +input pokemon_v2_abilitychangeeffecttext_max_order_by { + ability_change_id: order_by + effect: order_by + id: order_by + language_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_abilitychangeeffecttext_min_fields { + ability_change_id: Int + effect: String + id: Int + language_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_abilitychangeeffecttext" +""" +input pokemon_v2_abilitychangeeffecttext_min_order_by { + ability_change_id: order_by + effect: order_by + id: order_by + language_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_abilitychangeeffecttext". +""" +input pokemon_v2_abilitychangeeffecttext_order_by { + ability_change_id: order_by + effect: order_by + id: order_by + language_id: order_by + pokemon_v2_abilitychange: pokemon_v2_abilitychange_order_by + pokemon_v2_language: pokemon_v2_language_order_by +} + +""" +select columns of table "pokemon_v2_abilitychangeeffecttext" +""" +enum pokemon_v2_abilitychangeeffecttext_select_column { + """column name""" + ability_change_id + + """column name""" + effect + + """column name""" + id + + """column name""" + language_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_abilitychangeeffecttext_stddev_fields { + ability_change_id: Float + id: Float + language_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_abilitychangeeffecttext" +""" +input pokemon_v2_abilitychangeeffecttext_stddev_order_by { + ability_change_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_abilitychangeeffecttext_stddev_pop_fields { + ability_change_id: Float + id: Float + language_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_abilitychangeeffecttext" +""" +input pokemon_v2_abilitychangeeffecttext_stddev_pop_order_by { + ability_change_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_abilitychangeeffecttext_stddev_samp_fields { + ability_change_id: Float + id: Float + language_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_abilitychangeeffecttext" +""" +input pokemon_v2_abilitychangeeffecttext_stddev_samp_order_by { + ability_change_id: order_by + id: order_by + language_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_abilitychangeeffecttext" +""" +input pokemon_v2_abilitychangeeffecttext_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_abilitychangeeffecttext_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_abilitychangeeffecttext_stream_cursor_value_input { + ability_change_id: Int + effect: String + id: Int + language_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_abilitychangeeffecttext_sum_fields { + ability_change_id: Int + id: Int + language_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_abilitychangeeffecttext" +""" +input pokemon_v2_abilitychangeeffecttext_sum_order_by { + ability_change_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_abilitychangeeffecttext_var_pop_fields { + ability_change_id: Float + id: Float + language_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_abilitychangeeffecttext" +""" +input pokemon_v2_abilitychangeeffecttext_var_pop_order_by { + ability_change_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_abilitychangeeffecttext_var_samp_fields { + ability_change_id: Float + id: Float + language_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_abilitychangeeffecttext" +""" +input pokemon_v2_abilitychangeeffecttext_var_samp_order_by { + ability_change_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_abilitychangeeffecttext_variance_fields { + ability_change_id: Float + id: Float + language_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_abilitychangeeffecttext" +""" +input pokemon_v2_abilitychangeeffecttext_variance_order_by { + ability_change_id: order_by + id: order_by + language_id: order_by +} + +""" +columns and relationships of "pokemon_v2_abilityeffecttext" +""" +type pokemon_v2_abilityeffecttext { + ability_id: Int + effect: String! + id: Int! + language_id: Int + + """An object relationship""" + pokemon_v2_ability: pokemon_v2_ability + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + short_effect: String! +} + +""" +aggregated selection of "pokemon_v2_abilityeffecttext" +""" +type pokemon_v2_abilityeffecttext_aggregate { + aggregate: pokemon_v2_abilityeffecttext_aggregate_fields + nodes: [pokemon_v2_abilityeffecttext!]! +} + +input pokemon_v2_abilityeffecttext_aggregate_bool_exp { + count: pokemon_v2_abilityeffecttext_aggregate_bool_exp_count +} + +input pokemon_v2_abilityeffecttext_aggregate_bool_exp_count { + arguments: [pokemon_v2_abilityeffecttext_select_column!] + distinct: Boolean + filter: pokemon_v2_abilityeffecttext_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_abilityeffecttext" +""" +type pokemon_v2_abilityeffecttext_aggregate_fields { + avg: pokemon_v2_abilityeffecttext_avg_fields + count(columns: [pokemon_v2_abilityeffecttext_select_column!], distinct: Boolean): Int! + max: pokemon_v2_abilityeffecttext_max_fields + min: pokemon_v2_abilityeffecttext_min_fields + stddev: pokemon_v2_abilityeffecttext_stddev_fields + stddev_pop: pokemon_v2_abilityeffecttext_stddev_pop_fields + stddev_samp: pokemon_v2_abilityeffecttext_stddev_samp_fields + sum: pokemon_v2_abilityeffecttext_sum_fields + var_pop: pokemon_v2_abilityeffecttext_var_pop_fields + var_samp: pokemon_v2_abilityeffecttext_var_samp_fields + variance: pokemon_v2_abilityeffecttext_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_abilityeffecttext" +""" +input pokemon_v2_abilityeffecttext_aggregate_order_by { + avg: pokemon_v2_abilityeffecttext_avg_order_by + count: order_by + max: pokemon_v2_abilityeffecttext_max_order_by + min: pokemon_v2_abilityeffecttext_min_order_by + stddev: pokemon_v2_abilityeffecttext_stddev_order_by + stddev_pop: pokemon_v2_abilityeffecttext_stddev_pop_order_by + stddev_samp: pokemon_v2_abilityeffecttext_stddev_samp_order_by + sum: pokemon_v2_abilityeffecttext_sum_order_by + var_pop: pokemon_v2_abilityeffecttext_var_pop_order_by + var_samp: pokemon_v2_abilityeffecttext_var_samp_order_by + variance: pokemon_v2_abilityeffecttext_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_abilityeffecttext_avg_fields { + ability_id: Float + id: Float + language_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_abilityeffecttext" +""" +input pokemon_v2_abilityeffecttext_avg_order_by { + ability_id: order_by + id: order_by + language_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_abilityeffecttext". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_abilityeffecttext_bool_exp { + _and: [pokemon_v2_abilityeffecttext_bool_exp!] + _not: pokemon_v2_abilityeffecttext_bool_exp + _or: [pokemon_v2_abilityeffecttext_bool_exp!] + ability_id: Int_comparison_exp + effect: String_comparison_exp + id: Int_comparison_exp + language_id: Int_comparison_exp + pokemon_v2_ability: pokemon_v2_ability_bool_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + short_effect: String_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_abilityeffecttext_max_fields { + ability_id: Int + effect: String + id: Int + language_id: Int + short_effect: String +} + +""" +order by max() on columns of table "pokemon_v2_abilityeffecttext" +""" +input pokemon_v2_abilityeffecttext_max_order_by { + ability_id: order_by + effect: order_by + id: order_by + language_id: order_by + short_effect: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_abilityeffecttext_min_fields { + ability_id: Int + effect: String + id: Int + language_id: Int + short_effect: String +} + +""" +order by min() on columns of table "pokemon_v2_abilityeffecttext" +""" +input pokemon_v2_abilityeffecttext_min_order_by { + ability_id: order_by + effect: order_by + id: order_by + language_id: order_by + short_effect: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_abilityeffecttext". +""" +input pokemon_v2_abilityeffecttext_order_by { + ability_id: order_by + effect: order_by + id: order_by + language_id: order_by + pokemon_v2_ability: pokemon_v2_ability_order_by + pokemon_v2_language: pokemon_v2_language_order_by + short_effect: order_by +} + +""" +select columns of table "pokemon_v2_abilityeffecttext" +""" +enum pokemon_v2_abilityeffecttext_select_column { + """column name""" + ability_id + + """column name""" + effect + + """column name""" + id + + """column name""" + language_id + + """column name""" + short_effect +} + +"""aggregate stddev on columns""" +type pokemon_v2_abilityeffecttext_stddev_fields { + ability_id: Float + id: Float + language_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_abilityeffecttext" +""" +input pokemon_v2_abilityeffecttext_stddev_order_by { + ability_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_abilityeffecttext_stddev_pop_fields { + ability_id: Float + id: Float + language_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_abilityeffecttext" +""" +input pokemon_v2_abilityeffecttext_stddev_pop_order_by { + ability_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_abilityeffecttext_stddev_samp_fields { + ability_id: Float + id: Float + language_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_abilityeffecttext" +""" +input pokemon_v2_abilityeffecttext_stddev_samp_order_by { + ability_id: order_by + id: order_by + language_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_abilityeffecttext" +""" +input pokemon_v2_abilityeffecttext_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_abilityeffecttext_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_abilityeffecttext_stream_cursor_value_input { + ability_id: Int + effect: String + id: Int + language_id: Int + short_effect: String +} + +"""aggregate sum on columns""" +type pokemon_v2_abilityeffecttext_sum_fields { + ability_id: Int + id: Int + language_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_abilityeffecttext" +""" +input pokemon_v2_abilityeffecttext_sum_order_by { + ability_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_abilityeffecttext_var_pop_fields { + ability_id: Float + id: Float + language_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_abilityeffecttext" +""" +input pokemon_v2_abilityeffecttext_var_pop_order_by { + ability_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_abilityeffecttext_var_samp_fields { + ability_id: Float + id: Float + language_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_abilityeffecttext" +""" +input pokemon_v2_abilityeffecttext_var_samp_order_by { + ability_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_abilityeffecttext_variance_fields { + ability_id: Float + id: Float + language_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_abilityeffecttext" +""" +input pokemon_v2_abilityeffecttext_variance_order_by { + ability_id: order_by + id: order_by + language_id: order_by +} + +""" +columns and relationships of "pokemon_v2_abilityflavortext" +""" +type pokemon_v2_abilityflavortext { + ability_id: Int + flavor_text: String! + id: Int! + language_id: Int + + """An object relationship""" + pokemon_v2_ability: pokemon_v2_ability + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_versiongroup: pokemon_v2_versiongroup + version_group_id: Int +} + +""" +aggregated selection of "pokemon_v2_abilityflavortext" +""" +type pokemon_v2_abilityflavortext_aggregate { + aggregate: pokemon_v2_abilityflavortext_aggregate_fields + nodes: [pokemon_v2_abilityflavortext!]! +} + +input pokemon_v2_abilityflavortext_aggregate_bool_exp { + count: pokemon_v2_abilityflavortext_aggregate_bool_exp_count +} + +input pokemon_v2_abilityflavortext_aggregate_bool_exp_count { + arguments: [pokemon_v2_abilityflavortext_select_column!] + distinct: Boolean + filter: pokemon_v2_abilityflavortext_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_abilityflavortext" +""" +type pokemon_v2_abilityflavortext_aggregate_fields { + avg: pokemon_v2_abilityflavortext_avg_fields + count(columns: [pokemon_v2_abilityflavortext_select_column!], distinct: Boolean): Int! + max: pokemon_v2_abilityflavortext_max_fields + min: pokemon_v2_abilityflavortext_min_fields + stddev: pokemon_v2_abilityflavortext_stddev_fields + stddev_pop: pokemon_v2_abilityflavortext_stddev_pop_fields + stddev_samp: pokemon_v2_abilityflavortext_stddev_samp_fields + sum: pokemon_v2_abilityflavortext_sum_fields + var_pop: pokemon_v2_abilityflavortext_var_pop_fields + var_samp: pokemon_v2_abilityflavortext_var_samp_fields + variance: pokemon_v2_abilityflavortext_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_abilityflavortext" +""" +input pokemon_v2_abilityflavortext_aggregate_order_by { + avg: pokemon_v2_abilityflavortext_avg_order_by + count: order_by + max: pokemon_v2_abilityflavortext_max_order_by + min: pokemon_v2_abilityflavortext_min_order_by + stddev: pokemon_v2_abilityflavortext_stddev_order_by + stddev_pop: pokemon_v2_abilityflavortext_stddev_pop_order_by + stddev_samp: pokemon_v2_abilityflavortext_stddev_samp_order_by + sum: pokemon_v2_abilityflavortext_sum_order_by + var_pop: pokemon_v2_abilityflavortext_var_pop_order_by + var_samp: pokemon_v2_abilityflavortext_var_samp_order_by + variance: pokemon_v2_abilityflavortext_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_abilityflavortext_avg_fields { + ability_id: Float + id: Float + language_id: Float + version_group_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_abilityflavortext" +""" +input pokemon_v2_abilityflavortext_avg_order_by { + ability_id: order_by + id: order_by + language_id: order_by + version_group_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_abilityflavortext". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_abilityflavortext_bool_exp { + _and: [pokemon_v2_abilityflavortext_bool_exp!] + _not: pokemon_v2_abilityflavortext_bool_exp + _or: [pokemon_v2_abilityflavortext_bool_exp!] + ability_id: Int_comparison_exp + flavor_text: String_comparison_exp + id: Int_comparison_exp + language_id: Int_comparison_exp + pokemon_v2_ability: pokemon_v2_ability_bool_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_versiongroup: pokemon_v2_versiongroup_bool_exp + version_group_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_abilityflavortext_max_fields { + ability_id: Int + flavor_text: String + id: Int + language_id: Int + version_group_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_abilityflavortext" +""" +input pokemon_v2_abilityflavortext_max_order_by { + ability_id: order_by + flavor_text: order_by + id: order_by + language_id: order_by + version_group_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_abilityflavortext_min_fields { + ability_id: Int + flavor_text: String + id: Int + language_id: Int + version_group_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_abilityflavortext" +""" +input pokemon_v2_abilityflavortext_min_order_by { + ability_id: order_by + flavor_text: order_by + id: order_by + language_id: order_by + version_group_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_abilityflavortext". +""" +input pokemon_v2_abilityflavortext_order_by { + ability_id: order_by + flavor_text: order_by + id: order_by + language_id: order_by + pokemon_v2_ability: pokemon_v2_ability_order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_versiongroup: pokemon_v2_versiongroup_order_by + version_group_id: order_by +} + +""" +select columns of table "pokemon_v2_abilityflavortext" +""" +enum pokemon_v2_abilityflavortext_select_column { + """column name""" + ability_id + + """column name""" + flavor_text + + """column name""" + id + + """column name""" + language_id + + """column name""" + version_group_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_abilityflavortext_stddev_fields { + ability_id: Float + id: Float + language_id: Float + version_group_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_abilityflavortext" +""" +input pokemon_v2_abilityflavortext_stddev_order_by { + ability_id: order_by + id: order_by + language_id: order_by + version_group_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_abilityflavortext_stddev_pop_fields { + ability_id: Float + id: Float + language_id: Float + version_group_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_abilityflavortext" +""" +input pokemon_v2_abilityflavortext_stddev_pop_order_by { + ability_id: order_by + id: order_by + language_id: order_by + version_group_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_abilityflavortext_stddev_samp_fields { + ability_id: Float + id: Float + language_id: Float + version_group_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_abilityflavortext" +""" +input pokemon_v2_abilityflavortext_stddev_samp_order_by { + ability_id: order_by + id: order_by + language_id: order_by + version_group_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_abilityflavortext" +""" +input pokemon_v2_abilityflavortext_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_abilityflavortext_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_abilityflavortext_stream_cursor_value_input { + ability_id: Int + flavor_text: String + id: Int + language_id: Int + version_group_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_abilityflavortext_sum_fields { + ability_id: Int + id: Int + language_id: Int + version_group_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_abilityflavortext" +""" +input pokemon_v2_abilityflavortext_sum_order_by { + ability_id: order_by + id: order_by + language_id: order_by + version_group_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_abilityflavortext_var_pop_fields { + ability_id: Float + id: Float + language_id: Float + version_group_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_abilityflavortext" +""" +input pokemon_v2_abilityflavortext_var_pop_order_by { + ability_id: order_by + id: order_by + language_id: order_by + version_group_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_abilityflavortext_var_samp_fields { + ability_id: Float + id: Float + language_id: Float + version_group_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_abilityflavortext" +""" +input pokemon_v2_abilityflavortext_var_samp_order_by { + ability_id: order_by + id: order_by + language_id: order_by + version_group_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_abilityflavortext_variance_fields { + ability_id: Float + id: Float + language_id: Float + version_group_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_abilityflavortext" +""" +input pokemon_v2_abilityflavortext_variance_order_by { + ability_id: order_by + id: order_by + language_id: order_by + version_group_id: order_by +} + +""" +columns and relationships of "pokemon_v2_abilityname" +""" +type pokemon_v2_abilityname { + ability_id: Int + id: Int! + language_id: Int + name: String! + + """An object relationship""" + pokemon_v2_ability: pokemon_v2_ability + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language +} + +""" +aggregated selection of "pokemon_v2_abilityname" +""" +type pokemon_v2_abilityname_aggregate { + aggregate: pokemon_v2_abilityname_aggregate_fields + nodes: [pokemon_v2_abilityname!]! +} + +input pokemon_v2_abilityname_aggregate_bool_exp { + count: pokemon_v2_abilityname_aggregate_bool_exp_count +} + +input pokemon_v2_abilityname_aggregate_bool_exp_count { + arguments: [pokemon_v2_abilityname_select_column!] + distinct: Boolean + filter: pokemon_v2_abilityname_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_abilityname" +""" +type pokemon_v2_abilityname_aggregate_fields { + avg: pokemon_v2_abilityname_avg_fields + count(columns: [pokemon_v2_abilityname_select_column!], distinct: Boolean): Int! + max: pokemon_v2_abilityname_max_fields + min: pokemon_v2_abilityname_min_fields + stddev: pokemon_v2_abilityname_stddev_fields + stddev_pop: pokemon_v2_abilityname_stddev_pop_fields + stddev_samp: pokemon_v2_abilityname_stddev_samp_fields + sum: pokemon_v2_abilityname_sum_fields + var_pop: pokemon_v2_abilityname_var_pop_fields + var_samp: pokemon_v2_abilityname_var_samp_fields + variance: pokemon_v2_abilityname_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_abilityname" +""" +input pokemon_v2_abilityname_aggregate_order_by { + avg: pokemon_v2_abilityname_avg_order_by + count: order_by + max: pokemon_v2_abilityname_max_order_by + min: pokemon_v2_abilityname_min_order_by + stddev: pokemon_v2_abilityname_stddev_order_by + stddev_pop: pokemon_v2_abilityname_stddev_pop_order_by + stddev_samp: pokemon_v2_abilityname_stddev_samp_order_by + sum: pokemon_v2_abilityname_sum_order_by + var_pop: pokemon_v2_abilityname_var_pop_order_by + var_samp: pokemon_v2_abilityname_var_samp_order_by + variance: pokemon_v2_abilityname_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_abilityname_avg_fields { + ability_id: Float + id: Float + language_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_abilityname" +""" +input pokemon_v2_abilityname_avg_order_by { + ability_id: order_by + id: order_by + language_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_abilityname". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_abilityname_bool_exp { + _and: [pokemon_v2_abilityname_bool_exp!] + _not: pokemon_v2_abilityname_bool_exp + _or: [pokemon_v2_abilityname_bool_exp!] + ability_id: Int_comparison_exp + id: Int_comparison_exp + language_id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_ability: pokemon_v2_ability_bool_exp + pokemon_v2_language: pokemon_v2_language_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_abilityname_max_fields { + ability_id: Int + id: Int + language_id: Int + name: String +} + +""" +order by max() on columns of table "pokemon_v2_abilityname" +""" +input pokemon_v2_abilityname_max_order_by { + ability_id: order_by + id: order_by + language_id: order_by + name: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_abilityname_min_fields { + ability_id: Int + id: Int + language_id: Int + name: String +} + +""" +order by min() on columns of table "pokemon_v2_abilityname" +""" +input pokemon_v2_abilityname_min_order_by { + ability_id: order_by + id: order_by + language_id: order_by + name: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_abilityname".""" +input pokemon_v2_abilityname_order_by { + ability_id: order_by + id: order_by + language_id: order_by + name: order_by + pokemon_v2_ability: pokemon_v2_ability_order_by + pokemon_v2_language: pokemon_v2_language_order_by +} + +""" +select columns of table "pokemon_v2_abilityname" +""" +enum pokemon_v2_abilityname_select_column { + """column name""" + ability_id + + """column name""" + id + + """column name""" + language_id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_abilityname_stddev_fields { + ability_id: Float + id: Float + language_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_abilityname" +""" +input pokemon_v2_abilityname_stddev_order_by { + ability_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_abilityname_stddev_pop_fields { + ability_id: Float + id: Float + language_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_abilityname" +""" +input pokemon_v2_abilityname_stddev_pop_order_by { + ability_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_abilityname_stddev_samp_fields { + ability_id: Float + id: Float + language_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_abilityname" +""" +input pokemon_v2_abilityname_stddev_samp_order_by { + ability_id: order_by + id: order_by + language_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_abilityname" +""" +input pokemon_v2_abilityname_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_abilityname_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_abilityname_stream_cursor_value_input { + ability_id: Int + id: Int + language_id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_abilityname_sum_fields { + ability_id: Int + id: Int + language_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_abilityname" +""" +input pokemon_v2_abilityname_sum_order_by { + ability_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_abilityname_var_pop_fields { + ability_id: Float + id: Float + language_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_abilityname" +""" +input pokemon_v2_abilityname_var_pop_order_by { + ability_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_abilityname_var_samp_fields { + ability_id: Float + id: Float + language_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_abilityname" +""" +input pokemon_v2_abilityname_var_samp_order_by { + ability_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_abilityname_variance_fields { + ability_id: Float + id: Float + language_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_abilityname" +""" +input pokemon_v2_abilityname_variance_order_by { + ability_id: order_by + id: order_by + language_id: order_by +} + +""" +columns and relationships of "pokemon_v2_berry" +""" +type pokemon_v2_berry { + berry_firmness_id: Int + growth_time: Int! + id: Int! + item_id: Int + max_harvest: Int! + name: String! + natural_gift_power: Int! + natural_gift_type_id: Int + + """An object relationship""" + pokemon_v2_berryfirmness: pokemon_v2_berryfirmness + + """An array relationship""" + pokemon_v2_berryflavormaps( + """distinct select on columns""" + distinct_on: [pokemon_v2_berryflavormap_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berryflavormap_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berryflavormap_bool_exp + ): [pokemon_v2_berryflavormap!]! + + """An aggregate relationship""" + pokemon_v2_berryflavormaps_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_berryflavormap_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berryflavormap_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berryflavormap_bool_exp + ): pokemon_v2_berryflavormap_aggregate! + + """An object relationship""" + pokemon_v2_item: pokemon_v2_item + + """An object relationship""" + pokemon_v2_type: pokemon_v2_type + size: Int! + smoothness: Int! + soil_dryness: Int! +} + +""" +aggregated selection of "pokemon_v2_berry" +""" +type pokemon_v2_berry_aggregate { + aggregate: pokemon_v2_berry_aggregate_fields + nodes: [pokemon_v2_berry!]! +} + +input pokemon_v2_berry_aggregate_bool_exp { + count: pokemon_v2_berry_aggregate_bool_exp_count +} + +input pokemon_v2_berry_aggregate_bool_exp_count { + arguments: [pokemon_v2_berry_select_column!] + distinct: Boolean + filter: pokemon_v2_berry_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_berry" +""" +type pokemon_v2_berry_aggregate_fields { + avg: pokemon_v2_berry_avg_fields + count(columns: [pokemon_v2_berry_select_column!], distinct: Boolean): Int! + max: pokemon_v2_berry_max_fields + min: pokemon_v2_berry_min_fields + stddev: pokemon_v2_berry_stddev_fields + stddev_pop: pokemon_v2_berry_stddev_pop_fields + stddev_samp: pokemon_v2_berry_stddev_samp_fields + sum: pokemon_v2_berry_sum_fields + var_pop: pokemon_v2_berry_var_pop_fields + var_samp: pokemon_v2_berry_var_samp_fields + variance: pokemon_v2_berry_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_berry" +""" +input pokemon_v2_berry_aggregate_order_by { + avg: pokemon_v2_berry_avg_order_by + count: order_by + max: pokemon_v2_berry_max_order_by + min: pokemon_v2_berry_min_order_by + stddev: pokemon_v2_berry_stddev_order_by + stddev_pop: pokemon_v2_berry_stddev_pop_order_by + stddev_samp: pokemon_v2_berry_stddev_samp_order_by + sum: pokemon_v2_berry_sum_order_by + var_pop: pokemon_v2_berry_var_pop_order_by + var_samp: pokemon_v2_berry_var_samp_order_by + variance: pokemon_v2_berry_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_berry_avg_fields { + berry_firmness_id: Float + growth_time: Float + id: Float + item_id: Float + max_harvest: Float + natural_gift_power: Float + natural_gift_type_id: Float + size: Float + smoothness: Float + soil_dryness: Float +} + +""" +order by avg() on columns of table "pokemon_v2_berry" +""" +input pokemon_v2_berry_avg_order_by { + berry_firmness_id: order_by + growth_time: order_by + id: order_by + item_id: order_by + max_harvest: order_by + natural_gift_power: order_by + natural_gift_type_id: order_by + size: order_by + smoothness: order_by + soil_dryness: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_berry". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_berry_bool_exp { + _and: [pokemon_v2_berry_bool_exp!] + _not: pokemon_v2_berry_bool_exp + _or: [pokemon_v2_berry_bool_exp!] + berry_firmness_id: Int_comparison_exp + growth_time: Int_comparison_exp + id: Int_comparison_exp + item_id: Int_comparison_exp + max_harvest: Int_comparison_exp + name: String_comparison_exp + natural_gift_power: Int_comparison_exp + natural_gift_type_id: Int_comparison_exp + pokemon_v2_berryfirmness: pokemon_v2_berryfirmness_bool_exp + pokemon_v2_berryflavormaps: pokemon_v2_berryflavormap_bool_exp + pokemon_v2_berryflavormaps_aggregate: pokemon_v2_berryflavormap_aggregate_bool_exp + pokemon_v2_item: pokemon_v2_item_bool_exp + pokemon_v2_type: pokemon_v2_type_bool_exp + size: Int_comparison_exp + smoothness: Int_comparison_exp + soil_dryness: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_berry_max_fields { + berry_firmness_id: Int + growth_time: Int + id: Int + item_id: Int + max_harvest: Int + name: String + natural_gift_power: Int + natural_gift_type_id: Int + size: Int + smoothness: Int + soil_dryness: Int +} + +""" +order by max() on columns of table "pokemon_v2_berry" +""" +input pokemon_v2_berry_max_order_by { + berry_firmness_id: order_by + growth_time: order_by + id: order_by + item_id: order_by + max_harvest: order_by + name: order_by + natural_gift_power: order_by + natural_gift_type_id: order_by + size: order_by + smoothness: order_by + soil_dryness: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_berry_min_fields { + berry_firmness_id: Int + growth_time: Int + id: Int + item_id: Int + max_harvest: Int + name: String + natural_gift_power: Int + natural_gift_type_id: Int + size: Int + smoothness: Int + soil_dryness: Int +} + +""" +order by min() on columns of table "pokemon_v2_berry" +""" +input pokemon_v2_berry_min_order_by { + berry_firmness_id: order_by + growth_time: order_by + id: order_by + item_id: order_by + max_harvest: order_by + name: order_by + natural_gift_power: order_by + natural_gift_type_id: order_by + size: order_by + smoothness: order_by + soil_dryness: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_berry".""" +input pokemon_v2_berry_order_by { + berry_firmness_id: order_by + growth_time: order_by + id: order_by + item_id: order_by + max_harvest: order_by + name: order_by + natural_gift_power: order_by + natural_gift_type_id: order_by + pokemon_v2_berryfirmness: pokemon_v2_berryfirmness_order_by + pokemon_v2_berryflavormaps_aggregate: pokemon_v2_berryflavormap_aggregate_order_by + pokemon_v2_item: pokemon_v2_item_order_by + pokemon_v2_type: pokemon_v2_type_order_by + size: order_by + smoothness: order_by + soil_dryness: order_by +} + +""" +select columns of table "pokemon_v2_berry" +""" +enum pokemon_v2_berry_select_column { + """column name""" + berry_firmness_id + + """column name""" + growth_time + + """column name""" + id + + """column name""" + item_id + + """column name""" + max_harvest + + """column name""" + name + + """column name""" + natural_gift_power + + """column name""" + natural_gift_type_id + + """column name""" + size + + """column name""" + smoothness + + """column name""" + soil_dryness +} + +"""aggregate stddev on columns""" +type pokemon_v2_berry_stddev_fields { + berry_firmness_id: Float + growth_time: Float + id: Float + item_id: Float + max_harvest: Float + natural_gift_power: Float + natural_gift_type_id: Float + size: Float + smoothness: Float + soil_dryness: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_berry" +""" +input pokemon_v2_berry_stddev_order_by { + berry_firmness_id: order_by + growth_time: order_by + id: order_by + item_id: order_by + max_harvest: order_by + natural_gift_power: order_by + natural_gift_type_id: order_by + size: order_by + smoothness: order_by + soil_dryness: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_berry_stddev_pop_fields { + berry_firmness_id: Float + growth_time: Float + id: Float + item_id: Float + max_harvest: Float + natural_gift_power: Float + natural_gift_type_id: Float + size: Float + smoothness: Float + soil_dryness: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_berry" +""" +input pokemon_v2_berry_stddev_pop_order_by { + berry_firmness_id: order_by + growth_time: order_by + id: order_by + item_id: order_by + max_harvest: order_by + natural_gift_power: order_by + natural_gift_type_id: order_by + size: order_by + smoothness: order_by + soil_dryness: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_berry_stddev_samp_fields { + berry_firmness_id: Float + growth_time: Float + id: Float + item_id: Float + max_harvest: Float + natural_gift_power: Float + natural_gift_type_id: Float + size: Float + smoothness: Float + soil_dryness: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_berry" +""" +input pokemon_v2_berry_stddev_samp_order_by { + berry_firmness_id: order_by + growth_time: order_by + id: order_by + item_id: order_by + max_harvest: order_by + natural_gift_power: order_by + natural_gift_type_id: order_by + size: order_by + smoothness: order_by + soil_dryness: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_berry" +""" +input pokemon_v2_berry_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_berry_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_berry_stream_cursor_value_input { + berry_firmness_id: Int + growth_time: Int + id: Int + item_id: Int + max_harvest: Int + name: String + natural_gift_power: Int + natural_gift_type_id: Int + size: Int + smoothness: Int + soil_dryness: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_berry_sum_fields { + berry_firmness_id: Int + growth_time: Int + id: Int + item_id: Int + max_harvest: Int + natural_gift_power: Int + natural_gift_type_id: Int + size: Int + smoothness: Int + soil_dryness: Int +} + +""" +order by sum() on columns of table "pokemon_v2_berry" +""" +input pokemon_v2_berry_sum_order_by { + berry_firmness_id: order_by + growth_time: order_by + id: order_by + item_id: order_by + max_harvest: order_by + natural_gift_power: order_by + natural_gift_type_id: order_by + size: order_by + smoothness: order_by + soil_dryness: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_berry_var_pop_fields { + berry_firmness_id: Float + growth_time: Float + id: Float + item_id: Float + max_harvest: Float + natural_gift_power: Float + natural_gift_type_id: Float + size: Float + smoothness: Float + soil_dryness: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_berry" +""" +input pokemon_v2_berry_var_pop_order_by { + berry_firmness_id: order_by + growth_time: order_by + id: order_by + item_id: order_by + max_harvest: order_by + natural_gift_power: order_by + natural_gift_type_id: order_by + size: order_by + smoothness: order_by + soil_dryness: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_berry_var_samp_fields { + berry_firmness_id: Float + growth_time: Float + id: Float + item_id: Float + max_harvest: Float + natural_gift_power: Float + natural_gift_type_id: Float + size: Float + smoothness: Float + soil_dryness: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_berry" +""" +input pokemon_v2_berry_var_samp_order_by { + berry_firmness_id: order_by + growth_time: order_by + id: order_by + item_id: order_by + max_harvest: order_by + natural_gift_power: order_by + natural_gift_type_id: order_by + size: order_by + smoothness: order_by + soil_dryness: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_berry_variance_fields { + berry_firmness_id: Float + growth_time: Float + id: Float + item_id: Float + max_harvest: Float + natural_gift_power: Float + natural_gift_type_id: Float + size: Float + smoothness: Float + soil_dryness: Float +} + +""" +order by variance() on columns of table "pokemon_v2_berry" +""" +input pokemon_v2_berry_variance_order_by { + berry_firmness_id: order_by + growth_time: order_by + id: order_by + item_id: order_by + max_harvest: order_by + natural_gift_power: order_by + natural_gift_type_id: order_by + size: order_by + smoothness: order_by + soil_dryness: order_by +} + +""" +columns and relationships of "pokemon_v2_berryfirmness" +""" +type pokemon_v2_berryfirmness { + id: Int! + name: String! + + """An array relationship""" + pokemon_v2_berries( + """distinct select on columns""" + distinct_on: [pokemon_v2_berry_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berry_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berry_bool_exp + ): [pokemon_v2_berry!]! + + """An aggregate relationship""" + pokemon_v2_berries_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_berry_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berry_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berry_bool_exp + ): pokemon_v2_berry_aggregate! + + """An array relationship""" + pokemon_v2_berryfirmnessnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_berryfirmnessname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berryfirmnessname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berryfirmnessname_bool_exp + ): [pokemon_v2_berryfirmnessname!]! + + """An aggregate relationship""" + pokemon_v2_berryfirmnessnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_berryfirmnessname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berryfirmnessname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berryfirmnessname_bool_exp + ): pokemon_v2_berryfirmnessname_aggregate! +} + +""" +aggregated selection of "pokemon_v2_berryfirmness" +""" +type pokemon_v2_berryfirmness_aggregate { + aggregate: pokemon_v2_berryfirmness_aggregate_fields + nodes: [pokemon_v2_berryfirmness!]! +} + +""" +aggregate fields of "pokemon_v2_berryfirmness" +""" +type pokemon_v2_berryfirmness_aggregate_fields { + avg: pokemon_v2_berryfirmness_avg_fields + count(columns: [pokemon_v2_berryfirmness_select_column!], distinct: Boolean): Int! + max: pokemon_v2_berryfirmness_max_fields + min: pokemon_v2_berryfirmness_min_fields + stddev: pokemon_v2_berryfirmness_stddev_fields + stddev_pop: pokemon_v2_berryfirmness_stddev_pop_fields + stddev_samp: pokemon_v2_berryfirmness_stddev_samp_fields + sum: pokemon_v2_berryfirmness_sum_fields + var_pop: pokemon_v2_berryfirmness_var_pop_fields + var_samp: pokemon_v2_berryfirmness_var_samp_fields + variance: pokemon_v2_berryfirmness_variance_fields +} + +"""aggregate avg on columns""" +type pokemon_v2_berryfirmness_avg_fields { + id: Float +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_berryfirmness". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_berryfirmness_bool_exp { + _and: [pokemon_v2_berryfirmness_bool_exp!] + _not: pokemon_v2_berryfirmness_bool_exp + _or: [pokemon_v2_berryfirmness_bool_exp!] + id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_berries: pokemon_v2_berry_bool_exp + pokemon_v2_berries_aggregate: pokemon_v2_berry_aggregate_bool_exp + pokemon_v2_berryfirmnessnames: pokemon_v2_berryfirmnessname_bool_exp + pokemon_v2_berryfirmnessnames_aggregate: pokemon_v2_berryfirmnessname_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_berryfirmness_max_fields { + id: Int + name: String +} + +"""aggregate min on columns""" +type pokemon_v2_berryfirmness_min_fields { + id: Int + name: String +} + +"""Ordering options when selecting data from "pokemon_v2_berryfirmness".""" +input pokemon_v2_berryfirmness_order_by { + id: order_by + name: order_by + pokemon_v2_berries_aggregate: pokemon_v2_berry_aggregate_order_by + pokemon_v2_berryfirmnessnames_aggregate: pokemon_v2_berryfirmnessname_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_berryfirmness" +""" +enum pokemon_v2_berryfirmness_select_column { + """column name""" + id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_berryfirmness_stddev_fields { + id: Float +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_berryfirmness_stddev_pop_fields { + id: Float +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_berryfirmness_stddev_samp_fields { + id: Float +} + +""" +Streaming cursor of the table "pokemon_v2_berryfirmness" +""" +input pokemon_v2_berryfirmness_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_berryfirmness_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_berryfirmness_stream_cursor_value_input { + id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_berryfirmness_sum_fields { + id: Int +} + +"""aggregate var_pop on columns""" +type pokemon_v2_berryfirmness_var_pop_fields { + id: Float +} + +"""aggregate var_samp on columns""" +type pokemon_v2_berryfirmness_var_samp_fields { + id: Float +} + +"""aggregate variance on columns""" +type pokemon_v2_berryfirmness_variance_fields { + id: Float +} + +""" +columns and relationships of "pokemon_v2_berryfirmnessname" +""" +type pokemon_v2_berryfirmnessname { + berry_firmness_id: Int + id: Int! + language_id: Int + name: String! + + """An object relationship""" + pokemon_v2_berryfirmness: pokemon_v2_berryfirmness + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language +} + +""" +aggregated selection of "pokemon_v2_berryfirmnessname" +""" +type pokemon_v2_berryfirmnessname_aggregate { + aggregate: pokemon_v2_berryfirmnessname_aggregate_fields + nodes: [pokemon_v2_berryfirmnessname!]! +} + +input pokemon_v2_berryfirmnessname_aggregate_bool_exp { + count: pokemon_v2_berryfirmnessname_aggregate_bool_exp_count +} + +input pokemon_v2_berryfirmnessname_aggregate_bool_exp_count { + arguments: [pokemon_v2_berryfirmnessname_select_column!] + distinct: Boolean + filter: pokemon_v2_berryfirmnessname_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_berryfirmnessname" +""" +type pokemon_v2_berryfirmnessname_aggregate_fields { + avg: pokemon_v2_berryfirmnessname_avg_fields + count(columns: [pokemon_v2_berryfirmnessname_select_column!], distinct: Boolean): Int! + max: pokemon_v2_berryfirmnessname_max_fields + min: pokemon_v2_berryfirmnessname_min_fields + stddev: pokemon_v2_berryfirmnessname_stddev_fields + stddev_pop: pokemon_v2_berryfirmnessname_stddev_pop_fields + stddev_samp: pokemon_v2_berryfirmnessname_stddev_samp_fields + sum: pokemon_v2_berryfirmnessname_sum_fields + var_pop: pokemon_v2_berryfirmnessname_var_pop_fields + var_samp: pokemon_v2_berryfirmnessname_var_samp_fields + variance: pokemon_v2_berryfirmnessname_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_berryfirmnessname" +""" +input pokemon_v2_berryfirmnessname_aggregate_order_by { + avg: pokemon_v2_berryfirmnessname_avg_order_by + count: order_by + max: pokemon_v2_berryfirmnessname_max_order_by + min: pokemon_v2_berryfirmnessname_min_order_by + stddev: pokemon_v2_berryfirmnessname_stddev_order_by + stddev_pop: pokemon_v2_berryfirmnessname_stddev_pop_order_by + stddev_samp: pokemon_v2_berryfirmnessname_stddev_samp_order_by + sum: pokemon_v2_berryfirmnessname_sum_order_by + var_pop: pokemon_v2_berryfirmnessname_var_pop_order_by + var_samp: pokemon_v2_berryfirmnessname_var_samp_order_by + variance: pokemon_v2_berryfirmnessname_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_berryfirmnessname_avg_fields { + berry_firmness_id: Float + id: Float + language_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_berryfirmnessname" +""" +input pokemon_v2_berryfirmnessname_avg_order_by { + berry_firmness_id: order_by + id: order_by + language_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_berryfirmnessname". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_berryfirmnessname_bool_exp { + _and: [pokemon_v2_berryfirmnessname_bool_exp!] + _not: pokemon_v2_berryfirmnessname_bool_exp + _or: [pokemon_v2_berryfirmnessname_bool_exp!] + berry_firmness_id: Int_comparison_exp + id: Int_comparison_exp + language_id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_berryfirmness: pokemon_v2_berryfirmness_bool_exp + pokemon_v2_language: pokemon_v2_language_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_berryfirmnessname_max_fields { + berry_firmness_id: Int + id: Int + language_id: Int + name: String +} + +""" +order by max() on columns of table "pokemon_v2_berryfirmnessname" +""" +input pokemon_v2_berryfirmnessname_max_order_by { + berry_firmness_id: order_by + id: order_by + language_id: order_by + name: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_berryfirmnessname_min_fields { + berry_firmness_id: Int + id: Int + language_id: Int + name: String +} + +""" +order by min() on columns of table "pokemon_v2_berryfirmnessname" +""" +input pokemon_v2_berryfirmnessname_min_order_by { + berry_firmness_id: order_by + id: order_by + language_id: order_by + name: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_berryfirmnessname". +""" +input pokemon_v2_berryfirmnessname_order_by { + berry_firmness_id: order_by + id: order_by + language_id: order_by + name: order_by + pokemon_v2_berryfirmness: pokemon_v2_berryfirmness_order_by + pokemon_v2_language: pokemon_v2_language_order_by +} + +""" +select columns of table "pokemon_v2_berryfirmnessname" +""" +enum pokemon_v2_berryfirmnessname_select_column { + """column name""" + berry_firmness_id + + """column name""" + id + + """column name""" + language_id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_berryfirmnessname_stddev_fields { + berry_firmness_id: Float + id: Float + language_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_berryfirmnessname" +""" +input pokemon_v2_berryfirmnessname_stddev_order_by { + berry_firmness_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_berryfirmnessname_stddev_pop_fields { + berry_firmness_id: Float + id: Float + language_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_berryfirmnessname" +""" +input pokemon_v2_berryfirmnessname_stddev_pop_order_by { + berry_firmness_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_berryfirmnessname_stddev_samp_fields { + berry_firmness_id: Float + id: Float + language_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_berryfirmnessname" +""" +input pokemon_v2_berryfirmnessname_stddev_samp_order_by { + berry_firmness_id: order_by + id: order_by + language_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_berryfirmnessname" +""" +input pokemon_v2_berryfirmnessname_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_berryfirmnessname_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_berryfirmnessname_stream_cursor_value_input { + berry_firmness_id: Int + id: Int + language_id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_berryfirmnessname_sum_fields { + berry_firmness_id: Int + id: Int + language_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_berryfirmnessname" +""" +input pokemon_v2_berryfirmnessname_sum_order_by { + berry_firmness_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_berryfirmnessname_var_pop_fields { + berry_firmness_id: Float + id: Float + language_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_berryfirmnessname" +""" +input pokemon_v2_berryfirmnessname_var_pop_order_by { + berry_firmness_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_berryfirmnessname_var_samp_fields { + berry_firmness_id: Float + id: Float + language_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_berryfirmnessname" +""" +input pokemon_v2_berryfirmnessname_var_samp_order_by { + berry_firmness_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_berryfirmnessname_variance_fields { + berry_firmness_id: Float + id: Float + language_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_berryfirmnessname" +""" +input pokemon_v2_berryfirmnessname_variance_order_by { + berry_firmness_id: order_by + id: order_by + language_id: order_by +} + +""" +columns and relationships of "pokemon_v2_berryflavor" +""" +type pokemon_v2_berryflavor { + contest_type_id: Int + id: Int! + name: String! + + """An array relationship""" + pokemonV2NaturesByLikesFlavorId( + """distinct select on columns""" + distinct_on: [pokemon_v2_nature_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_nature_order_by!] + + """filter the rows returned""" + where: pokemon_v2_nature_bool_exp + ): [pokemon_v2_nature!]! + + """An aggregate relationship""" + pokemonV2NaturesByLikesFlavorId_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_nature_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_nature_order_by!] + + """filter the rows returned""" + where: pokemon_v2_nature_bool_exp + ): pokemon_v2_nature_aggregate! + + """An array relationship""" + pokemon_v2_berryflavormaps( + """distinct select on columns""" + distinct_on: [pokemon_v2_berryflavormap_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berryflavormap_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berryflavormap_bool_exp + ): [pokemon_v2_berryflavormap!]! + + """An aggregate relationship""" + pokemon_v2_berryflavormaps_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_berryflavormap_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berryflavormap_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berryflavormap_bool_exp + ): pokemon_v2_berryflavormap_aggregate! + + """An array relationship""" + pokemon_v2_berryflavornames( + """distinct select on columns""" + distinct_on: [pokemon_v2_berryflavorname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berryflavorname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berryflavorname_bool_exp + ): [pokemon_v2_berryflavorname!]! + + """An aggregate relationship""" + pokemon_v2_berryflavornames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_berryflavorname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berryflavorname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berryflavorname_bool_exp + ): pokemon_v2_berryflavorname_aggregate! + + """An object relationship""" + pokemon_v2_contesttype: pokemon_v2_contesttype + + """An array relationship""" + pokemon_v2_natures( + """distinct select on columns""" + distinct_on: [pokemon_v2_nature_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_nature_order_by!] + + """filter the rows returned""" + where: pokemon_v2_nature_bool_exp + ): [pokemon_v2_nature!]! + + """An aggregate relationship""" + pokemon_v2_natures_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_nature_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_nature_order_by!] + + """filter the rows returned""" + where: pokemon_v2_nature_bool_exp + ): pokemon_v2_nature_aggregate! +} + +""" +aggregated selection of "pokemon_v2_berryflavor" +""" +type pokemon_v2_berryflavor_aggregate { + aggregate: pokemon_v2_berryflavor_aggregate_fields + nodes: [pokemon_v2_berryflavor!]! +} + +input pokemon_v2_berryflavor_aggregate_bool_exp { + count: pokemon_v2_berryflavor_aggregate_bool_exp_count +} + +input pokemon_v2_berryflavor_aggregate_bool_exp_count { + arguments: [pokemon_v2_berryflavor_select_column!] + distinct: Boolean + filter: pokemon_v2_berryflavor_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_berryflavor" +""" +type pokemon_v2_berryflavor_aggregate_fields { + avg: pokemon_v2_berryflavor_avg_fields + count(columns: [pokemon_v2_berryflavor_select_column!], distinct: Boolean): Int! + max: pokemon_v2_berryflavor_max_fields + min: pokemon_v2_berryflavor_min_fields + stddev: pokemon_v2_berryflavor_stddev_fields + stddev_pop: pokemon_v2_berryflavor_stddev_pop_fields + stddev_samp: pokemon_v2_berryflavor_stddev_samp_fields + sum: pokemon_v2_berryflavor_sum_fields + var_pop: pokemon_v2_berryflavor_var_pop_fields + var_samp: pokemon_v2_berryflavor_var_samp_fields + variance: pokemon_v2_berryflavor_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_berryflavor" +""" +input pokemon_v2_berryflavor_aggregate_order_by { + avg: pokemon_v2_berryflavor_avg_order_by + count: order_by + max: pokemon_v2_berryflavor_max_order_by + min: pokemon_v2_berryflavor_min_order_by + stddev: pokemon_v2_berryflavor_stddev_order_by + stddev_pop: pokemon_v2_berryflavor_stddev_pop_order_by + stddev_samp: pokemon_v2_berryflavor_stddev_samp_order_by + sum: pokemon_v2_berryflavor_sum_order_by + var_pop: pokemon_v2_berryflavor_var_pop_order_by + var_samp: pokemon_v2_berryflavor_var_samp_order_by + variance: pokemon_v2_berryflavor_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_berryflavor_avg_fields { + contest_type_id: Float + id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_berryflavor" +""" +input pokemon_v2_berryflavor_avg_order_by { + contest_type_id: order_by + id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_berryflavor". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_berryflavor_bool_exp { + _and: [pokemon_v2_berryflavor_bool_exp!] + _not: pokemon_v2_berryflavor_bool_exp + _or: [pokemon_v2_berryflavor_bool_exp!] + contest_type_id: Int_comparison_exp + id: Int_comparison_exp + name: String_comparison_exp + pokemonV2NaturesByLikesFlavorId: pokemon_v2_nature_bool_exp + pokemonV2NaturesByLikesFlavorId_aggregate: pokemon_v2_nature_aggregate_bool_exp + pokemon_v2_berryflavormaps: pokemon_v2_berryflavormap_bool_exp + pokemon_v2_berryflavormaps_aggregate: pokemon_v2_berryflavormap_aggregate_bool_exp + pokemon_v2_berryflavornames: pokemon_v2_berryflavorname_bool_exp + pokemon_v2_berryflavornames_aggregate: pokemon_v2_berryflavorname_aggregate_bool_exp + pokemon_v2_contesttype: pokemon_v2_contesttype_bool_exp + pokemon_v2_natures: pokemon_v2_nature_bool_exp + pokemon_v2_natures_aggregate: pokemon_v2_nature_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_berryflavor_max_fields { + contest_type_id: Int + id: Int + name: String +} + +""" +order by max() on columns of table "pokemon_v2_berryflavor" +""" +input pokemon_v2_berryflavor_max_order_by { + contest_type_id: order_by + id: order_by + name: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_berryflavor_min_fields { + contest_type_id: Int + id: Int + name: String +} + +""" +order by min() on columns of table "pokemon_v2_berryflavor" +""" +input pokemon_v2_berryflavor_min_order_by { + contest_type_id: order_by + id: order_by + name: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_berryflavor".""" +input pokemon_v2_berryflavor_order_by { + contest_type_id: order_by + id: order_by + name: order_by + pokemonV2NaturesByLikesFlavorId_aggregate: pokemon_v2_nature_aggregate_order_by + pokemon_v2_berryflavormaps_aggregate: pokemon_v2_berryflavormap_aggregate_order_by + pokemon_v2_berryflavornames_aggregate: pokemon_v2_berryflavorname_aggregate_order_by + pokemon_v2_contesttype: pokemon_v2_contesttype_order_by + pokemon_v2_natures_aggregate: pokemon_v2_nature_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_berryflavor" +""" +enum pokemon_v2_berryflavor_select_column { + """column name""" + contest_type_id + + """column name""" + id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_berryflavor_stddev_fields { + contest_type_id: Float + id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_berryflavor" +""" +input pokemon_v2_berryflavor_stddev_order_by { + contest_type_id: order_by + id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_berryflavor_stddev_pop_fields { + contest_type_id: Float + id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_berryflavor" +""" +input pokemon_v2_berryflavor_stddev_pop_order_by { + contest_type_id: order_by + id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_berryflavor_stddev_samp_fields { + contest_type_id: Float + id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_berryflavor" +""" +input pokemon_v2_berryflavor_stddev_samp_order_by { + contest_type_id: order_by + id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_berryflavor" +""" +input pokemon_v2_berryflavor_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_berryflavor_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_berryflavor_stream_cursor_value_input { + contest_type_id: Int + id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_berryflavor_sum_fields { + contest_type_id: Int + id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_berryflavor" +""" +input pokemon_v2_berryflavor_sum_order_by { + contest_type_id: order_by + id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_berryflavor_var_pop_fields { + contest_type_id: Float + id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_berryflavor" +""" +input pokemon_v2_berryflavor_var_pop_order_by { + contest_type_id: order_by + id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_berryflavor_var_samp_fields { + contest_type_id: Float + id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_berryflavor" +""" +input pokemon_v2_berryflavor_var_samp_order_by { + contest_type_id: order_by + id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_berryflavor_variance_fields { + contest_type_id: Float + id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_berryflavor" +""" +input pokemon_v2_berryflavor_variance_order_by { + contest_type_id: order_by + id: order_by +} + +""" +columns and relationships of "pokemon_v2_berryflavormap" +""" +type pokemon_v2_berryflavormap { + berry_flavor_id: Int + berry_id: Int + id: Int! + + """An object relationship""" + pokemon_v2_berry: pokemon_v2_berry + + """An object relationship""" + pokemon_v2_berryflavor: pokemon_v2_berryflavor + potency: Int! +} + +""" +aggregated selection of "pokemon_v2_berryflavormap" +""" +type pokemon_v2_berryflavormap_aggregate { + aggregate: pokemon_v2_berryflavormap_aggregate_fields + nodes: [pokemon_v2_berryflavormap!]! +} + +input pokemon_v2_berryflavormap_aggregate_bool_exp { + count: pokemon_v2_berryflavormap_aggregate_bool_exp_count +} + +input pokemon_v2_berryflavormap_aggregate_bool_exp_count { + arguments: [pokemon_v2_berryflavormap_select_column!] + distinct: Boolean + filter: pokemon_v2_berryflavormap_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_berryflavormap" +""" +type pokemon_v2_berryflavormap_aggregate_fields { + avg: pokemon_v2_berryflavormap_avg_fields + count(columns: [pokemon_v2_berryflavormap_select_column!], distinct: Boolean): Int! + max: pokemon_v2_berryflavormap_max_fields + min: pokemon_v2_berryflavormap_min_fields + stddev: pokemon_v2_berryflavormap_stddev_fields + stddev_pop: pokemon_v2_berryflavormap_stddev_pop_fields + stddev_samp: pokemon_v2_berryflavormap_stddev_samp_fields + sum: pokemon_v2_berryflavormap_sum_fields + var_pop: pokemon_v2_berryflavormap_var_pop_fields + var_samp: pokemon_v2_berryflavormap_var_samp_fields + variance: pokemon_v2_berryflavormap_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_berryflavormap" +""" +input pokemon_v2_berryflavormap_aggregate_order_by { + avg: pokemon_v2_berryflavormap_avg_order_by + count: order_by + max: pokemon_v2_berryflavormap_max_order_by + min: pokemon_v2_berryflavormap_min_order_by + stddev: pokemon_v2_berryflavormap_stddev_order_by + stddev_pop: pokemon_v2_berryflavormap_stddev_pop_order_by + stddev_samp: pokemon_v2_berryflavormap_stddev_samp_order_by + sum: pokemon_v2_berryflavormap_sum_order_by + var_pop: pokemon_v2_berryflavormap_var_pop_order_by + var_samp: pokemon_v2_berryflavormap_var_samp_order_by + variance: pokemon_v2_berryflavormap_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_berryflavormap_avg_fields { + berry_flavor_id: Float + berry_id: Float + id: Float + potency: Float +} + +""" +order by avg() on columns of table "pokemon_v2_berryflavormap" +""" +input pokemon_v2_berryflavormap_avg_order_by { + berry_flavor_id: order_by + berry_id: order_by + id: order_by + potency: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_berryflavormap". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_berryflavormap_bool_exp { + _and: [pokemon_v2_berryflavormap_bool_exp!] + _not: pokemon_v2_berryflavormap_bool_exp + _or: [pokemon_v2_berryflavormap_bool_exp!] + berry_flavor_id: Int_comparison_exp + berry_id: Int_comparison_exp + id: Int_comparison_exp + pokemon_v2_berry: pokemon_v2_berry_bool_exp + pokemon_v2_berryflavor: pokemon_v2_berryflavor_bool_exp + potency: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_berryflavormap_max_fields { + berry_flavor_id: Int + berry_id: Int + id: Int + potency: Int +} + +""" +order by max() on columns of table "pokemon_v2_berryflavormap" +""" +input pokemon_v2_berryflavormap_max_order_by { + berry_flavor_id: order_by + berry_id: order_by + id: order_by + potency: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_berryflavormap_min_fields { + berry_flavor_id: Int + berry_id: Int + id: Int + potency: Int +} + +""" +order by min() on columns of table "pokemon_v2_berryflavormap" +""" +input pokemon_v2_berryflavormap_min_order_by { + berry_flavor_id: order_by + berry_id: order_by + id: order_by + potency: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_berryflavormap".""" +input pokemon_v2_berryflavormap_order_by { + berry_flavor_id: order_by + berry_id: order_by + id: order_by + pokemon_v2_berry: pokemon_v2_berry_order_by + pokemon_v2_berryflavor: pokemon_v2_berryflavor_order_by + potency: order_by +} + +""" +select columns of table "pokemon_v2_berryflavormap" +""" +enum pokemon_v2_berryflavormap_select_column { + """column name""" + berry_flavor_id + + """column name""" + berry_id + + """column name""" + id + + """column name""" + potency +} + +"""aggregate stddev on columns""" +type pokemon_v2_berryflavormap_stddev_fields { + berry_flavor_id: Float + berry_id: Float + id: Float + potency: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_berryflavormap" +""" +input pokemon_v2_berryflavormap_stddev_order_by { + berry_flavor_id: order_by + berry_id: order_by + id: order_by + potency: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_berryflavormap_stddev_pop_fields { + berry_flavor_id: Float + berry_id: Float + id: Float + potency: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_berryflavormap" +""" +input pokemon_v2_berryflavormap_stddev_pop_order_by { + berry_flavor_id: order_by + berry_id: order_by + id: order_by + potency: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_berryflavormap_stddev_samp_fields { + berry_flavor_id: Float + berry_id: Float + id: Float + potency: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_berryflavormap" +""" +input pokemon_v2_berryflavormap_stddev_samp_order_by { + berry_flavor_id: order_by + berry_id: order_by + id: order_by + potency: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_berryflavormap" +""" +input pokemon_v2_berryflavormap_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_berryflavormap_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_berryflavormap_stream_cursor_value_input { + berry_flavor_id: Int + berry_id: Int + id: Int + potency: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_berryflavormap_sum_fields { + berry_flavor_id: Int + berry_id: Int + id: Int + potency: Int +} + +""" +order by sum() on columns of table "pokemon_v2_berryflavormap" +""" +input pokemon_v2_berryflavormap_sum_order_by { + berry_flavor_id: order_by + berry_id: order_by + id: order_by + potency: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_berryflavormap_var_pop_fields { + berry_flavor_id: Float + berry_id: Float + id: Float + potency: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_berryflavormap" +""" +input pokemon_v2_berryflavormap_var_pop_order_by { + berry_flavor_id: order_by + berry_id: order_by + id: order_by + potency: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_berryflavormap_var_samp_fields { + berry_flavor_id: Float + berry_id: Float + id: Float + potency: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_berryflavormap" +""" +input pokemon_v2_berryflavormap_var_samp_order_by { + berry_flavor_id: order_by + berry_id: order_by + id: order_by + potency: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_berryflavormap_variance_fields { + berry_flavor_id: Float + berry_id: Float + id: Float + potency: Float +} + +""" +order by variance() on columns of table "pokemon_v2_berryflavormap" +""" +input pokemon_v2_berryflavormap_variance_order_by { + berry_flavor_id: order_by + berry_id: order_by + id: order_by + potency: order_by +} + +""" +columns and relationships of "pokemon_v2_berryflavorname" +""" +type pokemon_v2_berryflavorname { + berry_flavor_id: Int + id: Int! + language_id: Int + name: String! + + """An object relationship""" + pokemon_v2_berryflavor: pokemon_v2_berryflavor + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language +} + +""" +aggregated selection of "pokemon_v2_berryflavorname" +""" +type pokemon_v2_berryflavorname_aggregate { + aggregate: pokemon_v2_berryflavorname_aggregate_fields + nodes: [pokemon_v2_berryflavorname!]! +} + +input pokemon_v2_berryflavorname_aggregate_bool_exp { + count: pokemon_v2_berryflavorname_aggregate_bool_exp_count +} + +input pokemon_v2_berryflavorname_aggregate_bool_exp_count { + arguments: [pokemon_v2_berryflavorname_select_column!] + distinct: Boolean + filter: pokemon_v2_berryflavorname_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_berryflavorname" +""" +type pokemon_v2_berryflavorname_aggregate_fields { + avg: pokemon_v2_berryflavorname_avg_fields + count(columns: [pokemon_v2_berryflavorname_select_column!], distinct: Boolean): Int! + max: pokemon_v2_berryflavorname_max_fields + min: pokemon_v2_berryflavorname_min_fields + stddev: pokemon_v2_berryflavorname_stddev_fields + stddev_pop: pokemon_v2_berryflavorname_stddev_pop_fields + stddev_samp: pokemon_v2_berryflavorname_stddev_samp_fields + sum: pokemon_v2_berryflavorname_sum_fields + var_pop: pokemon_v2_berryflavorname_var_pop_fields + var_samp: pokemon_v2_berryflavorname_var_samp_fields + variance: pokemon_v2_berryflavorname_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_berryflavorname" +""" +input pokemon_v2_berryflavorname_aggregate_order_by { + avg: pokemon_v2_berryflavorname_avg_order_by + count: order_by + max: pokemon_v2_berryflavorname_max_order_by + min: pokemon_v2_berryflavorname_min_order_by + stddev: pokemon_v2_berryflavorname_stddev_order_by + stddev_pop: pokemon_v2_berryflavorname_stddev_pop_order_by + stddev_samp: pokemon_v2_berryflavorname_stddev_samp_order_by + sum: pokemon_v2_berryflavorname_sum_order_by + var_pop: pokemon_v2_berryflavorname_var_pop_order_by + var_samp: pokemon_v2_berryflavorname_var_samp_order_by + variance: pokemon_v2_berryflavorname_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_berryflavorname_avg_fields { + berry_flavor_id: Float + id: Float + language_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_berryflavorname" +""" +input pokemon_v2_berryflavorname_avg_order_by { + berry_flavor_id: order_by + id: order_by + language_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_berryflavorname". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_berryflavorname_bool_exp { + _and: [pokemon_v2_berryflavorname_bool_exp!] + _not: pokemon_v2_berryflavorname_bool_exp + _or: [pokemon_v2_berryflavorname_bool_exp!] + berry_flavor_id: Int_comparison_exp + id: Int_comparison_exp + language_id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_berryflavor: pokemon_v2_berryflavor_bool_exp + pokemon_v2_language: pokemon_v2_language_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_berryflavorname_max_fields { + berry_flavor_id: Int + id: Int + language_id: Int + name: String +} + +""" +order by max() on columns of table "pokemon_v2_berryflavorname" +""" +input pokemon_v2_berryflavorname_max_order_by { + berry_flavor_id: order_by + id: order_by + language_id: order_by + name: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_berryflavorname_min_fields { + berry_flavor_id: Int + id: Int + language_id: Int + name: String +} + +""" +order by min() on columns of table "pokemon_v2_berryflavorname" +""" +input pokemon_v2_berryflavorname_min_order_by { + berry_flavor_id: order_by + id: order_by + language_id: order_by + name: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_berryflavorname". +""" +input pokemon_v2_berryflavorname_order_by { + berry_flavor_id: order_by + id: order_by + language_id: order_by + name: order_by + pokemon_v2_berryflavor: pokemon_v2_berryflavor_order_by + pokemon_v2_language: pokemon_v2_language_order_by +} + +""" +select columns of table "pokemon_v2_berryflavorname" +""" +enum pokemon_v2_berryflavorname_select_column { + """column name""" + berry_flavor_id + + """column name""" + id + + """column name""" + language_id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_berryflavorname_stddev_fields { + berry_flavor_id: Float + id: Float + language_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_berryflavorname" +""" +input pokemon_v2_berryflavorname_stddev_order_by { + berry_flavor_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_berryflavorname_stddev_pop_fields { + berry_flavor_id: Float + id: Float + language_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_berryflavorname" +""" +input pokemon_v2_berryflavorname_stddev_pop_order_by { + berry_flavor_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_berryflavorname_stddev_samp_fields { + berry_flavor_id: Float + id: Float + language_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_berryflavorname" +""" +input pokemon_v2_berryflavorname_stddev_samp_order_by { + berry_flavor_id: order_by + id: order_by + language_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_berryflavorname" +""" +input pokemon_v2_berryflavorname_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_berryflavorname_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_berryflavorname_stream_cursor_value_input { + berry_flavor_id: Int + id: Int + language_id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_berryflavorname_sum_fields { + berry_flavor_id: Int + id: Int + language_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_berryflavorname" +""" +input pokemon_v2_berryflavorname_sum_order_by { + berry_flavor_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_berryflavorname_var_pop_fields { + berry_flavor_id: Float + id: Float + language_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_berryflavorname" +""" +input pokemon_v2_berryflavorname_var_pop_order_by { + berry_flavor_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_berryflavorname_var_samp_fields { + berry_flavor_id: Float + id: Float + language_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_berryflavorname" +""" +input pokemon_v2_berryflavorname_var_samp_order_by { + berry_flavor_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_berryflavorname_variance_fields { + berry_flavor_id: Float + id: Float + language_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_berryflavorname" +""" +input pokemon_v2_berryflavorname_variance_order_by { + berry_flavor_id: order_by + id: order_by + language_id: order_by +} + +""" +columns and relationships of "pokemon_v2_characteristic" +""" +type pokemon_v2_characteristic { + gene_mod_5: Int! + id: Int! + + """An array relationship""" + pokemon_v2_characteristicdescriptions( + """distinct select on columns""" + distinct_on: [pokemon_v2_characteristicdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_characteristicdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_characteristicdescription_bool_exp + ): [pokemon_v2_characteristicdescription!]! + + """An aggregate relationship""" + pokemon_v2_characteristicdescriptions_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_characteristicdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_characteristicdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_characteristicdescription_bool_exp + ): pokemon_v2_characteristicdescription_aggregate! + + """An object relationship""" + pokemon_v2_stat: pokemon_v2_stat + stat_id: Int +} + +""" +aggregated selection of "pokemon_v2_characteristic" +""" +type pokemon_v2_characteristic_aggregate { + aggregate: pokemon_v2_characteristic_aggregate_fields + nodes: [pokemon_v2_characteristic!]! +} + +input pokemon_v2_characteristic_aggregate_bool_exp { + count: pokemon_v2_characteristic_aggregate_bool_exp_count +} + +input pokemon_v2_characteristic_aggregate_bool_exp_count { + arguments: [pokemon_v2_characteristic_select_column!] + distinct: Boolean + filter: pokemon_v2_characteristic_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_characteristic" +""" +type pokemon_v2_characteristic_aggregate_fields { + avg: pokemon_v2_characteristic_avg_fields + count(columns: [pokemon_v2_characteristic_select_column!], distinct: Boolean): Int! + max: pokemon_v2_characteristic_max_fields + min: pokemon_v2_characteristic_min_fields + stddev: pokemon_v2_characteristic_stddev_fields + stddev_pop: pokemon_v2_characteristic_stddev_pop_fields + stddev_samp: pokemon_v2_characteristic_stddev_samp_fields + sum: pokemon_v2_characteristic_sum_fields + var_pop: pokemon_v2_characteristic_var_pop_fields + var_samp: pokemon_v2_characteristic_var_samp_fields + variance: pokemon_v2_characteristic_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_characteristic" +""" +input pokemon_v2_characteristic_aggregate_order_by { + avg: pokemon_v2_characteristic_avg_order_by + count: order_by + max: pokemon_v2_characteristic_max_order_by + min: pokemon_v2_characteristic_min_order_by + stddev: pokemon_v2_characteristic_stddev_order_by + stddev_pop: pokemon_v2_characteristic_stddev_pop_order_by + stddev_samp: pokemon_v2_characteristic_stddev_samp_order_by + sum: pokemon_v2_characteristic_sum_order_by + var_pop: pokemon_v2_characteristic_var_pop_order_by + var_samp: pokemon_v2_characteristic_var_samp_order_by + variance: pokemon_v2_characteristic_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_characteristic_avg_fields { + gene_mod_5: Float + id: Float + stat_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_characteristic" +""" +input pokemon_v2_characteristic_avg_order_by { + gene_mod_5: order_by + id: order_by + stat_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_characteristic". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_characteristic_bool_exp { + _and: [pokemon_v2_characteristic_bool_exp!] + _not: pokemon_v2_characteristic_bool_exp + _or: [pokemon_v2_characteristic_bool_exp!] + gene_mod_5: Int_comparison_exp + id: Int_comparison_exp + pokemon_v2_characteristicdescriptions: pokemon_v2_characteristicdescription_bool_exp + pokemon_v2_characteristicdescriptions_aggregate: pokemon_v2_characteristicdescription_aggregate_bool_exp + pokemon_v2_stat: pokemon_v2_stat_bool_exp + stat_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_characteristic_max_fields { + gene_mod_5: Int + id: Int + stat_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_characteristic" +""" +input pokemon_v2_characteristic_max_order_by { + gene_mod_5: order_by + id: order_by + stat_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_characteristic_min_fields { + gene_mod_5: Int + id: Int + stat_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_characteristic" +""" +input pokemon_v2_characteristic_min_order_by { + gene_mod_5: order_by + id: order_by + stat_id: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_characteristic".""" +input pokemon_v2_characteristic_order_by { + gene_mod_5: order_by + id: order_by + pokemon_v2_characteristicdescriptions_aggregate: pokemon_v2_characteristicdescription_aggregate_order_by + pokemon_v2_stat: pokemon_v2_stat_order_by + stat_id: order_by +} + +""" +select columns of table "pokemon_v2_characteristic" +""" +enum pokemon_v2_characteristic_select_column { + """column name""" + gene_mod_5 + + """column name""" + id + + """column name""" + stat_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_characteristic_stddev_fields { + gene_mod_5: Float + id: Float + stat_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_characteristic" +""" +input pokemon_v2_characteristic_stddev_order_by { + gene_mod_5: order_by + id: order_by + stat_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_characteristic_stddev_pop_fields { + gene_mod_5: Float + id: Float + stat_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_characteristic" +""" +input pokemon_v2_characteristic_stddev_pop_order_by { + gene_mod_5: order_by + id: order_by + stat_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_characteristic_stddev_samp_fields { + gene_mod_5: Float + id: Float + stat_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_characteristic" +""" +input pokemon_v2_characteristic_stddev_samp_order_by { + gene_mod_5: order_by + id: order_by + stat_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_characteristic" +""" +input pokemon_v2_characteristic_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_characteristic_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_characteristic_stream_cursor_value_input { + gene_mod_5: Int + id: Int + stat_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_characteristic_sum_fields { + gene_mod_5: Int + id: Int + stat_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_characteristic" +""" +input pokemon_v2_characteristic_sum_order_by { + gene_mod_5: order_by + id: order_by + stat_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_characteristic_var_pop_fields { + gene_mod_5: Float + id: Float + stat_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_characteristic" +""" +input pokemon_v2_characteristic_var_pop_order_by { + gene_mod_5: order_by + id: order_by + stat_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_characteristic_var_samp_fields { + gene_mod_5: Float + id: Float + stat_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_characteristic" +""" +input pokemon_v2_characteristic_var_samp_order_by { + gene_mod_5: order_by + id: order_by + stat_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_characteristic_variance_fields { + gene_mod_5: Float + id: Float + stat_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_characteristic" +""" +input pokemon_v2_characteristic_variance_order_by { + gene_mod_5: order_by + id: order_by + stat_id: order_by +} + +""" +columns and relationships of "pokemon_v2_characteristicdescription" +""" +type pokemon_v2_characteristicdescription { + characteristic_id: Int + description: String! + id: Int! + language_id: Int + + """An object relationship""" + pokemon_v2_characteristic: pokemon_v2_characteristic + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language +} + +""" +aggregated selection of "pokemon_v2_characteristicdescription" +""" +type pokemon_v2_characteristicdescription_aggregate { + aggregate: pokemon_v2_characteristicdescription_aggregate_fields + nodes: [pokemon_v2_characteristicdescription!]! +} + +input pokemon_v2_characteristicdescription_aggregate_bool_exp { + count: pokemon_v2_characteristicdescription_aggregate_bool_exp_count +} + +input pokemon_v2_characteristicdescription_aggregate_bool_exp_count { + arguments: [pokemon_v2_characteristicdescription_select_column!] + distinct: Boolean + filter: pokemon_v2_characteristicdescription_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_characteristicdescription" +""" +type pokemon_v2_characteristicdescription_aggregate_fields { + avg: pokemon_v2_characteristicdescription_avg_fields + count(columns: [pokemon_v2_characteristicdescription_select_column!], distinct: Boolean): Int! + max: pokemon_v2_characteristicdescription_max_fields + min: pokemon_v2_characteristicdescription_min_fields + stddev: pokemon_v2_characteristicdescription_stddev_fields + stddev_pop: pokemon_v2_characteristicdescription_stddev_pop_fields + stddev_samp: pokemon_v2_characteristicdescription_stddev_samp_fields + sum: pokemon_v2_characteristicdescription_sum_fields + var_pop: pokemon_v2_characteristicdescription_var_pop_fields + var_samp: pokemon_v2_characteristicdescription_var_samp_fields + variance: pokemon_v2_characteristicdescription_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_characteristicdescription" +""" +input pokemon_v2_characteristicdescription_aggregate_order_by { + avg: pokemon_v2_characteristicdescription_avg_order_by + count: order_by + max: pokemon_v2_characteristicdescription_max_order_by + min: pokemon_v2_characteristicdescription_min_order_by + stddev: pokemon_v2_characteristicdescription_stddev_order_by + stddev_pop: pokemon_v2_characteristicdescription_stddev_pop_order_by + stddev_samp: pokemon_v2_characteristicdescription_stddev_samp_order_by + sum: pokemon_v2_characteristicdescription_sum_order_by + var_pop: pokemon_v2_characteristicdescription_var_pop_order_by + var_samp: pokemon_v2_characteristicdescription_var_samp_order_by + variance: pokemon_v2_characteristicdescription_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_characteristicdescription_avg_fields { + characteristic_id: Float + id: Float + language_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_characteristicdescription" +""" +input pokemon_v2_characteristicdescription_avg_order_by { + characteristic_id: order_by + id: order_by + language_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_characteristicdescription". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_characteristicdescription_bool_exp { + _and: [pokemon_v2_characteristicdescription_bool_exp!] + _not: pokemon_v2_characteristicdescription_bool_exp + _or: [pokemon_v2_characteristicdescription_bool_exp!] + characteristic_id: Int_comparison_exp + description: String_comparison_exp + id: Int_comparison_exp + language_id: Int_comparison_exp + pokemon_v2_characteristic: pokemon_v2_characteristic_bool_exp + pokemon_v2_language: pokemon_v2_language_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_characteristicdescription_max_fields { + characteristic_id: Int + description: String + id: Int + language_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_characteristicdescription" +""" +input pokemon_v2_characteristicdescription_max_order_by { + characteristic_id: order_by + description: order_by + id: order_by + language_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_characteristicdescription_min_fields { + characteristic_id: Int + description: String + id: Int + language_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_characteristicdescription" +""" +input pokemon_v2_characteristicdescription_min_order_by { + characteristic_id: order_by + description: order_by + id: order_by + language_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_characteristicdescription". +""" +input pokemon_v2_characteristicdescription_order_by { + characteristic_id: order_by + description: order_by + id: order_by + language_id: order_by + pokemon_v2_characteristic: pokemon_v2_characteristic_order_by + pokemon_v2_language: pokemon_v2_language_order_by +} + +""" +select columns of table "pokemon_v2_characteristicdescription" +""" +enum pokemon_v2_characteristicdescription_select_column { + """column name""" + characteristic_id + + """column name""" + description + + """column name""" + id + + """column name""" + language_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_characteristicdescription_stddev_fields { + characteristic_id: Float + id: Float + language_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_characteristicdescription" +""" +input pokemon_v2_characteristicdescription_stddev_order_by { + characteristic_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_characteristicdescription_stddev_pop_fields { + characteristic_id: Float + id: Float + language_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_characteristicdescription" +""" +input pokemon_v2_characteristicdescription_stddev_pop_order_by { + characteristic_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_characteristicdescription_stddev_samp_fields { + characteristic_id: Float + id: Float + language_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_characteristicdescription" +""" +input pokemon_v2_characteristicdescription_stddev_samp_order_by { + characteristic_id: order_by + id: order_by + language_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_characteristicdescription" +""" +input pokemon_v2_characteristicdescription_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_characteristicdescription_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_characteristicdescription_stream_cursor_value_input { + characteristic_id: Int + description: String + id: Int + language_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_characteristicdescription_sum_fields { + characteristic_id: Int + id: Int + language_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_characteristicdescription" +""" +input pokemon_v2_characteristicdescription_sum_order_by { + characteristic_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_characteristicdescription_var_pop_fields { + characteristic_id: Float + id: Float + language_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_characteristicdescription" +""" +input pokemon_v2_characteristicdescription_var_pop_order_by { + characteristic_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_characteristicdescription_var_samp_fields { + characteristic_id: Float + id: Float + language_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_characteristicdescription" +""" +input pokemon_v2_characteristicdescription_var_samp_order_by { + characteristic_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_characteristicdescription_variance_fields { + characteristic_id: Float + id: Float + language_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_characteristicdescription" +""" +input pokemon_v2_characteristicdescription_variance_order_by { + characteristic_id: order_by + id: order_by + language_id: order_by +} + +""" +columns and relationships of "pokemon_v2_contestcombo" +""" +type pokemon_v2_contestcombo { + first_move_id: Int + id: Int! + + """An object relationship""" + pokemonV2MoveBySecondMoveId: pokemon_v2_move + + """An object relationship""" + pokemon_v2_move: pokemon_v2_move + second_move_id: Int +} + +""" +aggregated selection of "pokemon_v2_contestcombo" +""" +type pokemon_v2_contestcombo_aggregate { + aggregate: pokemon_v2_contestcombo_aggregate_fields + nodes: [pokemon_v2_contestcombo!]! +} + +input pokemon_v2_contestcombo_aggregate_bool_exp { + count: pokemon_v2_contestcombo_aggregate_bool_exp_count +} + +input pokemon_v2_contestcombo_aggregate_bool_exp_count { + arguments: [pokemon_v2_contestcombo_select_column!] + distinct: Boolean + filter: pokemon_v2_contestcombo_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_contestcombo" +""" +type pokemon_v2_contestcombo_aggregate_fields { + avg: pokemon_v2_contestcombo_avg_fields + count(columns: [pokemon_v2_contestcombo_select_column!], distinct: Boolean): Int! + max: pokemon_v2_contestcombo_max_fields + min: pokemon_v2_contestcombo_min_fields + stddev: pokemon_v2_contestcombo_stddev_fields + stddev_pop: pokemon_v2_contestcombo_stddev_pop_fields + stddev_samp: pokemon_v2_contestcombo_stddev_samp_fields + sum: pokemon_v2_contestcombo_sum_fields + var_pop: pokemon_v2_contestcombo_var_pop_fields + var_samp: pokemon_v2_contestcombo_var_samp_fields + variance: pokemon_v2_contestcombo_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_contestcombo" +""" +input pokemon_v2_contestcombo_aggregate_order_by { + avg: pokemon_v2_contestcombo_avg_order_by + count: order_by + max: pokemon_v2_contestcombo_max_order_by + min: pokemon_v2_contestcombo_min_order_by + stddev: pokemon_v2_contestcombo_stddev_order_by + stddev_pop: pokemon_v2_contestcombo_stddev_pop_order_by + stddev_samp: pokemon_v2_contestcombo_stddev_samp_order_by + sum: pokemon_v2_contestcombo_sum_order_by + var_pop: pokemon_v2_contestcombo_var_pop_order_by + var_samp: pokemon_v2_contestcombo_var_samp_order_by + variance: pokemon_v2_contestcombo_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_contestcombo_avg_fields { + first_move_id: Float + id: Float + second_move_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_contestcombo" +""" +input pokemon_v2_contestcombo_avg_order_by { + first_move_id: order_by + id: order_by + second_move_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_contestcombo". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_contestcombo_bool_exp { + _and: [pokemon_v2_contestcombo_bool_exp!] + _not: pokemon_v2_contestcombo_bool_exp + _or: [pokemon_v2_contestcombo_bool_exp!] + first_move_id: Int_comparison_exp + id: Int_comparison_exp + pokemonV2MoveBySecondMoveId: pokemon_v2_move_bool_exp + pokemon_v2_move: pokemon_v2_move_bool_exp + second_move_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_contestcombo_max_fields { + first_move_id: Int + id: Int + second_move_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_contestcombo" +""" +input pokemon_v2_contestcombo_max_order_by { + first_move_id: order_by + id: order_by + second_move_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_contestcombo_min_fields { + first_move_id: Int + id: Int + second_move_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_contestcombo" +""" +input pokemon_v2_contestcombo_min_order_by { + first_move_id: order_by + id: order_by + second_move_id: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_contestcombo".""" +input pokemon_v2_contestcombo_order_by { + first_move_id: order_by + id: order_by + pokemonV2MoveBySecondMoveId: pokemon_v2_move_order_by + pokemon_v2_move: pokemon_v2_move_order_by + second_move_id: order_by +} + +""" +select columns of table "pokemon_v2_contestcombo" +""" +enum pokemon_v2_contestcombo_select_column { + """column name""" + first_move_id + + """column name""" + id + + """column name""" + second_move_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_contestcombo_stddev_fields { + first_move_id: Float + id: Float + second_move_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_contestcombo" +""" +input pokemon_v2_contestcombo_stddev_order_by { + first_move_id: order_by + id: order_by + second_move_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_contestcombo_stddev_pop_fields { + first_move_id: Float + id: Float + second_move_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_contestcombo" +""" +input pokemon_v2_contestcombo_stddev_pop_order_by { + first_move_id: order_by + id: order_by + second_move_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_contestcombo_stddev_samp_fields { + first_move_id: Float + id: Float + second_move_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_contestcombo" +""" +input pokemon_v2_contestcombo_stddev_samp_order_by { + first_move_id: order_by + id: order_by + second_move_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_contestcombo" +""" +input pokemon_v2_contestcombo_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_contestcombo_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_contestcombo_stream_cursor_value_input { + first_move_id: Int + id: Int + second_move_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_contestcombo_sum_fields { + first_move_id: Int + id: Int + second_move_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_contestcombo" +""" +input pokemon_v2_contestcombo_sum_order_by { + first_move_id: order_by + id: order_by + second_move_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_contestcombo_var_pop_fields { + first_move_id: Float + id: Float + second_move_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_contestcombo" +""" +input pokemon_v2_contestcombo_var_pop_order_by { + first_move_id: order_by + id: order_by + second_move_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_contestcombo_var_samp_fields { + first_move_id: Float + id: Float + second_move_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_contestcombo" +""" +input pokemon_v2_contestcombo_var_samp_order_by { + first_move_id: order_by + id: order_by + second_move_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_contestcombo_variance_fields { + first_move_id: Float + id: Float + second_move_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_contestcombo" +""" +input pokemon_v2_contestcombo_variance_order_by { + first_move_id: order_by + id: order_by + second_move_id: order_by +} + +""" +columns and relationships of "pokemon_v2_contesteffect" +""" +type pokemon_v2_contesteffect { + appeal: Int! + id: Int! + jam: Int! + + """An array relationship""" + pokemon_v2_contesteffecteffecttexts( + """distinct select on columns""" + distinct_on: [pokemon_v2_contesteffecteffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contesteffecteffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contesteffecteffecttext_bool_exp + ): [pokemon_v2_contesteffecteffecttext!]! + + """An aggregate relationship""" + pokemon_v2_contesteffecteffecttexts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_contesteffecteffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contesteffecteffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contesteffecteffecttext_bool_exp + ): pokemon_v2_contesteffecteffecttext_aggregate! + + """An array relationship""" + pokemon_v2_contesteffectflavortexts( + """distinct select on columns""" + distinct_on: [pokemon_v2_contesteffectflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contesteffectflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contesteffectflavortext_bool_exp + ): [pokemon_v2_contesteffectflavortext!]! + + """An aggregate relationship""" + pokemon_v2_contesteffectflavortexts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_contesteffectflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contesteffectflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contesteffectflavortext_bool_exp + ): pokemon_v2_contesteffectflavortext_aggregate! + + """An array relationship""" + pokemon_v2_moves( + """distinct select on columns""" + distinct_on: [pokemon_v2_move_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_move_order_by!] + + """filter the rows returned""" + where: pokemon_v2_move_bool_exp + ): [pokemon_v2_move!]! + + """An aggregate relationship""" + pokemon_v2_moves_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_move_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_move_order_by!] + + """filter the rows returned""" + where: pokemon_v2_move_bool_exp + ): pokemon_v2_move_aggregate! +} + +""" +aggregated selection of "pokemon_v2_contesteffect" +""" +type pokemon_v2_contesteffect_aggregate { + aggregate: pokemon_v2_contesteffect_aggregate_fields + nodes: [pokemon_v2_contesteffect!]! +} + +""" +aggregate fields of "pokemon_v2_contesteffect" +""" +type pokemon_v2_contesteffect_aggregate_fields { + avg: pokemon_v2_contesteffect_avg_fields + count(columns: [pokemon_v2_contesteffect_select_column!], distinct: Boolean): Int! + max: pokemon_v2_contesteffect_max_fields + min: pokemon_v2_contesteffect_min_fields + stddev: pokemon_v2_contesteffect_stddev_fields + stddev_pop: pokemon_v2_contesteffect_stddev_pop_fields + stddev_samp: pokemon_v2_contesteffect_stddev_samp_fields + sum: pokemon_v2_contesteffect_sum_fields + var_pop: pokemon_v2_contesteffect_var_pop_fields + var_samp: pokemon_v2_contesteffect_var_samp_fields + variance: pokemon_v2_contesteffect_variance_fields +} + +"""aggregate avg on columns""" +type pokemon_v2_contesteffect_avg_fields { + appeal: Float + id: Float + jam: Float +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_contesteffect". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_contesteffect_bool_exp { + _and: [pokemon_v2_contesteffect_bool_exp!] + _not: pokemon_v2_contesteffect_bool_exp + _or: [pokemon_v2_contesteffect_bool_exp!] + appeal: Int_comparison_exp + id: Int_comparison_exp + jam: Int_comparison_exp + pokemon_v2_contesteffecteffecttexts: pokemon_v2_contesteffecteffecttext_bool_exp + pokemon_v2_contesteffecteffecttexts_aggregate: pokemon_v2_contesteffecteffecttext_aggregate_bool_exp + pokemon_v2_contesteffectflavortexts: pokemon_v2_contesteffectflavortext_bool_exp + pokemon_v2_contesteffectflavortexts_aggregate: pokemon_v2_contesteffectflavortext_aggregate_bool_exp + pokemon_v2_moves: pokemon_v2_move_bool_exp + pokemon_v2_moves_aggregate: pokemon_v2_move_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_contesteffect_max_fields { + appeal: Int + id: Int + jam: Int +} + +"""aggregate min on columns""" +type pokemon_v2_contesteffect_min_fields { + appeal: Int + id: Int + jam: Int +} + +"""Ordering options when selecting data from "pokemon_v2_contesteffect".""" +input pokemon_v2_contesteffect_order_by { + appeal: order_by + id: order_by + jam: order_by + pokemon_v2_contesteffecteffecttexts_aggregate: pokemon_v2_contesteffecteffecttext_aggregate_order_by + pokemon_v2_contesteffectflavortexts_aggregate: pokemon_v2_contesteffectflavortext_aggregate_order_by + pokemon_v2_moves_aggregate: pokemon_v2_move_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_contesteffect" +""" +enum pokemon_v2_contesteffect_select_column { + """column name""" + appeal + + """column name""" + id + + """column name""" + jam +} + +"""aggregate stddev on columns""" +type pokemon_v2_contesteffect_stddev_fields { + appeal: Float + id: Float + jam: Float +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_contesteffect_stddev_pop_fields { + appeal: Float + id: Float + jam: Float +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_contesteffect_stddev_samp_fields { + appeal: Float + id: Float + jam: Float +} + +""" +Streaming cursor of the table "pokemon_v2_contesteffect" +""" +input pokemon_v2_contesteffect_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_contesteffect_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_contesteffect_stream_cursor_value_input { + appeal: Int + id: Int + jam: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_contesteffect_sum_fields { + appeal: Int + id: Int + jam: Int +} + +"""aggregate var_pop on columns""" +type pokemon_v2_contesteffect_var_pop_fields { + appeal: Float + id: Float + jam: Float +} + +"""aggregate var_samp on columns""" +type pokemon_v2_contesteffect_var_samp_fields { + appeal: Float + id: Float + jam: Float +} + +"""aggregate variance on columns""" +type pokemon_v2_contesteffect_variance_fields { + appeal: Float + id: Float + jam: Float +} + +""" +columns and relationships of "pokemon_v2_contesteffecteffecttext" +""" +type pokemon_v2_contesteffecteffecttext { + contest_effect_id: Int + effect: String! + id: Int! + language_id: Int + + """An object relationship""" + pokemon_v2_contesteffect: pokemon_v2_contesteffect + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language +} + +""" +aggregated selection of "pokemon_v2_contesteffecteffecttext" +""" +type pokemon_v2_contesteffecteffecttext_aggregate { + aggregate: pokemon_v2_contesteffecteffecttext_aggregate_fields + nodes: [pokemon_v2_contesteffecteffecttext!]! +} + +input pokemon_v2_contesteffecteffecttext_aggregate_bool_exp { + count: pokemon_v2_contesteffecteffecttext_aggregate_bool_exp_count +} + +input pokemon_v2_contesteffecteffecttext_aggregate_bool_exp_count { + arguments: [pokemon_v2_contesteffecteffecttext_select_column!] + distinct: Boolean + filter: pokemon_v2_contesteffecteffecttext_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_contesteffecteffecttext" +""" +type pokemon_v2_contesteffecteffecttext_aggregate_fields { + avg: pokemon_v2_contesteffecteffecttext_avg_fields + count(columns: [pokemon_v2_contesteffecteffecttext_select_column!], distinct: Boolean): Int! + max: pokemon_v2_contesteffecteffecttext_max_fields + min: pokemon_v2_contesteffecteffecttext_min_fields + stddev: pokemon_v2_contesteffecteffecttext_stddev_fields + stddev_pop: pokemon_v2_contesteffecteffecttext_stddev_pop_fields + stddev_samp: pokemon_v2_contesteffecteffecttext_stddev_samp_fields + sum: pokemon_v2_contesteffecteffecttext_sum_fields + var_pop: pokemon_v2_contesteffecteffecttext_var_pop_fields + var_samp: pokemon_v2_contesteffecteffecttext_var_samp_fields + variance: pokemon_v2_contesteffecteffecttext_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_contesteffecteffecttext" +""" +input pokemon_v2_contesteffecteffecttext_aggregate_order_by { + avg: pokemon_v2_contesteffecteffecttext_avg_order_by + count: order_by + max: pokemon_v2_contesteffecteffecttext_max_order_by + min: pokemon_v2_contesteffecteffecttext_min_order_by + stddev: pokemon_v2_contesteffecteffecttext_stddev_order_by + stddev_pop: pokemon_v2_contesteffecteffecttext_stddev_pop_order_by + stddev_samp: pokemon_v2_contesteffecteffecttext_stddev_samp_order_by + sum: pokemon_v2_contesteffecteffecttext_sum_order_by + var_pop: pokemon_v2_contesteffecteffecttext_var_pop_order_by + var_samp: pokemon_v2_contesteffecteffecttext_var_samp_order_by + variance: pokemon_v2_contesteffecteffecttext_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_contesteffecteffecttext_avg_fields { + contest_effect_id: Float + id: Float + language_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_contesteffecteffecttext" +""" +input pokemon_v2_contesteffecteffecttext_avg_order_by { + contest_effect_id: order_by + id: order_by + language_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_contesteffecteffecttext". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_contesteffecteffecttext_bool_exp { + _and: [pokemon_v2_contesteffecteffecttext_bool_exp!] + _not: pokemon_v2_contesteffecteffecttext_bool_exp + _or: [pokemon_v2_contesteffecteffecttext_bool_exp!] + contest_effect_id: Int_comparison_exp + effect: String_comparison_exp + id: Int_comparison_exp + language_id: Int_comparison_exp + pokemon_v2_contesteffect: pokemon_v2_contesteffect_bool_exp + pokemon_v2_language: pokemon_v2_language_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_contesteffecteffecttext_max_fields { + contest_effect_id: Int + effect: String + id: Int + language_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_contesteffecteffecttext" +""" +input pokemon_v2_contesteffecteffecttext_max_order_by { + contest_effect_id: order_by + effect: order_by + id: order_by + language_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_contesteffecteffecttext_min_fields { + contest_effect_id: Int + effect: String + id: Int + language_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_contesteffecteffecttext" +""" +input pokemon_v2_contesteffecteffecttext_min_order_by { + contest_effect_id: order_by + effect: order_by + id: order_by + language_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_contesteffecteffecttext". +""" +input pokemon_v2_contesteffecteffecttext_order_by { + contest_effect_id: order_by + effect: order_by + id: order_by + language_id: order_by + pokemon_v2_contesteffect: pokemon_v2_contesteffect_order_by + pokemon_v2_language: pokemon_v2_language_order_by +} + +""" +select columns of table "pokemon_v2_contesteffecteffecttext" +""" +enum pokemon_v2_contesteffecteffecttext_select_column { + """column name""" + contest_effect_id + + """column name""" + effect + + """column name""" + id + + """column name""" + language_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_contesteffecteffecttext_stddev_fields { + contest_effect_id: Float + id: Float + language_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_contesteffecteffecttext" +""" +input pokemon_v2_contesteffecteffecttext_stddev_order_by { + contest_effect_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_contesteffecteffecttext_stddev_pop_fields { + contest_effect_id: Float + id: Float + language_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_contesteffecteffecttext" +""" +input pokemon_v2_contesteffecteffecttext_stddev_pop_order_by { + contest_effect_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_contesteffecteffecttext_stddev_samp_fields { + contest_effect_id: Float + id: Float + language_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_contesteffecteffecttext" +""" +input pokemon_v2_contesteffecteffecttext_stddev_samp_order_by { + contest_effect_id: order_by + id: order_by + language_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_contesteffecteffecttext" +""" +input pokemon_v2_contesteffecteffecttext_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_contesteffecteffecttext_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_contesteffecteffecttext_stream_cursor_value_input { + contest_effect_id: Int + effect: String + id: Int + language_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_contesteffecteffecttext_sum_fields { + contest_effect_id: Int + id: Int + language_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_contesteffecteffecttext" +""" +input pokemon_v2_contesteffecteffecttext_sum_order_by { + contest_effect_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_contesteffecteffecttext_var_pop_fields { + contest_effect_id: Float + id: Float + language_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_contesteffecteffecttext" +""" +input pokemon_v2_contesteffecteffecttext_var_pop_order_by { + contest_effect_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_contesteffecteffecttext_var_samp_fields { + contest_effect_id: Float + id: Float + language_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_contesteffecteffecttext" +""" +input pokemon_v2_contesteffecteffecttext_var_samp_order_by { + contest_effect_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_contesteffecteffecttext_variance_fields { + contest_effect_id: Float + id: Float + language_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_contesteffecteffecttext" +""" +input pokemon_v2_contesteffecteffecttext_variance_order_by { + contest_effect_id: order_by + id: order_by + language_id: order_by +} + +""" +columns and relationships of "pokemon_v2_contesteffectflavortext" +""" +type pokemon_v2_contesteffectflavortext { + contest_effect_id: Int + flavor_text: String! + id: Int! + language_id: Int + + """An object relationship""" + pokemon_v2_contesteffect: pokemon_v2_contesteffect + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language +} + +""" +aggregated selection of "pokemon_v2_contesteffectflavortext" +""" +type pokemon_v2_contesteffectflavortext_aggregate { + aggregate: pokemon_v2_contesteffectflavortext_aggregate_fields + nodes: [pokemon_v2_contesteffectflavortext!]! +} + +input pokemon_v2_contesteffectflavortext_aggregate_bool_exp { + count: pokemon_v2_contesteffectflavortext_aggregate_bool_exp_count +} + +input pokemon_v2_contesteffectflavortext_aggregate_bool_exp_count { + arguments: [pokemon_v2_contesteffectflavortext_select_column!] + distinct: Boolean + filter: pokemon_v2_contesteffectflavortext_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_contesteffectflavortext" +""" +type pokemon_v2_contesteffectflavortext_aggregate_fields { + avg: pokemon_v2_contesteffectflavortext_avg_fields + count(columns: [pokemon_v2_contesteffectflavortext_select_column!], distinct: Boolean): Int! + max: pokemon_v2_contesteffectflavortext_max_fields + min: pokemon_v2_contesteffectflavortext_min_fields + stddev: pokemon_v2_contesteffectflavortext_stddev_fields + stddev_pop: pokemon_v2_contesteffectflavortext_stddev_pop_fields + stddev_samp: pokemon_v2_contesteffectflavortext_stddev_samp_fields + sum: pokemon_v2_contesteffectflavortext_sum_fields + var_pop: pokemon_v2_contesteffectflavortext_var_pop_fields + var_samp: pokemon_v2_contesteffectflavortext_var_samp_fields + variance: pokemon_v2_contesteffectflavortext_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_contesteffectflavortext" +""" +input pokemon_v2_contesteffectflavortext_aggregate_order_by { + avg: pokemon_v2_contesteffectflavortext_avg_order_by + count: order_by + max: pokemon_v2_contesteffectflavortext_max_order_by + min: pokemon_v2_contesteffectflavortext_min_order_by + stddev: pokemon_v2_contesteffectflavortext_stddev_order_by + stddev_pop: pokemon_v2_contesteffectflavortext_stddev_pop_order_by + stddev_samp: pokemon_v2_contesteffectflavortext_stddev_samp_order_by + sum: pokemon_v2_contesteffectflavortext_sum_order_by + var_pop: pokemon_v2_contesteffectflavortext_var_pop_order_by + var_samp: pokemon_v2_contesteffectflavortext_var_samp_order_by + variance: pokemon_v2_contesteffectflavortext_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_contesteffectflavortext_avg_fields { + contest_effect_id: Float + id: Float + language_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_contesteffectflavortext" +""" +input pokemon_v2_contesteffectflavortext_avg_order_by { + contest_effect_id: order_by + id: order_by + language_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_contesteffectflavortext". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_contesteffectflavortext_bool_exp { + _and: [pokemon_v2_contesteffectflavortext_bool_exp!] + _not: pokemon_v2_contesteffectflavortext_bool_exp + _or: [pokemon_v2_contesteffectflavortext_bool_exp!] + contest_effect_id: Int_comparison_exp + flavor_text: String_comparison_exp + id: Int_comparison_exp + language_id: Int_comparison_exp + pokemon_v2_contesteffect: pokemon_v2_contesteffect_bool_exp + pokemon_v2_language: pokemon_v2_language_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_contesteffectflavortext_max_fields { + contest_effect_id: Int + flavor_text: String + id: Int + language_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_contesteffectflavortext" +""" +input pokemon_v2_contesteffectflavortext_max_order_by { + contest_effect_id: order_by + flavor_text: order_by + id: order_by + language_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_contesteffectflavortext_min_fields { + contest_effect_id: Int + flavor_text: String + id: Int + language_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_contesteffectflavortext" +""" +input pokemon_v2_contesteffectflavortext_min_order_by { + contest_effect_id: order_by + flavor_text: order_by + id: order_by + language_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_contesteffectflavortext". +""" +input pokemon_v2_contesteffectflavortext_order_by { + contest_effect_id: order_by + flavor_text: order_by + id: order_by + language_id: order_by + pokemon_v2_contesteffect: pokemon_v2_contesteffect_order_by + pokemon_v2_language: pokemon_v2_language_order_by +} + +""" +select columns of table "pokemon_v2_contesteffectflavortext" +""" +enum pokemon_v2_contesteffectflavortext_select_column { + """column name""" + contest_effect_id + + """column name""" + flavor_text + + """column name""" + id + + """column name""" + language_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_contesteffectflavortext_stddev_fields { + contest_effect_id: Float + id: Float + language_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_contesteffectflavortext" +""" +input pokemon_v2_contesteffectflavortext_stddev_order_by { + contest_effect_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_contesteffectflavortext_stddev_pop_fields { + contest_effect_id: Float + id: Float + language_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_contesteffectflavortext" +""" +input pokemon_v2_contesteffectflavortext_stddev_pop_order_by { + contest_effect_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_contesteffectflavortext_stddev_samp_fields { + contest_effect_id: Float + id: Float + language_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_contesteffectflavortext" +""" +input pokemon_v2_contesteffectflavortext_stddev_samp_order_by { + contest_effect_id: order_by + id: order_by + language_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_contesteffectflavortext" +""" +input pokemon_v2_contesteffectflavortext_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_contesteffectflavortext_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_contesteffectflavortext_stream_cursor_value_input { + contest_effect_id: Int + flavor_text: String + id: Int + language_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_contesteffectflavortext_sum_fields { + contest_effect_id: Int + id: Int + language_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_contesteffectflavortext" +""" +input pokemon_v2_contesteffectflavortext_sum_order_by { + contest_effect_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_contesteffectflavortext_var_pop_fields { + contest_effect_id: Float + id: Float + language_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_contesteffectflavortext" +""" +input pokemon_v2_contesteffectflavortext_var_pop_order_by { + contest_effect_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_contesteffectflavortext_var_samp_fields { + contest_effect_id: Float + id: Float + language_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_contesteffectflavortext" +""" +input pokemon_v2_contesteffectflavortext_var_samp_order_by { + contest_effect_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_contesteffectflavortext_variance_fields { + contest_effect_id: Float + id: Float + language_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_contesteffectflavortext" +""" +input pokemon_v2_contesteffectflavortext_variance_order_by { + contest_effect_id: order_by + id: order_by + language_id: order_by +} + +""" +columns and relationships of "pokemon_v2_contesttype" +""" +type pokemon_v2_contesttype { + id: Int! + name: String! + + """An object relationship""" + pokemon_v2_berryflavor: pokemon_v2_berryflavor + + """An array relationship""" + pokemon_v2_berryflavors( + """distinct select on columns""" + distinct_on: [pokemon_v2_berryflavor_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berryflavor_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berryflavor_bool_exp + ): [pokemon_v2_berryflavor!]! + + """An aggregate relationship""" + pokemon_v2_berryflavors_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_berryflavor_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berryflavor_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berryflavor_bool_exp + ): pokemon_v2_berryflavor_aggregate! + + """An array relationship""" + pokemon_v2_contesttypenames( + """distinct select on columns""" + distinct_on: [pokemon_v2_contesttypename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contesttypename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contesttypename_bool_exp + ): [pokemon_v2_contesttypename!]! + + """An aggregate relationship""" + pokemon_v2_contesttypenames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_contesttypename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contesttypename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contesttypename_bool_exp + ): pokemon_v2_contesttypename_aggregate! + + """An array relationship""" + pokemon_v2_moves( + """distinct select on columns""" + distinct_on: [pokemon_v2_move_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_move_order_by!] + + """filter the rows returned""" + where: pokemon_v2_move_bool_exp + ): [pokemon_v2_move!]! + + """An aggregate relationship""" + pokemon_v2_moves_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_move_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_move_order_by!] + + """filter the rows returned""" + where: pokemon_v2_move_bool_exp + ): pokemon_v2_move_aggregate! +} + +""" +aggregated selection of "pokemon_v2_contesttype" +""" +type pokemon_v2_contesttype_aggregate { + aggregate: pokemon_v2_contesttype_aggregate_fields + nodes: [pokemon_v2_contesttype!]! +} + +""" +aggregate fields of "pokemon_v2_contesttype" +""" +type pokemon_v2_contesttype_aggregate_fields { + avg: pokemon_v2_contesttype_avg_fields + count(columns: [pokemon_v2_contesttype_select_column!], distinct: Boolean): Int! + max: pokemon_v2_contesttype_max_fields + min: pokemon_v2_contesttype_min_fields + stddev: pokemon_v2_contesttype_stddev_fields + stddev_pop: pokemon_v2_contesttype_stddev_pop_fields + stddev_samp: pokemon_v2_contesttype_stddev_samp_fields + sum: pokemon_v2_contesttype_sum_fields + var_pop: pokemon_v2_contesttype_var_pop_fields + var_samp: pokemon_v2_contesttype_var_samp_fields + variance: pokemon_v2_contesttype_variance_fields +} + +"""aggregate avg on columns""" +type pokemon_v2_contesttype_avg_fields { + id: Float +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_contesttype". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_contesttype_bool_exp { + _and: [pokemon_v2_contesttype_bool_exp!] + _not: pokemon_v2_contesttype_bool_exp + _or: [pokemon_v2_contesttype_bool_exp!] + id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_berryflavor: pokemon_v2_berryflavor_bool_exp + pokemon_v2_berryflavors: pokemon_v2_berryflavor_bool_exp + pokemon_v2_berryflavors_aggregate: pokemon_v2_berryflavor_aggregate_bool_exp + pokemon_v2_contesttypenames: pokemon_v2_contesttypename_bool_exp + pokemon_v2_contesttypenames_aggregate: pokemon_v2_contesttypename_aggregate_bool_exp + pokemon_v2_moves: pokemon_v2_move_bool_exp + pokemon_v2_moves_aggregate: pokemon_v2_move_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_contesttype_max_fields { + id: Int + name: String +} + +"""aggregate min on columns""" +type pokemon_v2_contesttype_min_fields { + id: Int + name: String +} + +"""Ordering options when selecting data from "pokemon_v2_contesttype".""" +input pokemon_v2_contesttype_order_by { + id: order_by + name: order_by + pokemon_v2_berryflavor: pokemon_v2_berryflavor_order_by + pokemon_v2_berryflavors_aggregate: pokemon_v2_berryflavor_aggregate_order_by + pokemon_v2_contesttypenames_aggregate: pokemon_v2_contesttypename_aggregate_order_by + pokemon_v2_moves_aggregate: pokemon_v2_move_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_contesttype" +""" +enum pokemon_v2_contesttype_select_column { + """column name""" + id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_contesttype_stddev_fields { + id: Float +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_contesttype_stddev_pop_fields { + id: Float +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_contesttype_stddev_samp_fields { + id: Float +} + +""" +Streaming cursor of the table "pokemon_v2_contesttype" +""" +input pokemon_v2_contesttype_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_contesttype_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_contesttype_stream_cursor_value_input { + id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_contesttype_sum_fields { + id: Int +} + +"""aggregate var_pop on columns""" +type pokemon_v2_contesttype_var_pop_fields { + id: Float +} + +"""aggregate var_samp on columns""" +type pokemon_v2_contesttype_var_samp_fields { + id: Float +} + +"""aggregate variance on columns""" +type pokemon_v2_contesttype_variance_fields { + id: Float +} + +""" +columns and relationships of "pokemon_v2_contesttypename" +""" +type pokemon_v2_contesttypename { + color: String! + contest_type_id: Int + flavor: String! + id: Int! + language_id: Int + name: String! + + """An object relationship""" + pokemon_v2_contesttype: pokemon_v2_contesttype + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language +} + +""" +aggregated selection of "pokemon_v2_contesttypename" +""" +type pokemon_v2_contesttypename_aggregate { + aggregate: pokemon_v2_contesttypename_aggregate_fields + nodes: [pokemon_v2_contesttypename!]! +} + +input pokemon_v2_contesttypename_aggregate_bool_exp { + count: pokemon_v2_contesttypename_aggregate_bool_exp_count +} + +input pokemon_v2_contesttypename_aggregate_bool_exp_count { + arguments: [pokemon_v2_contesttypename_select_column!] + distinct: Boolean + filter: pokemon_v2_contesttypename_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_contesttypename" +""" +type pokemon_v2_contesttypename_aggregate_fields { + avg: pokemon_v2_contesttypename_avg_fields + count(columns: [pokemon_v2_contesttypename_select_column!], distinct: Boolean): Int! + max: pokemon_v2_contesttypename_max_fields + min: pokemon_v2_contesttypename_min_fields + stddev: pokemon_v2_contesttypename_stddev_fields + stddev_pop: pokemon_v2_contesttypename_stddev_pop_fields + stddev_samp: pokemon_v2_contesttypename_stddev_samp_fields + sum: pokemon_v2_contesttypename_sum_fields + var_pop: pokemon_v2_contesttypename_var_pop_fields + var_samp: pokemon_v2_contesttypename_var_samp_fields + variance: pokemon_v2_contesttypename_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_contesttypename" +""" +input pokemon_v2_contesttypename_aggregate_order_by { + avg: pokemon_v2_contesttypename_avg_order_by + count: order_by + max: pokemon_v2_contesttypename_max_order_by + min: pokemon_v2_contesttypename_min_order_by + stddev: pokemon_v2_contesttypename_stddev_order_by + stddev_pop: pokemon_v2_contesttypename_stddev_pop_order_by + stddev_samp: pokemon_v2_contesttypename_stddev_samp_order_by + sum: pokemon_v2_contesttypename_sum_order_by + var_pop: pokemon_v2_contesttypename_var_pop_order_by + var_samp: pokemon_v2_contesttypename_var_samp_order_by + variance: pokemon_v2_contesttypename_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_contesttypename_avg_fields { + contest_type_id: Float + id: Float + language_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_contesttypename" +""" +input pokemon_v2_contesttypename_avg_order_by { + contest_type_id: order_by + id: order_by + language_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_contesttypename". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_contesttypename_bool_exp { + _and: [pokemon_v2_contesttypename_bool_exp!] + _not: pokemon_v2_contesttypename_bool_exp + _or: [pokemon_v2_contesttypename_bool_exp!] + color: String_comparison_exp + contest_type_id: Int_comparison_exp + flavor: String_comparison_exp + id: Int_comparison_exp + language_id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_contesttype: pokemon_v2_contesttype_bool_exp + pokemon_v2_language: pokemon_v2_language_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_contesttypename_max_fields { + color: String + contest_type_id: Int + flavor: String + id: Int + language_id: Int + name: String +} + +""" +order by max() on columns of table "pokemon_v2_contesttypename" +""" +input pokemon_v2_contesttypename_max_order_by { + color: order_by + contest_type_id: order_by + flavor: order_by + id: order_by + language_id: order_by + name: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_contesttypename_min_fields { + color: String + contest_type_id: Int + flavor: String + id: Int + language_id: Int + name: String +} + +""" +order by min() on columns of table "pokemon_v2_contesttypename" +""" +input pokemon_v2_contesttypename_min_order_by { + color: order_by + contest_type_id: order_by + flavor: order_by + id: order_by + language_id: order_by + name: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_contesttypename". +""" +input pokemon_v2_contesttypename_order_by { + color: order_by + contest_type_id: order_by + flavor: order_by + id: order_by + language_id: order_by + name: order_by + pokemon_v2_contesttype: pokemon_v2_contesttype_order_by + pokemon_v2_language: pokemon_v2_language_order_by +} + +""" +select columns of table "pokemon_v2_contesttypename" +""" +enum pokemon_v2_contesttypename_select_column { + """column name""" + color + + """column name""" + contest_type_id + + """column name""" + flavor + + """column name""" + id + + """column name""" + language_id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_contesttypename_stddev_fields { + contest_type_id: Float + id: Float + language_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_contesttypename" +""" +input pokemon_v2_contesttypename_stddev_order_by { + contest_type_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_contesttypename_stddev_pop_fields { + contest_type_id: Float + id: Float + language_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_contesttypename" +""" +input pokemon_v2_contesttypename_stddev_pop_order_by { + contest_type_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_contesttypename_stddev_samp_fields { + contest_type_id: Float + id: Float + language_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_contesttypename" +""" +input pokemon_v2_contesttypename_stddev_samp_order_by { + contest_type_id: order_by + id: order_by + language_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_contesttypename" +""" +input pokemon_v2_contesttypename_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_contesttypename_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_contesttypename_stream_cursor_value_input { + color: String + contest_type_id: Int + flavor: String + id: Int + language_id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_contesttypename_sum_fields { + contest_type_id: Int + id: Int + language_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_contesttypename" +""" +input pokemon_v2_contesttypename_sum_order_by { + contest_type_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_contesttypename_var_pop_fields { + contest_type_id: Float + id: Float + language_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_contesttypename" +""" +input pokemon_v2_contesttypename_var_pop_order_by { + contest_type_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_contesttypename_var_samp_fields { + contest_type_id: Float + id: Float + language_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_contesttypename" +""" +input pokemon_v2_contesttypename_var_samp_order_by { + contest_type_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_contesttypename_variance_fields { + contest_type_id: Float + id: Float + language_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_contesttypename" +""" +input pokemon_v2_contesttypename_variance_order_by { + contest_type_id: order_by + id: order_by + language_id: order_by +} + +""" +columns and relationships of "pokemon_v2_egggroup" +""" +type pokemon_v2_egggroup { + id: Int! + name: String! + + """An array relationship""" + pokemon_v2_egggroupnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_egggroupname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_egggroupname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_egggroupname_bool_exp + ): [pokemon_v2_egggroupname!]! + + """An aggregate relationship""" + pokemon_v2_egggroupnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_egggroupname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_egggroupname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_egggroupname_bool_exp + ): pokemon_v2_egggroupname_aggregate! + + """An array relationship""" + pokemon_v2_pokemonegggroups( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonegggroup_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonegggroup_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonegggroup_bool_exp + ): [pokemon_v2_pokemonegggroup!]! + + """An aggregate relationship""" + pokemon_v2_pokemonegggroups_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonegggroup_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonegggroup_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonegggroup_bool_exp + ): pokemon_v2_pokemonegggroup_aggregate! +} + +""" +aggregated selection of "pokemon_v2_egggroup" +""" +type pokemon_v2_egggroup_aggregate { + aggregate: pokemon_v2_egggroup_aggregate_fields + nodes: [pokemon_v2_egggroup!]! +} + +""" +aggregate fields of "pokemon_v2_egggroup" +""" +type pokemon_v2_egggroup_aggregate_fields { + avg: pokemon_v2_egggroup_avg_fields + count(columns: [pokemon_v2_egggroup_select_column!], distinct: Boolean): Int! + max: pokemon_v2_egggroup_max_fields + min: pokemon_v2_egggroup_min_fields + stddev: pokemon_v2_egggroup_stddev_fields + stddev_pop: pokemon_v2_egggroup_stddev_pop_fields + stddev_samp: pokemon_v2_egggroup_stddev_samp_fields + sum: pokemon_v2_egggroup_sum_fields + var_pop: pokemon_v2_egggroup_var_pop_fields + var_samp: pokemon_v2_egggroup_var_samp_fields + variance: pokemon_v2_egggroup_variance_fields +} + +"""aggregate avg on columns""" +type pokemon_v2_egggroup_avg_fields { + id: Float +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_egggroup". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_egggroup_bool_exp { + _and: [pokemon_v2_egggroup_bool_exp!] + _not: pokemon_v2_egggroup_bool_exp + _or: [pokemon_v2_egggroup_bool_exp!] + id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_egggroupnames: pokemon_v2_egggroupname_bool_exp + pokemon_v2_egggroupnames_aggregate: pokemon_v2_egggroupname_aggregate_bool_exp + pokemon_v2_pokemonegggroups: pokemon_v2_pokemonegggroup_bool_exp + pokemon_v2_pokemonegggroups_aggregate: pokemon_v2_pokemonegggroup_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_egggroup_max_fields { + id: Int + name: String +} + +"""aggregate min on columns""" +type pokemon_v2_egggroup_min_fields { + id: Int + name: String +} + +"""Ordering options when selecting data from "pokemon_v2_egggroup".""" +input pokemon_v2_egggroup_order_by { + id: order_by + name: order_by + pokemon_v2_egggroupnames_aggregate: pokemon_v2_egggroupname_aggregate_order_by + pokemon_v2_pokemonegggroups_aggregate: pokemon_v2_pokemonegggroup_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_egggroup" +""" +enum pokemon_v2_egggroup_select_column { + """column name""" + id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_egggroup_stddev_fields { + id: Float +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_egggroup_stddev_pop_fields { + id: Float +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_egggroup_stddev_samp_fields { + id: Float +} + +""" +Streaming cursor of the table "pokemon_v2_egggroup" +""" +input pokemon_v2_egggroup_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_egggroup_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_egggroup_stream_cursor_value_input { + id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_egggroup_sum_fields { + id: Int +} + +"""aggregate var_pop on columns""" +type pokemon_v2_egggroup_var_pop_fields { + id: Float +} + +"""aggregate var_samp on columns""" +type pokemon_v2_egggroup_var_samp_fields { + id: Float +} + +"""aggregate variance on columns""" +type pokemon_v2_egggroup_variance_fields { + id: Float +} + +""" +columns and relationships of "pokemon_v2_egggroupname" +""" +type pokemon_v2_egggroupname { + egg_group_id: Int + id: Int! + language_id: Int + name: String! + + """An object relationship""" + pokemon_v2_egggroup: pokemon_v2_egggroup + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language +} + +""" +aggregated selection of "pokemon_v2_egggroupname" +""" +type pokemon_v2_egggroupname_aggregate { + aggregate: pokemon_v2_egggroupname_aggregate_fields + nodes: [pokemon_v2_egggroupname!]! +} + +input pokemon_v2_egggroupname_aggregate_bool_exp { + count: pokemon_v2_egggroupname_aggregate_bool_exp_count +} + +input pokemon_v2_egggroupname_aggregate_bool_exp_count { + arguments: [pokemon_v2_egggroupname_select_column!] + distinct: Boolean + filter: pokemon_v2_egggroupname_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_egggroupname" +""" +type pokemon_v2_egggroupname_aggregate_fields { + avg: pokemon_v2_egggroupname_avg_fields + count(columns: [pokemon_v2_egggroupname_select_column!], distinct: Boolean): Int! + max: pokemon_v2_egggroupname_max_fields + min: pokemon_v2_egggroupname_min_fields + stddev: pokemon_v2_egggroupname_stddev_fields + stddev_pop: pokemon_v2_egggroupname_stddev_pop_fields + stddev_samp: pokemon_v2_egggroupname_stddev_samp_fields + sum: pokemon_v2_egggroupname_sum_fields + var_pop: pokemon_v2_egggroupname_var_pop_fields + var_samp: pokemon_v2_egggroupname_var_samp_fields + variance: pokemon_v2_egggroupname_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_egggroupname" +""" +input pokemon_v2_egggroupname_aggregate_order_by { + avg: pokemon_v2_egggroupname_avg_order_by + count: order_by + max: pokemon_v2_egggroupname_max_order_by + min: pokemon_v2_egggroupname_min_order_by + stddev: pokemon_v2_egggroupname_stddev_order_by + stddev_pop: pokemon_v2_egggroupname_stddev_pop_order_by + stddev_samp: pokemon_v2_egggroupname_stddev_samp_order_by + sum: pokemon_v2_egggroupname_sum_order_by + var_pop: pokemon_v2_egggroupname_var_pop_order_by + var_samp: pokemon_v2_egggroupname_var_samp_order_by + variance: pokemon_v2_egggroupname_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_egggroupname_avg_fields { + egg_group_id: Float + id: Float + language_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_egggroupname" +""" +input pokemon_v2_egggroupname_avg_order_by { + egg_group_id: order_by + id: order_by + language_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_egggroupname". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_egggroupname_bool_exp { + _and: [pokemon_v2_egggroupname_bool_exp!] + _not: pokemon_v2_egggroupname_bool_exp + _or: [pokemon_v2_egggroupname_bool_exp!] + egg_group_id: Int_comparison_exp + id: Int_comparison_exp + language_id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_egggroup: pokemon_v2_egggroup_bool_exp + pokemon_v2_language: pokemon_v2_language_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_egggroupname_max_fields { + egg_group_id: Int + id: Int + language_id: Int + name: String +} + +""" +order by max() on columns of table "pokemon_v2_egggroupname" +""" +input pokemon_v2_egggroupname_max_order_by { + egg_group_id: order_by + id: order_by + language_id: order_by + name: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_egggroupname_min_fields { + egg_group_id: Int + id: Int + language_id: Int + name: String +} + +""" +order by min() on columns of table "pokemon_v2_egggroupname" +""" +input pokemon_v2_egggroupname_min_order_by { + egg_group_id: order_by + id: order_by + language_id: order_by + name: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_egggroupname".""" +input pokemon_v2_egggroupname_order_by { + egg_group_id: order_by + id: order_by + language_id: order_by + name: order_by + pokemon_v2_egggroup: pokemon_v2_egggroup_order_by + pokemon_v2_language: pokemon_v2_language_order_by +} + +""" +select columns of table "pokemon_v2_egggroupname" +""" +enum pokemon_v2_egggroupname_select_column { + """column name""" + egg_group_id + + """column name""" + id + + """column name""" + language_id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_egggroupname_stddev_fields { + egg_group_id: Float + id: Float + language_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_egggroupname" +""" +input pokemon_v2_egggroupname_stddev_order_by { + egg_group_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_egggroupname_stddev_pop_fields { + egg_group_id: Float + id: Float + language_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_egggroupname" +""" +input pokemon_v2_egggroupname_stddev_pop_order_by { + egg_group_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_egggroupname_stddev_samp_fields { + egg_group_id: Float + id: Float + language_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_egggroupname" +""" +input pokemon_v2_egggroupname_stddev_samp_order_by { + egg_group_id: order_by + id: order_by + language_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_egggroupname" +""" +input pokemon_v2_egggroupname_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_egggroupname_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_egggroupname_stream_cursor_value_input { + egg_group_id: Int + id: Int + language_id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_egggroupname_sum_fields { + egg_group_id: Int + id: Int + language_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_egggroupname" +""" +input pokemon_v2_egggroupname_sum_order_by { + egg_group_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_egggroupname_var_pop_fields { + egg_group_id: Float + id: Float + language_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_egggroupname" +""" +input pokemon_v2_egggroupname_var_pop_order_by { + egg_group_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_egggroupname_var_samp_fields { + egg_group_id: Float + id: Float + language_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_egggroupname" +""" +input pokemon_v2_egggroupname_var_samp_order_by { + egg_group_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_egggroupname_variance_fields { + egg_group_id: Float + id: Float + language_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_egggroupname" +""" +input pokemon_v2_egggroupname_variance_order_by { + egg_group_id: order_by + id: order_by + language_id: order_by +} + +""" +columns and relationships of "pokemon_v2_encounter" +""" +type pokemon_v2_encounter { + encounter_slot_id: Int + id: Int! + location_area_id: Int + max_level: Int! + min_level: Int! + pokemon_id: Int + + """An array relationship""" + pokemon_v2_encounterconditionvaluemaps( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterconditionvaluemap_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterconditionvaluemap_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterconditionvaluemap_bool_exp + ): [pokemon_v2_encounterconditionvaluemap!]! + + """An aggregate relationship""" + pokemon_v2_encounterconditionvaluemaps_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterconditionvaluemap_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterconditionvaluemap_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterconditionvaluemap_bool_exp + ): pokemon_v2_encounterconditionvaluemap_aggregate! + + """An object relationship""" + pokemon_v2_encounterslot: pokemon_v2_encounterslot + + """An object relationship""" + pokemon_v2_locationarea: pokemon_v2_locationarea + + """An object relationship""" + pokemon_v2_pokemon: pokemon_v2_pokemon + + """An object relationship""" + pokemon_v2_version: pokemon_v2_version + version_id: Int +} + +""" +aggregated selection of "pokemon_v2_encounter" +""" +type pokemon_v2_encounter_aggregate { + aggregate: pokemon_v2_encounter_aggregate_fields + nodes: [pokemon_v2_encounter!]! +} + +input pokemon_v2_encounter_aggregate_bool_exp { + count: pokemon_v2_encounter_aggregate_bool_exp_count +} + +input pokemon_v2_encounter_aggregate_bool_exp_count { + arguments: [pokemon_v2_encounter_select_column!] + distinct: Boolean + filter: pokemon_v2_encounter_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_encounter" +""" +type pokemon_v2_encounter_aggregate_fields { + avg: pokemon_v2_encounter_avg_fields + count(columns: [pokemon_v2_encounter_select_column!], distinct: Boolean): Int! + max: pokemon_v2_encounter_max_fields + min: pokemon_v2_encounter_min_fields + stddev: pokemon_v2_encounter_stddev_fields + stddev_pop: pokemon_v2_encounter_stddev_pop_fields + stddev_samp: pokemon_v2_encounter_stddev_samp_fields + sum: pokemon_v2_encounter_sum_fields + var_pop: pokemon_v2_encounter_var_pop_fields + var_samp: pokemon_v2_encounter_var_samp_fields + variance: pokemon_v2_encounter_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_encounter" +""" +input pokemon_v2_encounter_aggregate_order_by { + avg: pokemon_v2_encounter_avg_order_by + count: order_by + max: pokemon_v2_encounter_max_order_by + min: pokemon_v2_encounter_min_order_by + stddev: pokemon_v2_encounter_stddev_order_by + stddev_pop: pokemon_v2_encounter_stddev_pop_order_by + stddev_samp: pokemon_v2_encounter_stddev_samp_order_by + sum: pokemon_v2_encounter_sum_order_by + var_pop: pokemon_v2_encounter_var_pop_order_by + var_samp: pokemon_v2_encounter_var_samp_order_by + variance: pokemon_v2_encounter_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_encounter_avg_fields { + encounter_slot_id: Float + id: Float + location_area_id: Float + max_level: Float + min_level: Float + pokemon_id: Float + version_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_encounter" +""" +input pokemon_v2_encounter_avg_order_by { + encounter_slot_id: order_by + id: order_by + location_area_id: order_by + max_level: order_by + min_level: order_by + pokemon_id: order_by + version_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_encounter". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_encounter_bool_exp { + _and: [pokemon_v2_encounter_bool_exp!] + _not: pokemon_v2_encounter_bool_exp + _or: [pokemon_v2_encounter_bool_exp!] + encounter_slot_id: Int_comparison_exp + id: Int_comparison_exp + location_area_id: Int_comparison_exp + max_level: Int_comparison_exp + min_level: Int_comparison_exp + pokemon_id: Int_comparison_exp + pokemon_v2_encounterconditionvaluemaps: pokemon_v2_encounterconditionvaluemap_bool_exp + pokemon_v2_encounterconditionvaluemaps_aggregate: pokemon_v2_encounterconditionvaluemap_aggregate_bool_exp + pokemon_v2_encounterslot: pokemon_v2_encounterslot_bool_exp + pokemon_v2_locationarea: pokemon_v2_locationarea_bool_exp + pokemon_v2_pokemon: pokemon_v2_pokemon_bool_exp + pokemon_v2_version: pokemon_v2_version_bool_exp + version_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_encounter_max_fields { + encounter_slot_id: Int + id: Int + location_area_id: Int + max_level: Int + min_level: Int + pokemon_id: Int + version_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_encounter" +""" +input pokemon_v2_encounter_max_order_by { + encounter_slot_id: order_by + id: order_by + location_area_id: order_by + max_level: order_by + min_level: order_by + pokemon_id: order_by + version_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_encounter_min_fields { + encounter_slot_id: Int + id: Int + location_area_id: Int + max_level: Int + min_level: Int + pokemon_id: Int + version_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_encounter" +""" +input pokemon_v2_encounter_min_order_by { + encounter_slot_id: order_by + id: order_by + location_area_id: order_by + max_level: order_by + min_level: order_by + pokemon_id: order_by + version_id: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_encounter".""" +input pokemon_v2_encounter_order_by { + encounter_slot_id: order_by + id: order_by + location_area_id: order_by + max_level: order_by + min_level: order_by + pokemon_id: order_by + pokemon_v2_encounterconditionvaluemaps_aggregate: pokemon_v2_encounterconditionvaluemap_aggregate_order_by + pokemon_v2_encounterslot: pokemon_v2_encounterslot_order_by + pokemon_v2_locationarea: pokemon_v2_locationarea_order_by + pokemon_v2_pokemon: pokemon_v2_pokemon_order_by + pokemon_v2_version: pokemon_v2_version_order_by + version_id: order_by +} + +""" +select columns of table "pokemon_v2_encounter" +""" +enum pokemon_v2_encounter_select_column { + """column name""" + encounter_slot_id + + """column name""" + id + + """column name""" + location_area_id + + """column name""" + max_level + + """column name""" + min_level + + """column name""" + pokemon_id + + """column name""" + version_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_encounter_stddev_fields { + encounter_slot_id: Float + id: Float + location_area_id: Float + max_level: Float + min_level: Float + pokemon_id: Float + version_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_encounter" +""" +input pokemon_v2_encounter_stddev_order_by { + encounter_slot_id: order_by + id: order_by + location_area_id: order_by + max_level: order_by + min_level: order_by + pokemon_id: order_by + version_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_encounter_stddev_pop_fields { + encounter_slot_id: Float + id: Float + location_area_id: Float + max_level: Float + min_level: Float + pokemon_id: Float + version_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_encounter" +""" +input pokemon_v2_encounter_stddev_pop_order_by { + encounter_slot_id: order_by + id: order_by + location_area_id: order_by + max_level: order_by + min_level: order_by + pokemon_id: order_by + version_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_encounter_stddev_samp_fields { + encounter_slot_id: Float + id: Float + location_area_id: Float + max_level: Float + min_level: Float + pokemon_id: Float + version_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_encounter" +""" +input pokemon_v2_encounter_stddev_samp_order_by { + encounter_slot_id: order_by + id: order_by + location_area_id: order_by + max_level: order_by + min_level: order_by + pokemon_id: order_by + version_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_encounter" +""" +input pokemon_v2_encounter_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_encounter_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_encounter_stream_cursor_value_input { + encounter_slot_id: Int + id: Int + location_area_id: Int + max_level: Int + min_level: Int + pokemon_id: Int + version_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_encounter_sum_fields { + encounter_slot_id: Int + id: Int + location_area_id: Int + max_level: Int + min_level: Int + pokemon_id: Int + version_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_encounter" +""" +input pokemon_v2_encounter_sum_order_by { + encounter_slot_id: order_by + id: order_by + location_area_id: order_by + max_level: order_by + min_level: order_by + pokemon_id: order_by + version_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_encounter_var_pop_fields { + encounter_slot_id: Float + id: Float + location_area_id: Float + max_level: Float + min_level: Float + pokemon_id: Float + version_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_encounter" +""" +input pokemon_v2_encounter_var_pop_order_by { + encounter_slot_id: order_by + id: order_by + location_area_id: order_by + max_level: order_by + min_level: order_by + pokemon_id: order_by + version_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_encounter_var_samp_fields { + encounter_slot_id: Float + id: Float + location_area_id: Float + max_level: Float + min_level: Float + pokemon_id: Float + version_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_encounter" +""" +input pokemon_v2_encounter_var_samp_order_by { + encounter_slot_id: order_by + id: order_by + location_area_id: order_by + max_level: order_by + min_level: order_by + pokemon_id: order_by + version_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_encounter_variance_fields { + encounter_slot_id: Float + id: Float + location_area_id: Float + max_level: Float + min_level: Float + pokemon_id: Float + version_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_encounter" +""" +input pokemon_v2_encounter_variance_order_by { + encounter_slot_id: order_by + id: order_by + location_area_id: order_by + max_level: order_by + min_level: order_by + pokemon_id: order_by + version_id: order_by +} + +""" +columns and relationships of "pokemon_v2_encountercondition" +""" +type pokemon_v2_encountercondition { + id: Int! + name: String! + + """An array relationship""" + pokemon_v2_encounterconditionnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterconditionname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterconditionname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterconditionname_bool_exp + ): [pokemon_v2_encounterconditionname!]! + + """An aggregate relationship""" + pokemon_v2_encounterconditionnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterconditionname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterconditionname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterconditionname_bool_exp + ): pokemon_v2_encounterconditionname_aggregate! + + """An array relationship""" + pokemon_v2_encounterconditionvalues( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterconditionvalue_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterconditionvalue_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterconditionvalue_bool_exp + ): [pokemon_v2_encounterconditionvalue!]! + + """An aggregate relationship""" + pokemon_v2_encounterconditionvalues_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterconditionvalue_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterconditionvalue_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterconditionvalue_bool_exp + ): pokemon_v2_encounterconditionvalue_aggregate! +} + +""" +aggregated selection of "pokemon_v2_encountercondition" +""" +type pokemon_v2_encountercondition_aggregate { + aggregate: pokemon_v2_encountercondition_aggregate_fields + nodes: [pokemon_v2_encountercondition!]! +} + +""" +aggregate fields of "pokemon_v2_encountercondition" +""" +type pokemon_v2_encountercondition_aggregate_fields { + avg: pokemon_v2_encountercondition_avg_fields + count(columns: [pokemon_v2_encountercondition_select_column!], distinct: Boolean): Int! + max: pokemon_v2_encountercondition_max_fields + min: pokemon_v2_encountercondition_min_fields + stddev: pokemon_v2_encountercondition_stddev_fields + stddev_pop: pokemon_v2_encountercondition_stddev_pop_fields + stddev_samp: pokemon_v2_encountercondition_stddev_samp_fields + sum: pokemon_v2_encountercondition_sum_fields + var_pop: pokemon_v2_encountercondition_var_pop_fields + var_samp: pokemon_v2_encountercondition_var_samp_fields + variance: pokemon_v2_encountercondition_variance_fields +} + +"""aggregate avg on columns""" +type pokemon_v2_encountercondition_avg_fields { + id: Float +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_encountercondition". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_encountercondition_bool_exp { + _and: [pokemon_v2_encountercondition_bool_exp!] + _not: pokemon_v2_encountercondition_bool_exp + _or: [pokemon_v2_encountercondition_bool_exp!] + id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_encounterconditionnames: pokemon_v2_encounterconditionname_bool_exp + pokemon_v2_encounterconditionnames_aggregate: pokemon_v2_encounterconditionname_aggregate_bool_exp + pokemon_v2_encounterconditionvalues: pokemon_v2_encounterconditionvalue_bool_exp + pokemon_v2_encounterconditionvalues_aggregate: pokemon_v2_encounterconditionvalue_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_encountercondition_max_fields { + id: Int + name: String +} + +"""aggregate min on columns""" +type pokemon_v2_encountercondition_min_fields { + id: Int + name: String +} + +""" +Ordering options when selecting data from "pokemon_v2_encountercondition". +""" +input pokemon_v2_encountercondition_order_by { + id: order_by + name: order_by + pokemon_v2_encounterconditionnames_aggregate: pokemon_v2_encounterconditionname_aggregate_order_by + pokemon_v2_encounterconditionvalues_aggregate: pokemon_v2_encounterconditionvalue_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_encountercondition" +""" +enum pokemon_v2_encountercondition_select_column { + """column name""" + id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_encountercondition_stddev_fields { + id: Float +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_encountercondition_stddev_pop_fields { + id: Float +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_encountercondition_stddev_samp_fields { + id: Float +} + +""" +Streaming cursor of the table "pokemon_v2_encountercondition" +""" +input pokemon_v2_encountercondition_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_encountercondition_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_encountercondition_stream_cursor_value_input { + id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_encountercondition_sum_fields { + id: Int +} + +"""aggregate var_pop on columns""" +type pokemon_v2_encountercondition_var_pop_fields { + id: Float +} + +"""aggregate var_samp on columns""" +type pokemon_v2_encountercondition_var_samp_fields { + id: Float +} + +"""aggregate variance on columns""" +type pokemon_v2_encountercondition_variance_fields { + id: Float +} + +""" +columns and relationships of "pokemon_v2_encounterconditionname" +""" +type pokemon_v2_encounterconditionname { + encounter_condition_id: Int + id: Int! + language_id: Int + name: String! + + """An object relationship""" + pokemon_v2_encountercondition: pokemon_v2_encountercondition + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language +} + +""" +aggregated selection of "pokemon_v2_encounterconditionname" +""" +type pokemon_v2_encounterconditionname_aggregate { + aggregate: pokemon_v2_encounterconditionname_aggregate_fields + nodes: [pokemon_v2_encounterconditionname!]! +} + +input pokemon_v2_encounterconditionname_aggregate_bool_exp { + count: pokemon_v2_encounterconditionname_aggregate_bool_exp_count +} + +input pokemon_v2_encounterconditionname_aggregate_bool_exp_count { + arguments: [pokemon_v2_encounterconditionname_select_column!] + distinct: Boolean + filter: pokemon_v2_encounterconditionname_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_encounterconditionname" +""" +type pokemon_v2_encounterconditionname_aggregate_fields { + avg: pokemon_v2_encounterconditionname_avg_fields + count(columns: [pokemon_v2_encounterconditionname_select_column!], distinct: Boolean): Int! + max: pokemon_v2_encounterconditionname_max_fields + min: pokemon_v2_encounterconditionname_min_fields + stddev: pokemon_v2_encounterconditionname_stddev_fields + stddev_pop: pokemon_v2_encounterconditionname_stddev_pop_fields + stddev_samp: pokemon_v2_encounterconditionname_stddev_samp_fields + sum: pokemon_v2_encounterconditionname_sum_fields + var_pop: pokemon_v2_encounterconditionname_var_pop_fields + var_samp: pokemon_v2_encounterconditionname_var_samp_fields + variance: pokemon_v2_encounterconditionname_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_encounterconditionname" +""" +input pokemon_v2_encounterconditionname_aggregate_order_by { + avg: pokemon_v2_encounterconditionname_avg_order_by + count: order_by + max: pokemon_v2_encounterconditionname_max_order_by + min: pokemon_v2_encounterconditionname_min_order_by + stddev: pokemon_v2_encounterconditionname_stddev_order_by + stddev_pop: pokemon_v2_encounterconditionname_stddev_pop_order_by + stddev_samp: pokemon_v2_encounterconditionname_stddev_samp_order_by + sum: pokemon_v2_encounterconditionname_sum_order_by + var_pop: pokemon_v2_encounterconditionname_var_pop_order_by + var_samp: pokemon_v2_encounterconditionname_var_samp_order_by + variance: pokemon_v2_encounterconditionname_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_encounterconditionname_avg_fields { + encounter_condition_id: Float + id: Float + language_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_encounterconditionname" +""" +input pokemon_v2_encounterconditionname_avg_order_by { + encounter_condition_id: order_by + id: order_by + language_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_encounterconditionname". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_encounterconditionname_bool_exp { + _and: [pokemon_v2_encounterconditionname_bool_exp!] + _not: pokemon_v2_encounterconditionname_bool_exp + _or: [pokemon_v2_encounterconditionname_bool_exp!] + encounter_condition_id: Int_comparison_exp + id: Int_comparison_exp + language_id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_encountercondition: pokemon_v2_encountercondition_bool_exp + pokemon_v2_language: pokemon_v2_language_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_encounterconditionname_max_fields { + encounter_condition_id: Int + id: Int + language_id: Int + name: String +} + +""" +order by max() on columns of table "pokemon_v2_encounterconditionname" +""" +input pokemon_v2_encounterconditionname_max_order_by { + encounter_condition_id: order_by + id: order_by + language_id: order_by + name: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_encounterconditionname_min_fields { + encounter_condition_id: Int + id: Int + language_id: Int + name: String +} + +""" +order by min() on columns of table "pokemon_v2_encounterconditionname" +""" +input pokemon_v2_encounterconditionname_min_order_by { + encounter_condition_id: order_by + id: order_by + language_id: order_by + name: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_encounterconditionname". +""" +input pokemon_v2_encounterconditionname_order_by { + encounter_condition_id: order_by + id: order_by + language_id: order_by + name: order_by + pokemon_v2_encountercondition: pokemon_v2_encountercondition_order_by + pokemon_v2_language: pokemon_v2_language_order_by +} + +""" +select columns of table "pokemon_v2_encounterconditionname" +""" +enum pokemon_v2_encounterconditionname_select_column { + """column name""" + encounter_condition_id + + """column name""" + id + + """column name""" + language_id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_encounterconditionname_stddev_fields { + encounter_condition_id: Float + id: Float + language_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_encounterconditionname" +""" +input pokemon_v2_encounterconditionname_stddev_order_by { + encounter_condition_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_encounterconditionname_stddev_pop_fields { + encounter_condition_id: Float + id: Float + language_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_encounterconditionname" +""" +input pokemon_v2_encounterconditionname_stddev_pop_order_by { + encounter_condition_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_encounterconditionname_stddev_samp_fields { + encounter_condition_id: Float + id: Float + language_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_encounterconditionname" +""" +input pokemon_v2_encounterconditionname_stddev_samp_order_by { + encounter_condition_id: order_by + id: order_by + language_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_encounterconditionname" +""" +input pokemon_v2_encounterconditionname_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_encounterconditionname_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_encounterconditionname_stream_cursor_value_input { + encounter_condition_id: Int + id: Int + language_id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_encounterconditionname_sum_fields { + encounter_condition_id: Int + id: Int + language_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_encounterconditionname" +""" +input pokemon_v2_encounterconditionname_sum_order_by { + encounter_condition_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_encounterconditionname_var_pop_fields { + encounter_condition_id: Float + id: Float + language_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_encounterconditionname" +""" +input pokemon_v2_encounterconditionname_var_pop_order_by { + encounter_condition_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_encounterconditionname_var_samp_fields { + encounter_condition_id: Float + id: Float + language_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_encounterconditionname" +""" +input pokemon_v2_encounterconditionname_var_samp_order_by { + encounter_condition_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_encounterconditionname_variance_fields { + encounter_condition_id: Float + id: Float + language_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_encounterconditionname" +""" +input pokemon_v2_encounterconditionname_variance_order_by { + encounter_condition_id: order_by + id: order_by + language_id: order_by +} + +""" +columns and relationships of "pokemon_v2_encounterconditionvalue" +""" +type pokemon_v2_encounterconditionvalue { + encounter_condition_id: Int + id: Int! + is_default: Boolean! + name: String! + + """An object relationship""" + pokemon_v2_encountercondition: pokemon_v2_encountercondition + + """An array relationship""" + pokemon_v2_encounterconditionvaluemaps( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterconditionvaluemap_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterconditionvaluemap_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterconditionvaluemap_bool_exp + ): [pokemon_v2_encounterconditionvaluemap!]! + + """An aggregate relationship""" + pokemon_v2_encounterconditionvaluemaps_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterconditionvaluemap_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterconditionvaluemap_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterconditionvaluemap_bool_exp + ): pokemon_v2_encounterconditionvaluemap_aggregate! + + """An array relationship""" + pokemon_v2_encounterconditionvaluenames( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterconditionvaluename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterconditionvaluename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterconditionvaluename_bool_exp + ): [pokemon_v2_encounterconditionvaluename!]! + + """An aggregate relationship""" + pokemon_v2_encounterconditionvaluenames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterconditionvaluename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterconditionvaluename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterconditionvaluename_bool_exp + ): pokemon_v2_encounterconditionvaluename_aggregate! +} + +""" +aggregated selection of "pokemon_v2_encounterconditionvalue" +""" +type pokemon_v2_encounterconditionvalue_aggregate { + aggregate: pokemon_v2_encounterconditionvalue_aggregate_fields + nodes: [pokemon_v2_encounterconditionvalue!]! +} + +input pokemon_v2_encounterconditionvalue_aggregate_bool_exp { + bool_and: pokemon_v2_encounterconditionvalue_aggregate_bool_exp_bool_and + bool_or: pokemon_v2_encounterconditionvalue_aggregate_bool_exp_bool_or + count: pokemon_v2_encounterconditionvalue_aggregate_bool_exp_count +} + +input pokemon_v2_encounterconditionvalue_aggregate_bool_exp_bool_and { + arguments: pokemon_v2_encounterconditionvalue_select_column_pokemon_v2_encounterconditionvalue_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: pokemon_v2_encounterconditionvalue_bool_exp + predicate: Boolean_comparison_exp! +} + +input pokemon_v2_encounterconditionvalue_aggregate_bool_exp_bool_or { + arguments: pokemon_v2_encounterconditionvalue_select_column_pokemon_v2_encounterconditionvalue_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: pokemon_v2_encounterconditionvalue_bool_exp + predicate: Boolean_comparison_exp! +} + +input pokemon_v2_encounterconditionvalue_aggregate_bool_exp_count { + arguments: [pokemon_v2_encounterconditionvalue_select_column!] + distinct: Boolean + filter: pokemon_v2_encounterconditionvalue_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_encounterconditionvalue" +""" +type pokemon_v2_encounterconditionvalue_aggregate_fields { + avg: pokemon_v2_encounterconditionvalue_avg_fields + count(columns: [pokemon_v2_encounterconditionvalue_select_column!], distinct: Boolean): Int! + max: pokemon_v2_encounterconditionvalue_max_fields + min: pokemon_v2_encounterconditionvalue_min_fields + stddev: pokemon_v2_encounterconditionvalue_stddev_fields + stddev_pop: pokemon_v2_encounterconditionvalue_stddev_pop_fields + stddev_samp: pokemon_v2_encounterconditionvalue_stddev_samp_fields + sum: pokemon_v2_encounterconditionvalue_sum_fields + var_pop: pokemon_v2_encounterconditionvalue_var_pop_fields + var_samp: pokemon_v2_encounterconditionvalue_var_samp_fields + variance: pokemon_v2_encounterconditionvalue_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_encounterconditionvalue" +""" +input pokemon_v2_encounterconditionvalue_aggregate_order_by { + avg: pokemon_v2_encounterconditionvalue_avg_order_by + count: order_by + max: pokemon_v2_encounterconditionvalue_max_order_by + min: pokemon_v2_encounterconditionvalue_min_order_by + stddev: pokemon_v2_encounterconditionvalue_stddev_order_by + stddev_pop: pokemon_v2_encounterconditionvalue_stddev_pop_order_by + stddev_samp: pokemon_v2_encounterconditionvalue_stddev_samp_order_by + sum: pokemon_v2_encounterconditionvalue_sum_order_by + var_pop: pokemon_v2_encounterconditionvalue_var_pop_order_by + var_samp: pokemon_v2_encounterconditionvalue_var_samp_order_by + variance: pokemon_v2_encounterconditionvalue_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_encounterconditionvalue_avg_fields { + encounter_condition_id: Float + id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_encounterconditionvalue" +""" +input pokemon_v2_encounterconditionvalue_avg_order_by { + encounter_condition_id: order_by + id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_encounterconditionvalue". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_encounterconditionvalue_bool_exp { + _and: [pokemon_v2_encounterconditionvalue_bool_exp!] + _not: pokemon_v2_encounterconditionvalue_bool_exp + _or: [pokemon_v2_encounterconditionvalue_bool_exp!] + encounter_condition_id: Int_comparison_exp + id: Int_comparison_exp + is_default: Boolean_comparison_exp + name: String_comparison_exp + pokemon_v2_encountercondition: pokemon_v2_encountercondition_bool_exp + pokemon_v2_encounterconditionvaluemaps: pokemon_v2_encounterconditionvaluemap_bool_exp + pokemon_v2_encounterconditionvaluemaps_aggregate: pokemon_v2_encounterconditionvaluemap_aggregate_bool_exp + pokemon_v2_encounterconditionvaluenames: pokemon_v2_encounterconditionvaluename_bool_exp + pokemon_v2_encounterconditionvaluenames_aggregate: pokemon_v2_encounterconditionvaluename_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_encounterconditionvalue_max_fields { + encounter_condition_id: Int + id: Int + name: String +} + +""" +order by max() on columns of table "pokemon_v2_encounterconditionvalue" +""" +input pokemon_v2_encounterconditionvalue_max_order_by { + encounter_condition_id: order_by + id: order_by + name: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_encounterconditionvalue_min_fields { + encounter_condition_id: Int + id: Int + name: String +} + +""" +order by min() on columns of table "pokemon_v2_encounterconditionvalue" +""" +input pokemon_v2_encounterconditionvalue_min_order_by { + encounter_condition_id: order_by + id: order_by + name: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_encounterconditionvalue". +""" +input pokemon_v2_encounterconditionvalue_order_by { + encounter_condition_id: order_by + id: order_by + is_default: order_by + name: order_by + pokemon_v2_encountercondition: pokemon_v2_encountercondition_order_by + pokemon_v2_encounterconditionvaluemaps_aggregate: pokemon_v2_encounterconditionvaluemap_aggregate_order_by + pokemon_v2_encounterconditionvaluenames_aggregate: pokemon_v2_encounterconditionvaluename_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_encounterconditionvalue" +""" +enum pokemon_v2_encounterconditionvalue_select_column { + """column name""" + encounter_condition_id + + """column name""" + id + + """column name""" + is_default + + """column name""" + name +} + +""" +select "pokemon_v2_encounterconditionvalue_aggregate_bool_exp_bool_and_arguments_columns" columns of table "pokemon_v2_encounterconditionvalue" +""" +enum pokemon_v2_encounterconditionvalue_select_column_pokemon_v2_encounterconditionvalue_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + is_default +} + +""" +select "pokemon_v2_encounterconditionvalue_aggregate_bool_exp_bool_or_arguments_columns" columns of table "pokemon_v2_encounterconditionvalue" +""" +enum pokemon_v2_encounterconditionvalue_select_column_pokemon_v2_encounterconditionvalue_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + is_default +} + +"""aggregate stddev on columns""" +type pokemon_v2_encounterconditionvalue_stddev_fields { + encounter_condition_id: Float + id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_encounterconditionvalue" +""" +input pokemon_v2_encounterconditionvalue_stddev_order_by { + encounter_condition_id: order_by + id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_encounterconditionvalue_stddev_pop_fields { + encounter_condition_id: Float + id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_encounterconditionvalue" +""" +input pokemon_v2_encounterconditionvalue_stddev_pop_order_by { + encounter_condition_id: order_by + id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_encounterconditionvalue_stddev_samp_fields { + encounter_condition_id: Float + id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_encounterconditionvalue" +""" +input pokemon_v2_encounterconditionvalue_stddev_samp_order_by { + encounter_condition_id: order_by + id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_encounterconditionvalue" +""" +input pokemon_v2_encounterconditionvalue_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_encounterconditionvalue_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_encounterconditionvalue_stream_cursor_value_input { + encounter_condition_id: Int + id: Int + is_default: Boolean + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_encounterconditionvalue_sum_fields { + encounter_condition_id: Int + id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_encounterconditionvalue" +""" +input pokemon_v2_encounterconditionvalue_sum_order_by { + encounter_condition_id: order_by + id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_encounterconditionvalue_var_pop_fields { + encounter_condition_id: Float + id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_encounterconditionvalue" +""" +input pokemon_v2_encounterconditionvalue_var_pop_order_by { + encounter_condition_id: order_by + id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_encounterconditionvalue_var_samp_fields { + encounter_condition_id: Float + id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_encounterconditionvalue" +""" +input pokemon_v2_encounterconditionvalue_var_samp_order_by { + encounter_condition_id: order_by + id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_encounterconditionvalue_variance_fields { + encounter_condition_id: Float + id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_encounterconditionvalue" +""" +input pokemon_v2_encounterconditionvalue_variance_order_by { + encounter_condition_id: order_by + id: order_by +} + +""" +columns and relationships of "pokemon_v2_encounterconditionvaluemap" +""" +type pokemon_v2_encounterconditionvaluemap { + encounter_condition_value_id: Int + encounter_id: Int + id: Int! + + """An object relationship""" + pokemon_v2_encounter: pokemon_v2_encounter + + """An object relationship""" + pokemon_v2_encounterconditionvalue: pokemon_v2_encounterconditionvalue +} + +""" +aggregated selection of "pokemon_v2_encounterconditionvaluemap" +""" +type pokemon_v2_encounterconditionvaluemap_aggregate { + aggregate: pokemon_v2_encounterconditionvaluemap_aggregate_fields + nodes: [pokemon_v2_encounterconditionvaluemap!]! +} + +input pokemon_v2_encounterconditionvaluemap_aggregate_bool_exp { + count: pokemon_v2_encounterconditionvaluemap_aggregate_bool_exp_count +} + +input pokemon_v2_encounterconditionvaluemap_aggregate_bool_exp_count { + arguments: [pokemon_v2_encounterconditionvaluemap_select_column!] + distinct: Boolean + filter: pokemon_v2_encounterconditionvaluemap_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_encounterconditionvaluemap" +""" +type pokemon_v2_encounterconditionvaluemap_aggregate_fields { + avg: pokemon_v2_encounterconditionvaluemap_avg_fields + count(columns: [pokemon_v2_encounterconditionvaluemap_select_column!], distinct: Boolean): Int! + max: pokemon_v2_encounterconditionvaluemap_max_fields + min: pokemon_v2_encounterconditionvaluemap_min_fields + stddev: pokemon_v2_encounterconditionvaluemap_stddev_fields + stddev_pop: pokemon_v2_encounterconditionvaluemap_stddev_pop_fields + stddev_samp: pokemon_v2_encounterconditionvaluemap_stddev_samp_fields + sum: pokemon_v2_encounterconditionvaluemap_sum_fields + var_pop: pokemon_v2_encounterconditionvaluemap_var_pop_fields + var_samp: pokemon_v2_encounterconditionvaluemap_var_samp_fields + variance: pokemon_v2_encounterconditionvaluemap_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_encounterconditionvaluemap" +""" +input pokemon_v2_encounterconditionvaluemap_aggregate_order_by { + avg: pokemon_v2_encounterconditionvaluemap_avg_order_by + count: order_by + max: pokemon_v2_encounterconditionvaluemap_max_order_by + min: pokemon_v2_encounterconditionvaluemap_min_order_by + stddev: pokemon_v2_encounterconditionvaluemap_stddev_order_by + stddev_pop: pokemon_v2_encounterconditionvaluemap_stddev_pop_order_by + stddev_samp: pokemon_v2_encounterconditionvaluemap_stddev_samp_order_by + sum: pokemon_v2_encounterconditionvaluemap_sum_order_by + var_pop: pokemon_v2_encounterconditionvaluemap_var_pop_order_by + var_samp: pokemon_v2_encounterconditionvaluemap_var_samp_order_by + variance: pokemon_v2_encounterconditionvaluemap_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_encounterconditionvaluemap_avg_fields { + encounter_condition_value_id: Float + encounter_id: Float + id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_encounterconditionvaluemap" +""" +input pokemon_v2_encounterconditionvaluemap_avg_order_by { + encounter_condition_value_id: order_by + encounter_id: order_by + id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_encounterconditionvaluemap". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_encounterconditionvaluemap_bool_exp { + _and: [pokemon_v2_encounterconditionvaluemap_bool_exp!] + _not: pokemon_v2_encounterconditionvaluemap_bool_exp + _or: [pokemon_v2_encounterconditionvaluemap_bool_exp!] + encounter_condition_value_id: Int_comparison_exp + encounter_id: Int_comparison_exp + id: Int_comparison_exp + pokemon_v2_encounter: pokemon_v2_encounter_bool_exp + pokemon_v2_encounterconditionvalue: pokemon_v2_encounterconditionvalue_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_encounterconditionvaluemap_max_fields { + encounter_condition_value_id: Int + encounter_id: Int + id: Int +} + +""" +order by max() on columns of table "pokemon_v2_encounterconditionvaluemap" +""" +input pokemon_v2_encounterconditionvaluemap_max_order_by { + encounter_condition_value_id: order_by + encounter_id: order_by + id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_encounterconditionvaluemap_min_fields { + encounter_condition_value_id: Int + encounter_id: Int + id: Int +} + +""" +order by min() on columns of table "pokemon_v2_encounterconditionvaluemap" +""" +input pokemon_v2_encounterconditionvaluemap_min_order_by { + encounter_condition_value_id: order_by + encounter_id: order_by + id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_encounterconditionvaluemap". +""" +input pokemon_v2_encounterconditionvaluemap_order_by { + encounter_condition_value_id: order_by + encounter_id: order_by + id: order_by + pokemon_v2_encounter: pokemon_v2_encounter_order_by + pokemon_v2_encounterconditionvalue: pokemon_v2_encounterconditionvalue_order_by +} + +""" +select columns of table "pokemon_v2_encounterconditionvaluemap" +""" +enum pokemon_v2_encounterconditionvaluemap_select_column { + """column name""" + encounter_condition_value_id + + """column name""" + encounter_id + + """column name""" + id +} + +"""aggregate stddev on columns""" +type pokemon_v2_encounterconditionvaluemap_stddev_fields { + encounter_condition_value_id: Float + encounter_id: Float + id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_encounterconditionvaluemap" +""" +input pokemon_v2_encounterconditionvaluemap_stddev_order_by { + encounter_condition_value_id: order_by + encounter_id: order_by + id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_encounterconditionvaluemap_stddev_pop_fields { + encounter_condition_value_id: Float + encounter_id: Float + id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_encounterconditionvaluemap" +""" +input pokemon_v2_encounterconditionvaluemap_stddev_pop_order_by { + encounter_condition_value_id: order_by + encounter_id: order_by + id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_encounterconditionvaluemap_stddev_samp_fields { + encounter_condition_value_id: Float + encounter_id: Float + id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_encounterconditionvaluemap" +""" +input pokemon_v2_encounterconditionvaluemap_stddev_samp_order_by { + encounter_condition_value_id: order_by + encounter_id: order_by + id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_encounterconditionvaluemap" +""" +input pokemon_v2_encounterconditionvaluemap_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_encounterconditionvaluemap_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_encounterconditionvaluemap_stream_cursor_value_input { + encounter_condition_value_id: Int + encounter_id: Int + id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_encounterconditionvaluemap_sum_fields { + encounter_condition_value_id: Int + encounter_id: Int + id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_encounterconditionvaluemap" +""" +input pokemon_v2_encounterconditionvaluemap_sum_order_by { + encounter_condition_value_id: order_by + encounter_id: order_by + id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_encounterconditionvaluemap_var_pop_fields { + encounter_condition_value_id: Float + encounter_id: Float + id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_encounterconditionvaluemap" +""" +input pokemon_v2_encounterconditionvaluemap_var_pop_order_by { + encounter_condition_value_id: order_by + encounter_id: order_by + id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_encounterconditionvaluemap_var_samp_fields { + encounter_condition_value_id: Float + encounter_id: Float + id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_encounterconditionvaluemap" +""" +input pokemon_v2_encounterconditionvaluemap_var_samp_order_by { + encounter_condition_value_id: order_by + encounter_id: order_by + id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_encounterconditionvaluemap_variance_fields { + encounter_condition_value_id: Float + encounter_id: Float + id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_encounterconditionvaluemap" +""" +input pokemon_v2_encounterconditionvaluemap_variance_order_by { + encounter_condition_value_id: order_by + encounter_id: order_by + id: order_by +} + +""" +columns and relationships of "pokemon_v2_encounterconditionvaluename" +""" +type pokemon_v2_encounterconditionvaluename { + encounter_condition_value_id: Int + id: Int! + language_id: Int + name: String! + + """An object relationship""" + pokemon_v2_encounterconditionvalue: pokemon_v2_encounterconditionvalue + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language +} + +""" +aggregated selection of "pokemon_v2_encounterconditionvaluename" +""" +type pokemon_v2_encounterconditionvaluename_aggregate { + aggregate: pokemon_v2_encounterconditionvaluename_aggregate_fields + nodes: [pokemon_v2_encounterconditionvaluename!]! +} + +input pokemon_v2_encounterconditionvaluename_aggregate_bool_exp { + count: pokemon_v2_encounterconditionvaluename_aggregate_bool_exp_count +} + +input pokemon_v2_encounterconditionvaluename_aggregate_bool_exp_count { + arguments: [pokemon_v2_encounterconditionvaluename_select_column!] + distinct: Boolean + filter: pokemon_v2_encounterconditionvaluename_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_encounterconditionvaluename" +""" +type pokemon_v2_encounterconditionvaluename_aggregate_fields { + avg: pokemon_v2_encounterconditionvaluename_avg_fields + count(columns: [pokemon_v2_encounterconditionvaluename_select_column!], distinct: Boolean): Int! + max: pokemon_v2_encounterconditionvaluename_max_fields + min: pokemon_v2_encounterconditionvaluename_min_fields + stddev: pokemon_v2_encounterconditionvaluename_stddev_fields + stddev_pop: pokemon_v2_encounterconditionvaluename_stddev_pop_fields + stddev_samp: pokemon_v2_encounterconditionvaluename_stddev_samp_fields + sum: pokemon_v2_encounterconditionvaluename_sum_fields + var_pop: pokemon_v2_encounterconditionvaluename_var_pop_fields + var_samp: pokemon_v2_encounterconditionvaluename_var_samp_fields + variance: pokemon_v2_encounterconditionvaluename_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_encounterconditionvaluename" +""" +input pokemon_v2_encounterconditionvaluename_aggregate_order_by { + avg: pokemon_v2_encounterconditionvaluename_avg_order_by + count: order_by + max: pokemon_v2_encounterconditionvaluename_max_order_by + min: pokemon_v2_encounterconditionvaluename_min_order_by + stddev: pokemon_v2_encounterconditionvaluename_stddev_order_by + stddev_pop: pokemon_v2_encounterconditionvaluename_stddev_pop_order_by + stddev_samp: pokemon_v2_encounterconditionvaluename_stddev_samp_order_by + sum: pokemon_v2_encounterconditionvaluename_sum_order_by + var_pop: pokemon_v2_encounterconditionvaluename_var_pop_order_by + var_samp: pokemon_v2_encounterconditionvaluename_var_samp_order_by + variance: pokemon_v2_encounterconditionvaluename_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_encounterconditionvaluename_avg_fields { + encounter_condition_value_id: Float + id: Float + language_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_encounterconditionvaluename" +""" +input pokemon_v2_encounterconditionvaluename_avg_order_by { + encounter_condition_value_id: order_by + id: order_by + language_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_encounterconditionvaluename". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_encounterconditionvaluename_bool_exp { + _and: [pokemon_v2_encounterconditionvaluename_bool_exp!] + _not: pokemon_v2_encounterconditionvaluename_bool_exp + _or: [pokemon_v2_encounterconditionvaluename_bool_exp!] + encounter_condition_value_id: Int_comparison_exp + id: Int_comparison_exp + language_id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_encounterconditionvalue: pokemon_v2_encounterconditionvalue_bool_exp + pokemon_v2_language: pokemon_v2_language_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_encounterconditionvaluename_max_fields { + encounter_condition_value_id: Int + id: Int + language_id: Int + name: String +} + +""" +order by max() on columns of table "pokemon_v2_encounterconditionvaluename" +""" +input pokemon_v2_encounterconditionvaluename_max_order_by { + encounter_condition_value_id: order_by + id: order_by + language_id: order_by + name: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_encounterconditionvaluename_min_fields { + encounter_condition_value_id: Int + id: Int + language_id: Int + name: String +} + +""" +order by min() on columns of table "pokemon_v2_encounterconditionvaluename" +""" +input pokemon_v2_encounterconditionvaluename_min_order_by { + encounter_condition_value_id: order_by + id: order_by + language_id: order_by + name: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_encounterconditionvaluename". +""" +input pokemon_v2_encounterconditionvaluename_order_by { + encounter_condition_value_id: order_by + id: order_by + language_id: order_by + name: order_by + pokemon_v2_encounterconditionvalue: pokemon_v2_encounterconditionvalue_order_by + pokemon_v2_language: pokemon_v2_language_order_by +} + +""" +select columns of table "pokemon_v2_encounterconditionvaluename" +""" +enum pokemon_v2_encounterconditionvaluename_select_column { + """column name""" + encounter_condition_value_id + + """column name""" + id + + """column name""" + language_id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_encounterconditionvaluename_stddev_fields { + encounter_condition_value_id: Float + id: Float + language_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_encounterconditionvaluename" +""" +input pokemon_v2_encounterconditionvaluename_stddev_order_by { + encounter_condition_value_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_encounterconditionvaluename_stddev_pop_fields { + encounter_condition_value_id: Float + id: Float + language_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_encounterconditionvaluename" +""" +input pokemon_v2_encounterconditionvaluename_stddev_pop_order_by { + encounter_condition_value_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_encounterconditionvaluename_stddev_samp_fields { + encounter_condition_value_id: Float + id: Float + language_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_encounterconditionvaluename" +""" +input pokemon_v2_encounterconditionvaluename_stddev_samp_order_by { + encounter_condition_value_id: order_by + id: order_by + language_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_encounterconditionvaluename" +""" +input pokemon_v2_encounterconditionvaluename_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_encounterconditionvaluename_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_encounterconditionvaluename_stream_cursor_value_input { + encounter_condition_value_id: Int + id: Int + language_id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_encounterconditionvaluename_sum_fields { + encounter_condition_value_id: Int + id: Int + language_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_encounterconditionvaluename" +""" +input pokemon_v2_encounterconditionvaluename_sum_order_by { + encounter_condition_value_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_encounterconditionvaluename_var_pop_fields { + encounter_condition_value_id: Float + id: Float + language_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_encounterconditionvaluename" +""" +input pokemon_v2_encounterconditionvaluename_var_pop_order_by { + encounter_condition_value_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_encounterconditionvaluename_var_samp_fields { + encounter_condition_value_id: Float + id: Float + language_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_encounterconditionvaluename" +""" +input pokemon_v2_encounterconditionvaluename_var_samp_order_by { + encounter_condition_value_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_encounterconditionvaluename_variance_fields { + encounter_condition_value_id: Float + id: Float + language_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_encounterconditionvaluename" +""" +input pokemon_v2_encounterconditionvaluename_variance_order_by { + encounter_condition_value_id: order_by + id: order_by + language_id: order_by +} + +""" +columns and relationships of "pokemon_v2_encountermethod" +""" +type pokemon_v2_encountermethod { + id: Int! + name: String! + order: Int + + """An array relationship""" + pokemon_v2_encountermethodnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_encountermethodname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encountermethodname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encountermethodname_bool_exp + ): [pokemon_v2_encountermethodname!]! + + """An aggregate relationship""" + pokemon_v2_encountermethodnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_encountermethodname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encountermethodname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encountermethodname_bool_exp + ): pokemon_v2_encountermethodname_aggregate! + + """An array relationship""" + pokemon_v2_encounterslots( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterslot_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterslot_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterslot_bool_exp + ): [pokemon_v2_encounterslot!]! + + """An aggregate relationship""" + pokemon_v2_encounterslots_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterslot_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterslot_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterslot_bool_exp + ): pokemon_v2_encounterslot_aggregate! + + """An array relationship""" + pokemon_v2_locationareaencounterrates( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationareaencounterrate_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationareaencounterrate_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationareaencounterrate_bool_exp + ): [pokemon_v2_locationareaencounterrate!]! + + """An aggregate relationship""" + pokemon_v2_locationareaencounterrates_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationareaencounterrate_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationareaencounterrate_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationareaencounterrate_bool_exp + ): pokemon_v2_locationareaencounterrate_aggregate! +} + +""" +aggregated selection of "pokemon_v2_encountermethod" +""" +type pokemon_v2_encountermethod_aggregate { + aggregate: pokemon_v2_encountermethod_aggregate_fields + nodes: [pokemon_v2_encountermethod!]! +} + +""" +aggregate fields of "pokemon_v2_encountermethod" +""" +type pokemon_v2_encountermethod_aggregate_fields { + avg: pokemon_v2_encountermethod_avg_fields + count(columns: [pokemon_v2_encountermethod_select_column!], distinct: Boolean): Int! + max: pokemon_v2_encountermethod_max_fields + min: pokemon_v2_encountermethod_min_fields + stddev: pokemon_v2_encountermethod_stddev_fields + stddev_pop: pokemon_v2_encountermethod_stddev_pop_fields + stddev_samp: pokemon_v2_encountermethod_stddev_samp_fields + sum: pokemon_v2_encountermethod_sum_fields + var_pop: pokemon_v2_encountermethod_var_pop_fields + var_samp: pokemon_v2_encountermethod_var_samp_fields + variance: pokemon_v2_encountermethod_variance_fields +} + +"""aggregate avg on columns""" +type pokemon_v2_encountermethod_avg_fields { + id: Float + order: Float +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_encountermethod". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_encountermethod_bool_exp { + _and: [pokemon_v2_encountermethod_bool_exp!] + _not: pokemon_v2_encountermethod_bool_exp + _or: [pokemon_v2_encountermethod_bool_exp!] + id: Int_comparison_exp + name: String_comparison_exp + order: Int_comparison_exp + pokemon_v2_encountermethodnames: pokemon_v2_encountermethodname_bool_exp + pokemon_v2_encountermethodnames_aggregate: pokemon_v2_encountermethodname_aggregate_bool_exp + pokemon_v2_encounterslots: pokemon_v2_encounterslot_bool_exp + pokemon_v2_encounterslots_aggregate: pokemon_v2_encounterslot_aggregate_bool_exp + pokemon_v2_locationareaencounterrates: pokemon_v2_locationareaencounterrate_bool_exp + pokemon_v2_locationareaencounterrates_aggregate: pokemon_v2_locationareaencounterrate_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_encountermethod_max_fields { + id: Int + name: String + order: Int +} + +"""aggregate min on columns""" +type pokemon_v2_encountermethod_min_fields { + id: Int + name: String + order: Int +} + +""" +Ordering options when selecting data from "pokemon_v2_encountermethod". +""" +input pokemon_v2_encountermethod_order_by { + id: order_by + name: order_by + order: order_by + pokemon_v2_encountermethodnames_aggregate: pokemon_v2_encountermethodname_aggregate_order_by + pokemon_v2_encounterslots_aggregate: pokemon_v2_encounterslot_aggregate_order_by + pokemon_v2_locationareaencounterrates_aggregate: pokemon_v2_locationareaencounterrate_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_encountermethod" +""" +enum pokemon_v2_encountermethod_select_column { + """column name""" + id + + """column name""" + name + + """column name""" + order +} + +"""aggregate stddev on columns""" +type pokemon_v2_encountermethod_stddev_fields { + id: Float + order: Float +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_encountermethod_stddev_pop_fields { + id: Float + order: Float +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_encountermethod_stddev_samp_fields { + id: Float + order: Float +} + +""" +Streaming cursor of the table "pokemon_v2_encountermethod" +""" +input pokemon_v2_encountermethod_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_encountermethod_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_encountermethod_stream_cursor_value_input { + id: Int + name: String + order: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_encountermethod_sum_fields { + id: Int + order: Int +} + +"""aggregate var_pop on columns""" +type pokemon_v2_encountermethod_var_pop_fields { + id: Float + order: Float +} + +"""aggregate var_samp on columns""" +type pokemon_v2_encountermethod_var_samp_fields { + id: Float + order: Float +} + +"""aggregate variance on columns""" +type pokemon_v2_encountermethod_variance_fields { + id: Float + order: Float +} + +""" +columns and relationships of "pokemon_v2_encountermethodname" +""" +type pokemon_v2_encountermethodname { + encounter_method_id: Int + id: Int! + language_id: Int + name: String! + + """An object relationship""" + pokemon_v2_encountermethod: pokemon_v2_encountermethod + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language +} + +""" +aggregated selection of "pokemon_v2_encountermethodname" +""" +type pokemon_v2_encountermethodname_aggregate { + aggregate: pokemon_v2_encountermethodname_aggregate_fields + nodes: [pokemon_v2_encountermethodname!]! +} + +input pokemon_v2_encountermethodname_aggregate_bool_exp { + count: pokemon_v2_encountermethodname_aggregate_bool_exp_count +} + +input pokemon_v2_encountermethodname_aggregate_bool_exp_count { + arguments: [pokemon_v2_encountermethodname_select_column!] + distinct: Boolean + filter: pokemon_v2_encountermethodname_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_encountermethodname" +""" +type pokemon_v2_encountermethodname_aggregate_fields { + avg: pokemon_v2_encountermethodname_avg_fields + count(columns: [pokemon_v2_encountermethodname_select_column!], distinct: Boolean): Int! + max: pokemon_v2_encountermethodname_max_fields + min: pokemon_v2_encountermethodname_min_fields + stddev: pokemon_v2_encountermethodname_stddev_fields + stddev_pop: pokemon_v2_encountermethodname_stddev_pop_fields + stddev_samp: pokemon_v2_encountermethodname_stddev_samp_fields + sum: pokemon_v2_encountermethodname_sum_fields + var_pop: pokemon_v2_encountermethodname_var_pop_fields + var_samp: pokemon_v2_encountermethodname_var_samp_fields + variance: pokemon_v2_encountermethodname_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_encountermethodname" +""" +input pokemon_v2_encountermethodname_aggregate_order_by { + avg: pokemon_v2_encountermethodname_avg_order_by + count: order_by + max: pokemon_v2_encountermethodname_max_order_by + min: pokemon_v2_encountermethodname_min_order_by + stddev: pokemon_v2_encountermethodname_stddev_order_by + stddev_pop: pokemon_v2_encountermethodname_stddev_pop_order_by + stddev_samp: pokemon_v2_encountermethodname_stddev_samp_order_by + sum: pokemon_v2_encountermethodname_sum_order_by + var_pop: pokemon_v2_encountermethodname_var_pop_order_by + var_samp: pokemon_v2_encountermethodname_var_samp_order_by + variance: pokemon_v2_encountermethodname_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_encountermethodname_avg_fields { + encounter_method_id: Float + id: Float + language_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_encountermethodname" +""" +input pokemon_v2_encountermethodname_avg_order_by { + encounter_method_id: order_by + id: order_by + language_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_encountermethodname". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_encountermethodname_bool_exp { + _and: [pokemon_v2_encountermethodname_bool_exp!] + _not: pokemon_v2_encountermethodname_bool_exp + _or: [pokemon_v2_encountermethodname_bool_exp!] + encounter_method_id: Int_comparison_exp + id: Int_comparison_exp + language_id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_encountermethod: pokemon_v2_encountermethod_bool_exp + pokemon_v2_language: pokemon_v2_language_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_encountermethodname_max_fields { + encounter_method_id: Int + id: Int + language_id: Int + name: String +} + +""" +order by max() on columns of table "pokemon_v2_encountermethodname" +""" +input pokemon_v2_encountermethodname_max_order_by { + encounter_method_id: order_by + id: order_by + language_id: order_by + name: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_encountermethodname_min_fields { + encounter_method_id: Int + id: Int + language_id: Int + name: String +} + +""" +order by min() on columns of table "pokemon_v2_encountermethodname" +""" +input pokemon_v2_encountermethodname_min_order_by { + encounter_method_id: order_by + id: order_by + language_id: order_by + name: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_encountermethodname". +""" +input pokemon_v2_encountermethodname_order_by { + encounter_method_id: order_by + id: order_by + language_id: order_by + name: order_by + pokemon_v2_encountermethod: pokemon_v2_encountermethod_order_by + pokemon_v2_language: pokemon_v2_language_order_by +} + +""" +select columns of table "pokemon_v2_encountermethodname" +""" +enum pokemon_v2_encountermethodname_select_column { + """column name""" + encounter_method_id + + """column name""" + id + + """column name""" + language_id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_encountermethodname_stddev_fields { + encounter_method_id: Float + id: Float + language_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_encountermethodname" +""" +input pokemon_v2_encountermethodname_stddev_order_by { + encounter_method_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_encountermethodname_stddev_pop_fields { + encounter_method_id: Float + id: Float + language_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_encountermethodname" +""" +input pokemon_v2_encountermethodname_stddev_pop_order_by { + encounter_method_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_encountermethodname_stddev_samp_fields { + encounter_method_id: Float + id: Float + language_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_encountermethodname" +""" +input pokemon_v2_encountermethodname_stddev_samp_order_by { + encounter_method_id: order_by + id: order_by + language_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_encountermethodname" +""" +input pokemon_v2_encountermethodname_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_encountermethodname_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_encountermethodname_stream_cursor_value_input { + encounter_method_id: Int + id: Int + language_id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_encountermethodname_sum_fields { + encounter_method_id: Int + id: Int + language_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_encountermethodname" +""" +input pokemon_v2_encountermethodname_sum_order_by { + encounter_method_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_encountermethodname_var_pop_fields { + encounter_method_id: Float + id: Float + language_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_encountermethodname" +""" +input pokemon_v2_encountermethodname_var_pop_order_by { + encounter_method_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_encountermethodname_var_samp_fields { + encounter_method_id: Float + id: Float + language_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_encountermethodname" +""" +input pokemon_v2_encountermethodname_var_samp_order_by { + encounter_method_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_encountermethodname_variance_fields { + encounter_method_id: Float + id: Float + language_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_encountermethodname" +""" +input pokemon_v2_encountermethodname_variance_order_by { + encounter_method_id: order_by + id: order_by + language_id: order_by +} + +""" +columns and relationships of "pokemon_v2_encounterslot" +""" +type pokemon_v2_encounterslot { + encounter_method_id: Int + id: Int! + + """An object relationship""" + pokemon_v2_encountermethod: pokemon_v2_encountermethod + + """An array relationship""" + pokemon_v2_encounters( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounter_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounter_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounter_bool_exp + ): [pokemon_v2_encounter!]! + + """An aggregate relationship""" + pokemon_v2_encounters_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounter_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounter_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounter_bool_exp + ): pokemon_v2_encounter_aggregate! + + """An object relationship""" + pokemon_v2_versiongroup: pokemon_v2_versiongroup + rarity: Int! + slot: Int + version_group_id: Int +} + +""" +aggregated selection of "pokemon_v2_encounterslot" +""" +type pokemon_v2_encounterslot_aggregate { + aggregate: pokemon_v2_encounterslot_aggregate_fields + nodes: [pokemon_v2_encounterslot!]! +} + +input pokemon_v2_encounterslot_aggregate_bool_exp { + count: pokemon_v2_encounterslot_aggregate_bool_exp_count +} + +input pokemon_v2_encounterslot_aggregate_bool_exp_count { + arguments: [pokemon_v2_encounterslot_select_column!] + distinct: Boolean + filter: pokemon_v2_encounterslot_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_encounterslot" +""" +type pokemon_v2_encounterslot_aggregate_fields { + avg: pokemon_v2_encounterslot_avg_fields + count(columns: [pokemon_v2_encounterslot_select_column!], distinct: Boolean): Int! + max: pokemon_v2_encounterslot_max_fields + min: pokemon_v2_encounterslot_min_fields + stddev: pokemon_v2_encounterslot_stddev_fields + stddev_pop: pokemon_v2_encounterslot_stddev_pop_fields + stddev_samp: pokemon_v2_encounterslot_stddev_samp_fields + sum: pokemon_v2_encounterslot_sum_fields + var_pop: pokemon_v2_encounterslot_var_pop_fields + var_samp: pokemon_v2_encounterslot_var_samp_fields + variance: pokemon_v2_encounterslot_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_encounterslot" +""" +input pokemon_v2_encounterslot_aggregate_order_by { + avg: pokemon_v2_encounterslot_avg_order_by + count: order_by + max: pokemon_v2_encounterslot_max_order_by + min: pokemon_v2_encounterslot_min_order_by + stddev: pokemon_v2_encounterslot_stddev_order_by + stddev_pop: pokemon_v2_encounterslot_stddev_pop_order_by + stddev_samp: pokemon_v2_encounterslot_stddev_samp_order_by + sum: pokemon_v2_encounterslot_sum_order_by + var_pop: pokemon_v2_encounterslot_var_pop_order_by + var_samp: pokemon_v2_encounterslot_var_samp_order_by + variance: pokemon_v2_encounterslot_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_encounterslot_avg_fields { + encounter_method_id: Float + id: Float + rarity: Float + slot: Float + version_group_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_encounterslot" +""" +input pokemon_v2_encounterslot_avg_order_by { + encounter_method_id: order_by + id: order_by + rarity: order_by + slot: order_by + version_group_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_encounterslot". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_encounterslot_bool_exp { + _and: [pokemon_v2_encounterslot_bool_exp!] + _not: pokemon_v2_encounterslot_bool_exp + _or: [pokemon_v2_encounterslot_bool_exp!] + encounter_method_id: Int_comparison_exp + id: Int_comparison_exp + pokemon_v2_encountermethod: pokemon_v2_encountermethod_bool_exp + pokemon_v2_encounters: pokemon_v2_encounter_bool_exp + pokemon_v2_encounters_aggregate: pokemon_v2_encounter_aggregate_bool_exp + pokemon_v2_versiongroup: pokemon_v2_versiongroup_bool_exp + rarity: Int_comparison_exp + slot: Int_comparison_exp + version_group_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_encounterslot_max_fields { + encounter_method_id: Int + id: Int + rarity: Int + slot: Int + version_group_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_encounterslot" +""" +input pokemon_v2_encounterslot_max_order_by { + encounter_method_id: order_by + id: order_by + rarity: order_by + slot: order_by + version_group_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_encounterslot_min_fields { + encounter_method_id: Int + id: Int + rarity: Int + slot: Int + version_group_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_encounterslot" +""" +input pokemon_v2_encounterslot_min_order_by { + encounter_method_id: order_by + id: order_by + rarity: order_by + slot: order_by + version_group_id: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_encounterslot".""" +input pokemon_v2_encounterslot_order_by { + encounter_method_id: order_by + id: order_by + pokemon_v2_encountermethod: pokemon_v2_encountermethod_order_by + pokemon_v2_encounters_aggregate: pokemon_v2_encounter_aggregate_order_by + pokemon_v2_versiongroup: pokemon_v2_versiongroup_order_by + rarity: order_by + slot: order_by + version_group_id: order_by +} + +""" +select columns of table "pokemon_v2_encounterslot" +""" +enum pokemon_v2_encounterslot_select_column { + """column name""" + encounter_method_id + + """column name""" + id + + """column name""" + rarity + + """column name""" + slot + + """column name""" + version_group_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_encounterslot_stddev_fields { + encounter_method_id: Float + id: Float + rarity: Float + slot: Float + version_group_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_encounterslot" +""" +input pokemon_v2_encounterslot_stddev_order_by { + encounter_method_id: order_by + id: order_by + rarity: order_by + slot: order_by + version_group_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_encounterslot_stddev_pop_fields { + encounter_method_id: Float + id: Float + rarity: Float + slot: Float + version_group_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_encounterslot" +""" +input pokemon_v2_encounterslot_stddev_pop_order_by { + encounter_method_id: order_by + id: order_by + rarity: order_by + slot: order_by + version_group_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_encounterslot_stddev_samp_fields { + encounter_method_id: Float + id: Float + rarity: Float + slot: Float + version_group_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_encounterslot" +""" +input pokemon_v2_encounterslot_stddev_samp_order_by { + encounter_method_id: order_by + id: order_by + rarity: order_by + slot: order_by + version_group_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_encounterslot" +""" +input pokemon_v2_encounterslot_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_encounterslot_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_encounterslot_stream_cursor_value_input { + encounter_method_id: Int + id: Int + rarity: Int + slot: Int + version_group_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_encounterslot_sum_fields { + encounter_method_id: Int + id: Int + rarity: Int + slot: Int + version_group_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_encounterslot" +""" +input pokemon_v2_encounterslot_sum_order_by { + encounter_method_id: order_by + id: order_by + rarity: order_by + slot: order_by + version_group_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_encounterslot_var_pop_fields { + encounter_method_id: Float + id: Float + rarity: Float + slot: Float + version_group_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_encounterslot" +""" +input pokemon_v2_encounterslot_var_pop_order_by { + encounter_method_id: order_by + id: order_by + rarity: order_by + slot: order_by + version_group_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_encounterslot_var_samp_fields { + encounter_method_id: Float + id: Float + rarity: Float + slot: Float + version_group_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_encounterslot" +""" +input pokemon_v2_encounterslot_var_samp_order_by { + encounter_method_id: order_by + id: order_by + rarity: order_by + slot: order_by + version_group_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_encounterslot_variance_fields { + encounter_method_id: Float + id: Float + rarity: Float + slot: Float + version_group_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_encounterslot" +""" +input pokemon_v2_encounterslot_variance_order_by { + encounter_method_id: order_by + id: order_by + rarity: order_by + slot: order_by + version_group_id: order_by +} + +""" +columns and relationships of "pokemon_v2_evolutionchain" +""" +type pokemon_v2_evolutionchain { + baby_trigger_item_id: Int + id: Int! + + """An object relationship""" + pokemon_v2_item: pokemon_v2_item + + """An array relationship""" + pokemon_v2_pokemonspecies( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspecies_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspecies_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspecies_bool_exp + ): [pokemon_v2_pokemonspecies!]! + + """An aggregate relationship""" + pokemon_v2_pokemonspecies_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspecies_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspecies_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspecies_bool_exp + ): pokemon_v2_pokemonspecies_aggregate! +} + +""" +aggregated selection of "pokemon_v2_evolutionchain" +""" +type pokemon_v2_evolutionchain_aggregate { + aggregate: pokemon_v2_evolutionchain_aggregate_fields + nodes: [pokemon_v2_evolutionchain!]! +} + +input pokemon_v2_evolutionchain_aggregate_bool_exp { + count: pokemon_v2_evolutionchain_aggregate_bool_exp_count +} + +input pokemon_v2_evolutionchain_aggregate_bool_exp_count { + arguments: [pokemon_v2_evolutionchain_select_column!] + distinct: Boolean + filter: pokemon_v2_evolutionchain_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_evolutionchain" +""" +type pokemon_v2_evolutionchain_aggregate_fields { + avg: pokemon_v2_evolutionchain_avg_fields + count(columns: [pokemon_v2_evolutionchain_select_column!], distinct: Boolean): Int! + max: pokemon_v2_evolutionchain_max_fields + min: pokemon_v2_evolutionchain_min_fields + stddev: pokemon_v2_evolutionchain_stddev_fields + stddev_pop: pokemon_v2_evolutionchain_stddev_pop_fields + stddev_samp: pokemon_v2_evolutionchain_stddev_samp_fields + sum: pokemon_v2_evolutionchain_sum_fields + var_pop: pokemon_v2_evolutionchain_var_pop_fields + var_samp: pokemon_v2_evolutionchain_var_samp_fields + variance: pokemon_v2_evolutionchain_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_evolutionchain" +""" +input pokemon_v2_evolutionchain_aggregate_order_by { + avg: pokemon_v2_evolutionchain_avg_order_by + count: order_by + max: pokemon_v2_evolutionchain_max_order_by + min: pokemon_v2_evolutionchain_min_order_by + stddev: pokemon_v2_evolutionchain_stddev_order_by + stddev_pop: pokemon_v2_evolutionchain_stddev_pop_order_by + stddev_samp: pokemon_v2_evolutionchain_stddev_samp_order_by + sum: pokemon_v2_evolutionchain_sum_order_by + var_pop: pokemon_v2_evolutionchain_var_pop_order_by + var_samp: pokemon_v2_evolutionchain_var_samp_order_by + variance: pokemon_v2_evolutionchain_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_evolutionchain_avg_fields { + baby_trigger_item_id: Float + id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_evolutionchain" +""" +input pokemon_v2_evolutionchain_avg_order_by { + baby_trigger_item_id: order_by + id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_evolutionchain". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_evolutionchain_bool_exp { + _and: [pokemon_v2_evolutionchain_bool_exp!] + _not: pokemon_v2_evolutionchain_bool_exp + _or: [pokemon_v2_evolutionchain_bool_exp!] + baby_trigger_item_id: Int_comparison_exp + id: Int_comparison_exp + pokemon_v2_item: pokemon_v2_item_bool_exp + pokemon_v2_pokemonspecies: pokemon_v2_pokemonspecies_bool_exp + pokemon_v2_pokemonspecies_aggregate: pokemon_v2_pokemonspecies_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_evolutionchain_max_fields { + baby_trigger_item_id: Int + id: Int +} + +""" +order by max() on columns of table "pokemon_v2_evolutionchain" +""" +input pokemon_v2_evolutionchain_max_order_by { + baby_trigger_item_id: order_by + id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_evolutionchain_min_fields { + baby_trigger_item_id: Int + id: Int +} + +""" +order by min() on columns of table "pokemon_v2_evolutionchain" +""" +input pokemon_v2_evolutionchain_min_order_by { + baby_trigger_item_id: order_by + id: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_evolutionchain".""" +input pokemon_v2_evolutionchain_order_by { + baby_trigger_item_id: order_by + id: order_by + pokemon_v2_item: pokemon_v2_item_order_by + pokemon_v2_pokemonspecies_aggregate: pokemon_v2_pokemonspecies_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_evolutionchain" +""" +enum pokemon_v2_evolutionchain_select_column { + """column name""" + baby_trigger_item_id + + """column name""" + id +} + +"""aggregate stddev on columns""" +type pokemon_v2_evolutionchain_stddev_fields { + baby_trigger_item_id: Float + id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_evolutionchain" +""" +input pokemon_v2_evolutionchain_stddev_order_by { + baby_trigger_item_id: order_by + id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_evolutionchain_stddev_pop_fields { + baby_trigger_item_id: Float + id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_evolutionchain" +""" +input pokemon_v2_evolutionchain_stddev_pop_order_by { + baby_trigger_item_id: order_by + id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_evolutionchain_stddev_samp_fields { + baby_trigger_item_id: Float + id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_evolutionchain" +""" +input pokemon_v2_evolutionchain_stddev_samp_order_by { + baby_trigger_item_id: order_by + id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_evolutionchain" +""" +input pokemon_v2_evolutionchain_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_evolutionchain_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_evolutionchain_stream_cursor_value_input { + baby_trigger_item_id: Int + id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_evolutionchain_sum_fields { + baby_trigger_item_id: Int + id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_evolutionchain" +""" +input pokemon_v2_evolutionchain_sum_order_by { + baby_trigger_item_id: order_by + id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_evolutionchain_var_pop_fields { + baby_trigger_item_id: Float + id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_evolutionchain" +""" +input pokemon_v2_evolutionchain_var_pop_order_by { + baby_trigger_item_id: order_by + id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_evolutionchain_var_samp_fields { + baby_trigger_item_id: Float + id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_evolutionchain" +""" +input pokemon_v2_evolutionchain_var_samp_order_by { + baby_trigger_item_id: order_by + id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_evolutionchain_variance_fields { + baby_trigger_item_id: Float + id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_evolutionchain" +""" +input pokemon_v2_evolutionchain_variance_order_by { + baby_trigger_item_id: order_by + id: order_by +} + +""" +columns and relationships of "pokemon_v2_evolutiontrigger" +""" +type pokemon_v2_evolutiontrigger { + id: Int! + name: String! + + """An array relationship""" + pokemon_v2_evolutiontriggernames( + """distinct select on columns""" + distinct_on: [pokemon_v2_evolutiontriggername_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_evolutiontriggername_order_by!] + + """filter the rows returned""" + where: pokemon_v2_evolutiontriggername_bool_exp + ): [pokemon_v2_evolutiontriggername!]! + + """An aggregate relationship""" + pokemon_v2_evolutiontriggernames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_evolutiontriggername_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_evolutiontriggername_order_by!] + + """filter the rows returned""" + where: pokemon_v2_evolutiontriggername_bool_exp + ): pokemon_v2_evolutiontriggername_aggregate! + + """An array relationship""" + pokemon_v2_pokemonevolutions( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonevolution_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonevolution_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonevolution_bool_exp + ): [pokemon_v2_pokemonevolution!]! + + """An aggregate relationship""" + pokemon_v2_pokemonevolutions_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonevolution_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonevolution_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonevolution_bool_exp + ): pokemon_v2_pokemonevolution_aggregate! +} + +""" +aggregated selection of "pokemon_v2_evolutiontrigger" +""" +type pokemon_v2_evolutiontrigger_aggregate { + aggregate: pokemon_v2_evolutiontrigger_aggregate_fields + nodes: [pokemon_v2_evolutiontrigger!]! +} + +""" +aggregate fields of "pokemon_v2_evolutiontrigger" +""" +type pokemon_v2_evolutiontrigger_aggregate_fields { + avg: pokemon_v2_evolutiontrigger_avg_fields + count(columns: [pokemon_v2_evolutiontrigger_select_column!], distinct: Boolean): Int! + max: pokemon_v2_evolutiontrigger_max_fields + min: pokemon_v2_evolutiontrigger_min_fields + stddev: pokemon_v2_evolutiontrigger_stddev_fields + stddev_pop: pokemon_v2_evolutiontrigger_stddev_pop_fields + stddev_samp: pokemon_v2_evolutiontrigger_stddev_samp_fields + sum: pokemon_v2_evolutiontrigger_sum_fields + var_pop: pokemon_v2_evolutiontrigger_var_pop_fields + var_samp: pokemon_v2_evolutiontrigger_var_samp_fields + variance: pokemon_v2_evolutiontrigger_variance_fields +} + +"""aggregate avg on columns""" +type pokemon_v2_evolutiontrigger_avg_fields { + id: Float +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_evolutiontrigger". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_evolutiontrigger_bool_exp { + _and: [pokemon_v2_evolutiontrigger_bool_exp!] + _not: pokemon_v2_evolutiontrigger_bool_exp + _or: [pokemon_v2_evolutiontrigger_bool_exp!] + id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_evolutiontriggernames: pokemon_v2_evolutiontriggername_bool_exp + pokemon_v2_evolutiontriggernames_aggregate: pokemon_v2_evolutiontriggername_aggregate_bool_exp + pokemon_v2_pokemonevolutions: pokemon_v2_pokemonevolution_bool_exp + pokemon_v2_pokemonevolutions_aggregate: pokemon_v2_pokemonevolution_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_evolutiontrigger_max_fields { + id: Int + name: String +} + +"""aggregate min on columns""" +type pokemon_v2_evolutiontrigger_min_fields { + id: Int + name: String +} + +""" +Ordering options when selecting data from "pokemon_v2_evolutiontrigger". +""" +input pokemon_v2_evolutiontrigger_order_by { + id: order_by + name: order_by + pokemon_v2_evolutiontriggernames_aggregate: pokemon_v2_evolutiontriggername_aggregate_order_by + pokemon_v2_pokemonevolutions_aggregate: pokemon_v2_pokemonevolution_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_evolutiontrigger" +""" +enum pokemon_v2_evolutiontrigger_select_column { + """column name""" + id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_evolutiontrigger_stddev_fields { + id: Float +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_evolutiontrigger_stddev_pop_fields { + id: Float +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_evolutiontrigger_stddev_samp_fields { + id: Float +} + +""" +Streaming cursor of the table "pokemon_v2_evolutiontrigger" +""" +input pokemon_v2_evolutiontrigger_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_evolutiontrigger_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_evolutiontrigger_stream_cursor_value_input { + id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_evolutiontrigger_sum_fields { + id: Int +} + +"""aggregate var_pop on columns""" +type pokemon_v2_evolutiontrigger_var_pop_fields { + id: Float +} + +"""aggregate var_samp on columns""" +type pokemon_v2_evolutiontrigger_var_samp_fields { + id: Float +} + +"""aggregate variance on columns""" +type pokemon_v2_evolutiontrigger_variance_fields { + id: Float +} + +""" +columns and relationships of "pokemon_v2_evolutiontriggername" +""" +type pokemon_v2_evolutiontriggername { + evolution_trigger_id: Int + id: Int! + language_id: Int + name: String! + + """An object relationship""" + pokemon_v2_evolutiontrigger: pokemon_v2_evolutiontrigger + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language +} + +""" +aggregated selection of "pokemon_v2_evolutiontriggername" +""" +type pokemon_v2_evolutiontriggername_aggregate { + aggregate: pokemon_v2_evolutiontriggername_aggregate_fields + nodes: [pokemon_v2_evolutiontriggername!]! +} + +input pokemon_v2_evolutiontriggername_aggregate_bool_exp { + count: pokemon_v2_evolutiontriggername_aggregate_bool_exp_count +} + +input pokemon_v2_evolutiontriggername_aggregate_bool_exp_count { + arguments: [pokemon_v2_evolutiontriggername_select_column!] + distinct: Boolean + filter: pokemon_v2_evolutiontriggername_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_evolutiontriggername" +""" +type pokemon_v2_evolutiontriggername_aggregate_fields { + avg: pokemon_v2_evolutiontriggername_avg_fields + count(columns: [pokemon_v2_evolutiontriggername_select_column!], distinct: Boolean): Int! + max: pokemon_v2_evolutiontriggername_max_fields + min: pokemon_v2_evolutiontriggername_min_fields + stddev: pokemon_v2_evolutiontriggername_stddev_fields + stddev_pop: pokemon_v2_evolutiontriggername_stddev_pop_fields + stddev_samp: pokemon_v2_evolutiontriggername_stddev_samp_fields + sum: pokemon_v2_evolutiontriggername_sum_fields + var_pop: pokemon_v2_evolutiontriggername_var_pop_fields + var_samp: pokemon_v2_evolutiontriggername_var_samp_fields + variance: pokemon_v2_evolutiontriggername_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_evolutiontriggername" +""" +input pokemon_v2_evolutiontriggername_aggregate_order_by { + avg: pokemon_v2_evolutiontriggername_avg_order_by + count: order_by + max: pokemon_v2_evolutiontriggername_max_order_by + min: pokemon_v2_evolutiontriggername_min_order_by + stddev: pokemon_v2_evolutiontriggername_stddev_order_by + stddev_pop: pokemon_v2_evolutiontriggername_stddev_pop_order_by + stddev_samp: pokemon_v2_evolutiontriggername_stddev_samp_order_by + sum: pokemon_v2_evolutiontriggername_sum_order_by + var_pop: pokemon_v2_evolutiontriggername_var_pop_order_by + var_samp: pokemon_v2_evolutiontriggername_var_samp_order_by + variance: pokemon_v2_evolutiontriggername_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_evolutiontriggername_avg_fields { + evolution_trigger_id: Float + id: Float + language_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_evolutiontriggername" +""" +input pokemon_v2_evolutiontriggername_avg_order_by { + evolution_trigger_id: order_by + id: order_by + language_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_evolutiontriggername". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_evolutiontriggername_bool_exp { + _and: [pokemon_v2_evolutiontriggername_bool_exp!] + _not: pokemon_v2_evolutiontriggername_bool_exp + _or: [pokemon_v2_evolutiontriggername_bool_exp!] + evolution_trigger_id: Int_comparison_exp + id: Int_comparison_exp + language_id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_evolutiontrigger: pokemon_v2_evolutiontrigger_bool_exp + pokemon_v2_language: pokemon_v2_language_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_evolutiontriggername_max_fields { + evolution_trigger_id: Int + id: Int + language_id: Int + name: String +} + +""" +order by max() on columns of table "pokemon_v2_evolutiontriggername" +""" +input pokemon_v2_evolutiontriggername_max_order_by { + evolution_trigger_id: order_by + id: order_by + language_id: order_by + name: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_evolutiontriggername_min_fields { + evolution_trigger_id: Int + id: Int + language_id: Int + name: String +} + +""" +order by min() on columns of table "pokemon_v2_evolutiontriggername" +""" +input pokemon_v2_evolutiontriggername_min_order_by { + evolution_trigger_id: order_by + id: order_by + language_id: order_by + name: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_evolutiontriggername". +""" +input pokemon_v2_evolutiontriggername_order_by { + evolution_trigger_id: order_by + id: order_by + language_id: order_by + name: order_by + pokemon_v2_evolutiontrigger: pokemon_v2_evolutiontrigger_order_by + pokemon_v2_language: pokemon_v2_language_order_by +} + +""" +select columns of table "pokemon_v2_evolutiontriggername" +""" +enum pokemon_v2_evolutiontriggername_select_column { + """column name""" + evolution_trigger_id + + """column name""" + id + + """column name""" + language_id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_evolutiontriggername_stddev_fields { + evolution_trigger_id: Float + id: Float + language_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_evolutiontriggername" +""" +input pokemon_v2_evolutiontriggername_stddev_order_by { + evolution_trigger_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_evolutiontriggername_stddev_pop_fields { + evolution_trigger_id: Float + id: Float + language_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_evolutiontriggername" +""" +input pokemon_v2_evolutiontriggername_stddev_pop_order_by { + evolution_trigger_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_evolutiontriggername_stddev_samp_fields { + evolution_trigger_id: Float + id: Float + language_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_evolutiontriggername" +""" +input pokemon_v2_evolutiontriggername_stddev_samp_order_by { + evolution_trigger_id: order_by + id: order_by + language_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_evolutiontriggername" +""" +input pokemon_v2_evolutiontriggername_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_evolutiontriggername_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_evolutiontriggername_stream_cursor_value_input { + evolution_trigger_id: Int + id: Int + language_id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_evolutiontriggername_sum_fields { + evolution_trigger_id: Int + id: Int + language_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_evolutiontriggername" +""" +input pokemon_v2_evolutiontriggername_sum_order_by { + evolution_trigger_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_evolutiontriggername_var_pop_fields { + evolution_trigger_id: Float + id: Float + language_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_evolutiontriggername" +""" +input pokemon_v2_evolutiontriggername_var_pop_order_by { + evolution_trigger_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_evolutiontriggername_var_samp_fields { + evolution_trigger_id: Float + id: Float + language_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_evolutiontriggername" +""" +input pokemon_v2_evolutiontriggername_var_samp_order_by { + evolution_trigger_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_evolutiontriggername_variance_fields { + evolution_trigger_id: Float + id: Float + language_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_evolutiontriggername" +""" +input pokemon_v2_evolutiontriggername_variance_order_by { + evolution_trigger_id: order_by + id: order_by + language_id: order_by +} + +""" +columns and relationships of "pokemon_v2_experience" +""" +type pokemon_v2_experience { + experience: Int! + growth_rate_id: Int + id: Int! + level: Int! + + """An object relationship""" + pokemon_v2_growthrate: pokemon_v2_growthrate +} + +""" +aggregated selection of "pokemon_v2_experience" +""" +type pokemon_v2_experience_aggregate { + aggregate: pokemon_v2_experience_aggregate_fields + nodes: [pokemon_v2_experience!]! +} + +input pokemon_v2_experience_aggregate_bool_exp { + count: pokemon_v2_experience_aggregate_bool_exp_count +} + +input pokemon_v2_experience_aggregate_bool_exp_count { + arguments: [pokemon_v2_experience_select_column!] + distinct: Boolean + filter: pokemon_v2_experience_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_experience" +""" +type pokemon_v2_experience_aggregate_fields { + avg: pokemon_v2_experience_avg_fields + count(columns: [pokemon_v2_experience_select_column!], distinct: Boolean): Int! + max: pokemon_v2_experience_max_fields + min: pokemon_v2_experience_min_fields + stddev: pokemon_v2_experience_stddev_fields + stddev_pop: pokemon_v2_experience_stddev_pop_fields + stddev_samp: pokemon_v2_experience_stddev_samp_fields + sum: pokemon_v2_experience_sum_fields + var_pop: pokemon_v2_experience_var_pop_fields + var_samp: pokemon_v2_experience_var_samp_fields + variance: pokemon_v2_experience_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_experience" +""" +input pokemon_v2_experience_aggregate_order_by { + avg: pokemon_v2_experience_avg_order_by + count: order_by + max: pokemon_v2_experience_max_order_by + min: pokemon_v2_experience_min_order_by + stddev: pokemon_v2_experience_stddev_order_by + stddev_pop: pokemon_v2_experience_stddev_pop_order_by + stddev_samp: pokemon_v2_experience_stddev_samp_order_by + sum: pokemon_v2_experience_sum_order_by + var_pop: pokemon_v2_experience_var_pop_order_by + var_samp: pokemon_v2_experience_var_samp_order_by + variance: pokemon_v2_experience_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_experience_avg_fields { + experience: Float + growth_rate_id: Float + id: Float + level: Float +} + +""" +order by avg() on columns of table "pokemon_v2_experience" +""" +input pokemon_v2_experience_avg_order_by { + experience: order_by + growth_rate_id: order_by + id: order_by + level: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_experience". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_experience_bool_exp { + _and: [pokemon_v2_experience_bool_exp!] + _not: pokemon_v2_experience_bool_exp + _or: [pokemon_v2_experience_bool_exp!] + experience: Int_comparison_exp + growth_rate_id: Int_comparison_exp + id: Int_comparison_exp + level: Int_comparison_exp + pokemon_v2_growthrate: pokemon_v2_growthrate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_experience_max_fields { + experience: Int + growth_rate_id: Int + id: Int + level: Int +} + +""" +order by max() on columns of table "pokemon_v2_experience" +""" +input pokemon_v2_experience_max_order_by { + experience: order_by + growth_rate_id: order_by + id: order_by + level: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_experience_min_fields { + experience: Int + growth_rate_id: Int + id: Int + level: Int +} + +""" +order by min() on columns of table "pokemon_v2_experience" +""" +input pokemon_v2_experience_min_order_by { + experience: order_by + growth_rate_id: order_by + id: order_by + level: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_experience".""" +input pokemon_v2_experience_order_by { + experience: order_by + growth_rate_id: order_by + id: order_by + level: order_by + pokemon_v2_growthrate: pokemon_v2_growthrate_order_by +} + +""" +select columns of table "pokemon_v2_experience" +""" +enum pokemon_v2_experience_select_column { + """column name""" + experience + + """column name""" + growth_rate_id + + """column name""" + id + + """column name""" + level +} + +"""aggregate stddev on columns""" +type pokemon_v2_experience_stddev_fields { + experience: Float + growth_rate_id: Float + id: Float + level: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_experience" +""" +input pokemon_v2_experience_stddev_order_by { + experience: order_by + growth_rate_id: order_by + id: order_by + level: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_experience_stddev_pop_fields { + experience: Float + growth_rate_id: Float + id: Float + level: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_experience" +""" +input pokemon_v2_experience_stddev_pop_order_by { + experience: order_by + growth_rate_id: order_by + id: order_by + level: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_experience_stddev_samp_fields { + experience: Float + growth_rate_id: Float + id: Float + level: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_experience" +""" +input pokemon_v2_experience_stddev_samp_order_by { + experience: order_by + growth_rate_id: order_by + id: order_by + level: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_experience" +""" +input pokemon_v2_experience_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_experience_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_experience_stream_cursor_value_input { + experience: Int + growth_rate_id: Int + id: Int + level: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_experience_sum_fields { + experience: Int + growth_rate_id: Int + id: Int + level: Int +} + +""" +order by sum() on columns of table "pokemon_v2_experience" +""" +input pokemon_v2_experience_sum_order_by { + experience: order_by + growth_rate_id: order_by + id: order_by + level: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_experience_var_pop_fields { + experience: Float + growth_rate_id: Float + id: Float + level: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_experience" +""" +input pokemon_v2_experience_var_pop_order_by { + experience: order_by + growth_rate_id: order_by + id: order_by + level: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_experience_var_samp_fields { + experience: Float + growth_rate_id: Float + id: Float + level: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_experience" +""" +input pokemon_v2_experience_var_samp_order_by { + experience: order_by + growth_rate_id: order_by + id: order_by + level: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_experience_variance_fields { + experience: Float + growth_rate_id: Float + id: Float + level: Float +} + +""" +order by variance() on columns of table "pokemon_v2_experience" +""" +input pokemon_v2_experience_variance_order_by { + experience: order_by + growth_rate_id: order_by + id: order_by + level: order_by +} + +""" +columns and relationships of "pokemon_v2_gender" +""" +type pokemon_v2_gender { + id: Int! + name: String! + + """An array relationship""" + pokemon_v2_pokemonevolutions( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonevolution_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonevolution_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonevolution_bool_exp + ): [pokemon_v2_pokemonevolution!]! + + """An aggregate relationship""" + pokemon_v2_pokemonevolutions_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonevolution_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonevolution_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonevolution_bool_exp + ): pokemon_v2_pokemonevolution_aggregate! +} + +""" +aggregated selection of "pokemon_v2_gender" +""" +type pokemon_v2_gender_aggregate { + aggregate: pokemon_v2_gender_aggregate_fields + nodes: [pokemon_v2_gender!]! +} + +""" +aggregate fields of "pokemon_v2_gender" +""" +type pokemon_v2_gender_aggregate_fields { + avg: pokemon_v2_gender_avg_fields + count(columns: [pokemon_v2_gender_select_column!], distinct: Boolean): Int! + max: pokemon_v2_gender_max_fields + min: pokemon_v2_gender_min_fields + stddev: pokemon_v2_gender_stddev_fields + stddev_pop: pokemon_v2_gender_stddev_pop_fields + stddev_samp: pokemon_v2_gender_stddev_samp_fields + sum: pokemon_v2_gender_sum_fields + var_pop: pokemon_v2_gender_var_pop_fields + var_samp: pokemon_v2_gender_var_samp_fields + variance: pokemon_v2_gender_variance_fields +} + +"""aggregate avg on columns""" +type pokemon_v2_gender_avg_fields { + id: Float +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_gender". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_gender_bool_exp { + _and: [pokemon_v2_gender_bool_exp!] + _not: pokemon_v2_gender_bool_exp + _or: [pokemon_v2_gender_bool_exp!] + id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_pokemonevolutions: pokemon_v2_pokemonevolution_bool_exp + pokemon_v2_pokemonevolutions_aggregate: pokemon_v2_pokemonevolution_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_gender_max_fields { + id: Int + name: String +} + +"""aggregate min on columns""" +type pokemon_v2_gender_min_fields { + id: Int + name: String +} + +"""Ordering options when selecting data from "pokemon_v2_gender".""" +input pokemon_v2_gender_order_by { + id: order_by + name: order_by + pokemon_v2_pokemonevolutions_aggregate: pokemon_v2_pokemonevolution_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_gender" +""" +enum pokemon_v2_gender_select_column { + """column name""" + id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_gender_stddev_fields { + id: Float +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_gender_stddev_pop_fields { + id: Float +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_gender_stddev_samp_fields { + id: Float +} + +""" +Streaming cursor of the table "pokemon_v2_gender" +""" +input pokemon_v2_gender_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_gender_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_gender_stream_cursor_value_input { + id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_gender_sum_fields { + id: Int +} + +"""aggregate var_pop on columns""" +type pokemon_v2_gender_var_pop_fields { + id: Float +} + +"""aggregate var_samp on columns""" +type pokemon_v2_gender_var_samp_fields { + id: Float +} + +"""aggregate variance on columns""" +type pokemon_v2_gender_variance_fields { + id: Float +} + +""" +columns and relationships of "pokemon_v2_generation" +""" +type pokemon_v2_generation { + id: Int! + name: String! + + """An array relationship""" + pokemon_v2_abilities( + """distinct select on columns""" + distinct_on: [pokemon_v2_ability_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_ability_order_by!] + + """filter the rows returned""" + where: pokemon_v2_ability_bool_exp + ): [pokemon_v2_ability!]! + + """An aggregate relationship""" + pokemon_v2_abilities_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_ability_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_ability_order_by!] + + """filter the rows returned""" + where: pokemon_v2_ability_bool_exp + ): pokemon_v2_ability_aggregate! + + """An array relationship""" + pokemon_v2_generationnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_generationname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_generationname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_generationname_bool_exp + ): [pokemon_v2_generationname!]! + + """An aggregate relationship""" + pokemon_v2_generationnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_generationname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_generationname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_generationname_bool_exp + ): pokemon_v2_generationname_aggregate! + + """An array relationship""" + pokemon_v2_itemgameindices( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemgameindex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemgameindex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemgameindex_bool_exp + ): [pokemon_v2_itemgameindex!]! + + """An aggregate relationship""" + pokemon_v2_itemgameindices_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemgameindex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemgameindex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemgameindex_bool_exp + ): pokemon_v2_itemgameindex_aggregate! + + """An array relationship""" + pokemon_v2_locationgameindices( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationgameindex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationgameindex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationgameindex_bool_exp + ): [pokemon_v2_locationgameindex!]! + + """An aggregate relationship""" + pokemon_v2_locationgameindices_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationgameindex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationgameindex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationgameindex_bool_exp + ): pokemon_v2_locationgameindex_aggregate! + + """An array relationship""" + pokemon_v2_moves( + """distinct select on columns""" + distinct_on: [pokemon_v2_move_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_move_order_by!] + + """filter the rows returned""" + where: pokemon_v2_move_bool_exp + ): [pokemon_v2_move!]! + + """An aggregate relationship""" + pokemon_v2_moves_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_move_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_move_order_by!] + + """filter the rows returned""" + where: pokemon_v2_move_bool_exp + ): pokemon_v2_move_aggregate! + + """An array relationship""" + pokemon_v2_pokemonabilitypasts( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonabilitypast_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonabilitypast_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonabilitypast_bool_exp + ): [pokemon_v2_pokemonabilitypast!]! + + """An aggregate relationship""" + pokemon_v2_pokemonabilitypasts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonabilitypast_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonabilitypast_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonabilitypast_bool_exp + ): pokemon_v2_pokemonabilitypast_aggregate! + + """An array relationship""" + pokemon_v2_pokemonformgenerations( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonformgeneration_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonformgeneration_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonformgeneration_bool_exp + ): [pokemon_v2_pokemonformgeneration!]! + + """An aggregate relationship""" + pokemon_v2_pokemonformgenerations_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonformgeneration_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonformgeneration_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonformgeneration_bool_exp + ): pokemon_v2_pokemonformgeneration_aggregate! + + """An array relationship""" + pokemon_v2_pokemonspecies( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspecies_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspecies_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspecies_bool_exp + ): [pokemon_v2_pokemonspecies!]! + + """An aggregate relationship""" + pokemon_v2_pokemonspecies_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspecies_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspecies_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspecies_bool_exp + ): pokemon_v2_pokemonspecies_aggregate! + + """An array relationship""" + pokemon_v2_pokemontypepasts( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemontypepast_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemontypepast_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemontypepast_bool_exp + ): [pokemon_v2_pokemontypepast!]! + + """An aggregate relationship""" + pokemon_v2_pokemontypepasts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemontypepast_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemontypepast_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemontypepast_bool_exp + ): pokemon_v2_pokemontypepast_aggregate! + + """An object relationship""" + pokemon_v2_region: pokemon_v2_region + + """An array relationship""" + pokemon_v2_typeefficacypasts( + """distinct select on columns""" + distinct_on: [pokemon_v2_typeefficacypast_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_typeefficacypast_order_by!] + + """filter the rows returned""" + where: pokemon_v2_typeefficacypast_bool_exp + ): [pokemon_v2_typeefficacypast!]! + + """An aggregate relationship""" + pokemon_v2_typeefficacypasts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_typeefficacypast_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_typeefficacypast_order_by!] + + """filter the rows returned""" + where: pokemon_v2_typeefficacypast_bool_exp + ): pokemon_v2_typeefficacypast_aggregate! + + """An array relationship""" + pokemon_v2_typegameindices( + """distinct select on columns""" + distinct_on: [pokemon_v2_typegameindex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_typegameindex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_typegameindex_bool_exp + ): [pokemon_v2_typegameindex!]! + + """An aggregate relationship""" + pokemon_v2_typegameindices_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_typegameindex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_typegameindex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_typegameindex_bool_exp + ): pokemon_v2_typegameindex_aggregate! + + """An array relationship""" + pokemon_v2_types( + """distinct select on columns""" + distinct_on: [pokemon_v2_type_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_type_order_by!] + + """filter the rows returned""" + where: pokemon_v2_type_bool_exp + ): [pokemon_v2_type!]! + + """An aggregate relationship""" + pokemon_v2_types_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_type_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_type_order_by!] + + """filter the rows returned""" + where: pokemon_v2_type_bool_exp + ): pokemon_v2_type_aggregate! + + """An array relationship""" + pokemon_v2_versiongroups( + """distinct select on columns""" + distinct_on: [pokemon_v2_versiongroup_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_versiongroup_order_by!] + + """filter the rows returned""" + where: pokemon_v2_versiongroup_bool_exp + ): [pokemon_v2_versiongroup!]! + + """An aggregate relationship""" + pokemon_v2_versiongroups_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_versiongroup_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_versiongroup_order_by!] + + """filter the rows returned""" + where: pokemon_v2_versiongroup_bool_exp + ): pokemon_v2_versiongroup_aggregate! + region_id: Int +} + +""" +aggregated selection of "pokemon_v2_generation" +""" +type pokemon_v2_generation_aggregate { + aggregate: pokemon_v2_generation_aggregate_fields + nodes: [pokemon_v2_generation!]! +} + +input pokemon_v2_generation_aggregate_bool_exp { + count: pokemon_v2_generation_aggregate_bool_exp_count +} + +input pokemon_v2_generation_aggregate_bool_exp_count { + arguments: [pokemon_v2_generation_select_column!] + distinct: Boolean + filter: pokemon_v2_generation_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_generation" +""" +type pokemon_v2_generation_aggregate_fields { + avg: pokemon_v2_generation_avg_fields + count(columns: [pokemon_v2_generation_select_column!], distinct: Boolean): Int! + max: pokemon_v2_generation_max_fields + min: pokemon_v2_generation_min_fields + stddev: pokemon_v2_generation_stddev_fields + stddev_pop: pokemon_v2_generation_stddev_pop_fields + stddev_samp: pokemon_v2_generation_stddev_samp_fields + sum: pokemon_v2_generation_sum_fields + var_pop: pokemon_v2_generation_var_pop_fields + var_samp: pokemon_v2_generation_var_samp_fields + variance: pokemon_v2_generation_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_generation" +""" +input pokemon_v2_generation_aggregate_order_by { + avg: pokemon_v2_generation_avg_order_by + count: order_by + max: pokemon_v2_generation_max_order_by + min: pokemon_v2_generation_min_order_by + stddev: pokemon_v2_generation_stddev_order_by + stddev_pop: pokemon_v2_generation_stddev_pop_order_by + stddev_samp: pokemon_v2_generation_stddev_samp_order_by + sum: pokemon_v2_generation_sum_order_by + var_pop: pokemon_v2_generation_var_pop_order_by + var_samp: pokemon_v2_generation_var_samp_order_by + variance: pokemon_v2_generation_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_generation_avg_fields { + id: Float + region_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_generation" +""" +input pokemon_v2_generation_avg_order_by { + id: order_by + region_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_generation". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_generation_bool_exp { + _and: [pokemon_v2_generation_bool_exp!] + _not: pokemon_v2_generation_bool_exp + _or: [pokemon_v2_generation_bool_exp!] + id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_abilities: pokemon_v2_ability_bool_exp + pokemon_v2_abilities_aggregate: pokemon_v2_ability_aggregate_bool_exp + pokemon_v2_generationnames: pokemon_v2_generationname_bool_exp + pokemon_v2_generationnames_aggregate: pokemon_v2_generationname_aggregate_bool_exp + pokemon_v2_itemgameindices: pokemon_v2_itemgameindex_bool_exp + pokemon_v2_itemgameindices_aggregate: pokemon_v2_itemgameindex_aggregate_bool_exp + pokemon_v2_locationgameindices: pokemon_v2_locationgameindex_bool_exp + pokemon_v2_locationgameindices_aggregate: pokemon_v2_locationgameindex_aggregate_bool_exp + pokemon_v2_moves: pokemon_v2_move_bool_exp + pokemon_v2_moves_aggregate: pokemon_v2_move_aggregate_bool_exp + pokemon_v2_pokemonabilitypasts: pokemon_v2_pokemonabilitypast_bool_exp + pokemon_v2_pokemonabilitypasts_aggregate: pokemon_v2_pokemonabilitypast_aggregate_bool_exp + pokemon_v2_pokemonformgenerations: pokemon_v2_pokemonformgeneration_bool_exp + pokemon_v2_pokemonformgenerations_aggregate: pokemon_v2_pokemonformgeneration_aggregate_bool_exp + pokemon_v2_pokemonspecies: pokemon_v2_pokemonspecies_bool_exp + pokemon_v2_pokemonspecies_aggregate: pokemon_v2_pokemonspecies_aggregate_bool_exp + pokemon_v2_pokemontypepasts: pokemon_v2_pokemontypepast_bool_exp + pokemon_v2_pokemontypepasts_aggregate: pokemon_v2_pokemontypepast_aggregate_bool_exp + pokemon_v2_region: pokemon_v2_region_bool_exp + pokemon_v2_typeefficacypasts: pokemon_v2_typeefficacypast_bool_exp + pokemon_v2_typeefficacypasts_aggregate: pokemon_v2_typeefficacypast_aggregate_bool_exp + pokemon_v2_typegameindices: pokemon_v2_typegameindex_bool_exp + pokemon_v2_typegameindices_aggregate: pokemon_v2_typegameindex_aggregate_bool_exp + pokemon_v2_types: pokemon_v2_type_bool_exp + pokemon_v2_types_aggregate: pokemon_v2_type_aggregate_bool_exp + pokemon_v2_versiongroups: pokemon_v2_versiongroup_bool_exp + pokemon_v2_versiongroups_aggregate: pokemon_v2_versiongroup_aggregate_bool_exp + region_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_generation_max_fields { + id: Int + name: String + region_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_generation" +""" +input pokemon_v2_generation_max_order_by { + id: order_by + name: order_by + region_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_generation_min_fields { + id: Int + name: String + region_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_generation" +""" +input pokemon_v2_generation_min_order_by { + id: order_by + name: order_by + region_id: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_generation".""" +input pokemon_v2_generation_order_by { + id: order_by + name: order_by + pokemon_v2_abilities_aggregate: pokemon_v2_ability_aggregate_order_by + pokemon_v2_generationnames_aggregate: pokemon_v2_generationname_aggregate_order_by + pokemon_v2_itemgameindices_aggregate: pokemon_v2_itemgameindex_aggregate_order_by + pokemon_v2_locationgameindices_aggregate: pokemon_v2_locationgameindex_aggregate_order_by + pokemon_v2_moves_aggregate: pokemon_v2_move_aggregate_order_by + pokemon_v2_pokemonabilitypasts_aggregate: pokemon_v2_pokemonabilitypast_aggregate_order_by + pokemon_v2_pokemonformgenerations_aggregate: pokemon_v2_pokemonformgeneration_aggregate_order_by + pokemon_v2_pokemonspecies_aggregate: pokemon_v2_pokemonspecies_aggregate_order_by + pokemon_v2_pokemontypepasts_aggregate: pokemon_v2_pokemontypepast_aggregate_order_by + pokemon_v2_region: pokemon_v2_region_order_by + pokemon_v2_typeefficacypasts_aggregate: pokemon_v2_typeefficacypast_aggregate_order_by + pokemon_v2_typegameindices_aggregate: pokemon_v2_typegameindex_aggregate_order_by + pokemon_v2_types_aggregate: pokemon_v2_type_aggregate_order_by + pokemon_v2_versiongroups_aggregate: pokemon_v2_versiongroup_aggregate_order_by + region_id: order_by +} + +""" +select columns of table "pokemon_v2_generation" +""" +enum pokemon_v2_generation_select_column { + """column name""" + id + + """column name""" + name + + """column name""" + region_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_generation_stddev_fields { + id: Float + region_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_generation" +""" +input pokemon_v2_generation_stddev_order_by { + id: order_by + region_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_generation_stddev_pop_fields { + id: Float + region_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_generation" +""" +input pokemon_v2_generation_stddev_pop_order_by { + id: order_by + region_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_generation_stddev_samp_fields { + id: Float + region_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_generation" +""" +input pokemon_v2_generation_stddev_samp_order_by { + id: order_by + region_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_generation" +""" +input pokemon_v2_generation_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_generation_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_generation_stream_cursor_value_input { + id: Int + name: String + region_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_generation_sum_fields { + id: Int + region_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_generation" +""" +input pokemon_v2_generation_sum_order_by { + id: order_by + region_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_generation_var_pop_fields { + id: Float + region_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_generation" +""" +input pokemon_v2_generation_var_pop_order_by { + id: order_by + region_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_generation_var_samp_fields { + id: Float + region_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_generation" +""" +input pokemon_v2_generation_var_samp_order_by { + id: order_by + region_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_generation_variance_fields { + id: Float + region_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_generation" +""" +input pokemon_v2_generation_variance_order_by { + id: order_by + region_id: order_by +} + +""" +columns and relationships of "pokemon_v2_generationname" +""" +type pokemon_v2_generationname { + generation_id: Int + id: Int! + language_id: Int + name: String! + + """An object relationship""" + pokemon_v2_generation: pokemon_v2_generation + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language +} + +""" +aggregated selection of "pokemon_v2_generationname" +""" +type pokemon_v2_generationname_aggregate { + aggregate: pokemon_v2_generationname_aggregate_fields + nodes: [pokemon_v2_generationname!]! +} + +input pokemon_v2_generationname_aggregate_bool_exp { + count: pokemon_v2_generationname_aggregate_bool_exp_count +} + +input pokemon_v2_generationname_aggregate_bool_exp_count { + arguments: [pokemon_v2_generationname_select_column!] + distinct: Boolean + filter: pokemon_v2_generationname_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_generationname" +""" +type pokemon_v2_generationname_aggregate_fields { + avg: pokemon_v2_generationname_avg_fields + count(columns: [pokemon_v2_generationname_select_column!], distinct: Boolean): Int! + max: pokemon_v2_generationname_max_fields + min: pokemon_v2_generationname_min_fields + stddev: pokemon_v2_generationname_stddev_fields + stddev_pop: pokemon_v2_generationname_stddev_pop_fields + stddev_samp: pokemon_v2_generationname_stddev_samp_fields + sum: pokemon_v2_generationname_sum_fields + var_pop: pokemon_v2_generationname_var_pop_fields + var_samp: pokemon_v2_generationname_var_samp_fields + variance: pokemon_v2_generationname_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_generationname" +""" +input pokemon_v2_generationname_aggregate_order_by { + avg: pokemon_v2_generationname_avg_order_by + count: order_by + max: pokemon_v2_generationname_max_order_by + min: pokemon_v2_generationname_min_order_by + stddev: pokemon_v2_generationname_stddev_order_by + stddev_pop: pokemon_v2_generationname_stddev_pop_order_by + stddev_samp: pokemon_v2_generationname_stddev_samp_order_by + sum: pokemon_v2_generationname_sum_order_by + var_pop: pokemon_v2_generationname_var_pop_order_by + var_samp: pokemon_v2_generationname_var_samp_order_by + variance: pokemon_v2_generationname_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_generationname_avg_fields { + generation_id: Float + id: Float + language_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_generationname" +""" +input pokemon_v2_generationname_avg_order_by { + generation_id: order_by + id: order_by + language_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_generationname". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_generationname_bool_exp { + _and: [pokemon_v2_generationname_bool_exp!] + _not: pokemon_v2_generationname_bool_exp + _or: [pokemon_v2_generationname_bool_exp!] + generation_id: Int_comparison_exp + id: Int_comparison_exp + language_id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_generation: pokemon_v2_generation_bool_exp + pokemon_v2_language: pokemon_v2_language_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_generationname_max_fields { + generation_id: Int + id: Int + language_id: Int + name: String +} + +""" +order by max() on columns of table "pokemon_v2_generationname" +""" +input pokemon_v2_generationname_max_order_by { + generation_id: order_by + id: order_by + language_id: order_by + name: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_generationname_min_fields { + generation_id: Int + id: Int + language_id: Int + name: String +} + +""" +order by min() on columns of table "pokemon_v2_generationname" +""" +input pokemon_v2_generationname_min_order_by { + generation_id: order_by + id: order_by + language_id: order_by + name: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_generationname".""" +input pokemon_v2_generationname_order_by { + generation_id: order_by + id: order_by + language_id: order_by + name: order_by + pokemon_v2_generation: pokemon_v2_generation_order_by + pokemon_v2_language: pokemon_v2_language_order_by +} + +""" +select columns of table "pokemon_v2_generationname" +""" +enum pokemon_v2_generationname_select_column { + """column name""" + generation_id + + """column name""" + id + + """column name""" + language_id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_generationname_stddev_fields { + generation_id: Float + id: Float + language_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_generationname" +""" +input pokemon_v2_generationname_stddev_order_by { + generation_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_generationname_stddev_pop_fields { + generation_id: Float + id: Float + language_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_generationname" +""" +input pokemon_v2_generationname_stddev_pop_order_by { + generation_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_generationname_stddev_samp_fields { + generation_id: Float + id: Float + language_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_generationname" +""" +input pokemon_v2_generationname_stddev_samp_order_by { + generation_id: order_by + id: order_by + language_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_generationname" +""" +input pokemon_v2_generationname_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_generationname_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_generationname_stream_cursor_value_input { + generation_id: Int + id: Int + language_id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_generationname_sum_fields { + generation_id: Int + id: Int + language_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_generationname" +""" +input pokemon_v2_generationname_sum_order_by { + generation_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_generationname_var_pop_fields { + generation_id: Float + id: Float + language_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_generationname" +""" +input pokemon_v2_generationname_var_pop_order_by { + generation_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_generationname_var_samp_fields { + generation_id: Float + id: Float + language_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_generationname" +""" +input pokemon_v2_generationname_var_samp_order_by { + generation_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_generationname_variance_fields { + generation_id: Float + id: Float + language_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_generationname" +""" +input pokemon_v2_generationname_variance_order_by { + generation_id: order_by + id: order_by + language_id: order_by +} + +""" +columns and relationships of "pokemon_v2_growthrate" +""" +type pokemon_v2_growthrate { + formula: String! + id: Int! + name: String! + + """An array relationship""" + pokemon_v2_experiences( + """distinct select on columns""" + distinct_on: [pokemon_v2_experience_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_experience_order_by!] + + """filter the rows returned""" + where: pokemon_v2_experience_bool_exp + ): [pokemon_v2_experience!]! + + """An aggregate relationship""" + pokemon_v2_experiences_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_experience_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_experience_order_by!] + + """filter the rows returned""" + where: pokemon_v2_experience_bool_exp + ): pokemon_v2_experience_aggregate! + + """An array relationship""" + pokemon_v2_growthratedescriptions( + """distinct select on columns""" + distinct_on: [pokemon_v2_growthratedescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_growthratedescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_growthratedescription_bool_exp + ): [pokemon_v2_growthratedescription!]! + + """An aggregate relationship""" + pokemon_v2_growthratedescriptions_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_growthratedescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_growthratedescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_growthratedescription_bool_exp + ): pokemon_v2_growthratedescription_aggregate! + + """An array relationship""" + pokemon_v2_machines( + """distinct select on columns""" + distinct_on: [pokemon_v2_machine_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_machine_order_by!] + + """filter the rows returned""" + where: pokemon_v2_machine_bool_exp + ): [pokemon_v2_machine!]! + + """An aggregate relationship""" + pokemon_v2_machines_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_machine_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_machine_order_by!] + + """filter the rows returned""" + where: pokemon_v2_machine_bool_exp + ): pokemon_v2_machine_aggregate! + + """An array relationship""" + pokemon_v2_pokemonspecies( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspecies_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspecies_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspecies_bool_exp + ): [pokemon_v2_pokemonspecies!]! + + """An aggregate relationship""" + pokemon_v2_pokemonspecies_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspecies_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspecies_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspecies_bool_exp + ): pokemon_v2_pokemonspecies_aggregate! +} + +""" +aggregated selection of "pokemon_v2_growthrate" +""" +type pokemon_v2_growthrate_aggregate { + aggregate: pokemon_v2_growthrate_aggregate_fields + nodes: [pokemon_v2_growthrate!]! +} + +""" +aggregate fields of "pokemon_v2_growthrate" +""" +type pokemon_v2_growthrate_aggregate_fields { + avg: pokemon_v2_growthrate_avg_fields + count(columns: [pokemon_v2_growthrate_select_column!], distinct: Boolean): Int! + max: pokemon_v2_growthrate_max_fields + min: pokemon_v2_growthrate_min_fields + stddev: pokemon_v2_growthrate_stddev_fields + stddev_pop: pokemon_v2_growthrate_stddev_pop_fields + stddev_samp: pokemon_v2_growthrate_stddev_samp_fields + sum: pokemon_v2_growthrate_sum_fields + var_pop: pokemon_v2_growthrate_var_pop_fields + var_samp: pokemon_v2_growthrate_var_samp_fields + variance: pokemon_v2_growthrate_variance_fields +} + +"""aggregate avg on columns""" +type pokemon_v2_growthrate_avg_fields { + id: Float +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_growthrate". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_growthrate_bool_exp { + _and: [pokemon_v2_growthrate_bool_exp!] + _not: pokemon_v2_growthrate_bool_exp + _or: [pokemon_v2_growthrate_bool_exp!] + formula: String_comparison_exp + id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_experiences: pokemon_v2_experience_bool_exp + pokemon_v2_experiences_aggregate: pokemon_v2_experience_aggregate_bool_exp + pokemon_v2_growthratedescriptions: pokemon_v2_growthratedescription_bool_exp + pokemon_v2_growthratedescriptions_aggregate: pokemon_v2_growthratedescription_aggregate_bool_exp + pokemon_v2_machines: pokemon_v2_machine_bool_exp + pokemon_v2_machines_aggregate: pokemon_v2_machine_aggregate_bool_exp + pokemon_v2_pokemonspecies: pokemon_v2_pokemonspecies_bool_exp + pokemon_v2_pokemonspecies_aggregate: pokemon_v2_pokemonspecies_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_growthrate_max_fields { + formula: String + id: Int + name: String +} + +"""aggregate min on columns""" +type pokemon_v2_growthrate_min_fields { + formula: String + id: Int + name: String +} + +"""Ordering options when selecting data from "pokemon_v2_growthrate".""" +input pokemon_v2_growthrate_order_by { + formula: order_by + id: order_by + name: order_by + pokemon_v2_experiences_aggregate: pokemon_v2_experience_aggregate_order_by + pokemon_v2_growthratedescriptions_aggregate: pokemon_v2_growthratedescription_aggregate_order_by + pokemon_v2_machines_aggregate: pokemon_v2_machine_aggregate_order_by + pokemon_v2_pokemonspecies_aggregate: pokemon_v2_pokemonspecies_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_growthrate" +""" +enum pokemon_v2_growthrate_select_column { + """column name""" + formula + + """column name""" + id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_growthrate_stddev_fields { + id: Float +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_growthrate_stddev_pop_fields { + id: Float +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_growthrate_stddev_samp_fields { + id: Float +} + +""" +Streaming cursor of the table "pokemon_v2_growthrate" +""" +input pokemon_v2_growthrate_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_growthrate_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_growthrate_stream_cursor_value_input { + formula: String + id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_growthrate_sum_fields { + id: Int +} + +"""aggregate var_pop on columns""" +type pokemon_v2_growthrate_var_pop_fields { + id: Float +} + +"""aggregate var_samp on columns""" +type pokemon_v2_growthrate_var_samp_fields { + id: Float +} + +"""aggregate variance on columns""" +type pokemon_v2_growthrate_variance_fields { + id: Float +} + +""" +columns and relationships of "pokemon_v2_growthratedescription" +""" +type pokemon_v2_growthratedescription { + description: String! + growth_rate_id: Int + id: Int! + language_id: Int + + """An object relationship""" + pokemon_v2_growthrate: pokemon_v2_growthrate + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language +} + +""" +aggregated selection of "pokemon_v2_growthratedescription" +""" +type pokemon_v2_growthratedescription_aggregate { + aggregate: pokemon_v2_growthratedescription_aggregate_fields + nodes: [pokemon_v2_growthratedescription!]! +} + +input pokemon_v2_growthratedescription_aggregate_bool_exp { + count: pokemon_v2_growthratedescription_aggregate_bool_exp_count +} + +input pokemon_v2_growthratedescription_aggregate_bool_exp_count { + arguments: [pokemon_v2_growthratedescription_select_column!] + distinct: Boolean + filter: pokemon_v2_growthratedescription_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_growthratedescription" +""" +type pokemon_v2_growthratedescription_aggregate_fields { + avg: pokemon_v2_growthratedescription_avg_fields + count(columns: [pokemon_v2_growthratedescription_select_column!], distinct: Boolean): Int! + max: pokemon_v2_growthratedescription_max_fields + min: pokemon_v2_growthratedescription_min_fields + stddev: pokemon_v2_growthratedescription_stddev_fields + stddev_pop: pokemon_v2_growthratedescription_stddev_pop_fields + stddev_samp: pokemon_v2_growthratedescription_stddev_samp_fields + sum: pokemon_v2_growthratedescription_sum_fields + var_pop: pokemon_v2_growthratedescription_var_pop_fields + var_samp: pokemon_v2_growthratedescription_var_samp_fields + variance: pokemon_v2_growthratedescription_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_growthratedescription" +""" +input pokemon_v2_growthratedescription_aggregate_order_by { + avg: pokemon_v2_growthratedescription_avg_order_by + count: order_by + max: pokemon_v2_growthratedescription_max_order_by + min: pokemon_v2_growthratedescription_min_order_by + stddev: pokemon_v2_growthratedescription_stddev_order_by + stddev_pop: pokemon_v2_growthratedescription_stddev_pop_order_by + stddev_samp: pokemon_v2_growthratedescription_stddev_samp_order_by + sum: pokemon_v2_growthratedescription_sum_order_by + var_pop: pokemon_v2_growthratedescription_var_pop_order_by + var_samp: pokemon_v2_growthratedescription_var_samp_order_by + variance: pokemon_v2_growthratedescription_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_growthratedescription_avg_fields { + growth_rate_id: Float + id: Float + language_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_growthratedescription" +""" +input pokemon_v2_growthratedescription_avg_order_by { + growth_rate_id: order_by + id: order_by + language_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_growthratedescription". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_growthratedescription_bool_exp { + _and: [pokemon_v2_growthratedescription_bool_exp!] + _not: pokemon_v2_growthratedescription_bool_exp + _or: [pokemon_v2_growthratedescription_bool_exp!] + description: String_comparison_exp + growth_rate_id: Int_comparison_exp + id: Int_comparison_exp + language_id: Int_comparison_exp + pokemon_v2_growthrate: pokemon_v2_growthrate_bool_exp + pokemon_v2_language: pokemon_v2_language_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_growthratedescription_max_fields { + description: String + growth_rate_id: Int + id: Int + language_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_growthratedescription" +""" +input pokemon_v2_growthratedescription_max_order_by { + description: order_by + growth_rate_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_growthratedescription_min_fields { + description: String + growth_rate_id: Int + id: Int + language_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_growthratedescription" +""" +input pokemon_v2_growthratedescription_min_order_by { + description: order_by + growth_rate_id: order_by + id: order_by + language_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_growthratedescription". +""" +input pokemon_v2_growthratedescription_order_by { + description: order_by + growth_rate_id: order_by + id: order_by + language_id: order_by + pokemon_v2_growthrate: pokemon_v2_growthrate_order_by + pokemon_v2_language: pokemon_v2_language_order_by +} + +""" +select columns of table "pokemon_v2_growthratedescription" +""" +enum pokemon_v2_growthratedescription_select_column { + """column name""" + description + + """column name""" + growth_rate_id + + """column name""" + id + + """column name""" + language_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_growthratedescription_stddev_fields { + growth_rate_id: Float + id: Float + language_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_growthratedescription" +""" +input pokemon_v2_growthratedescription_stddev_order_by { + growth_rate_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_growthratedescription_stddev_pop_fields { + growth_rate_id: Float + id: Float + language_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_growthratedescription" +""" +input pokemon_v2_growthratedescription_stddev_pop_order_by { + growth_rate_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_growthratedescription_stddev_samp_fields { + growth_rate_id: Float + id: Float + language_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_growthratedescription" +""" +input pokemon_v2_growthratedescription_stddev_samp_order_by { + growth_rate_id: order_by + id: order_by + language_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_growthratedescription" +""" +input pokemon_v2_growthratedescription_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_growthratedescription_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_growthratedescription_stream_cursor_value_input { + description: String + growth_rate_id: Int + id: Int + language_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_growthratedescription_sum_fields { + growth_rate_id: Int + id: Int + language_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_growthratedescription" +""" +input pokemon_v2_growthratedescription_sum_order_by { + growth_rate_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_growthratedescription_var_pop_fields { + growth_rate_id: Float + id: Float + language_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_growthratedescription" +""" +input pokemon_v2_growthratedescription_var_pop_order_by { + growth_rate_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_growthratedescription_var_samp_fields { + growth_rate_id: Float + id: Float + language_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_growthratedescription" +""" +input pokemon_v2_growthratedescription_var_samp_order_by { + growth_rate_id: order_by + id: order_by + language_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_growthratedescription_variance_fields { + growth_rate_id: Float + id: Float + language_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_growthratedescription" +""" +input pokemon_v2_growthratedescription_variance_order_by { + growth_rate_id: order_by + id: order_by + language_id: order_by +} + +""" +columns and relationships of "pokemon_v2_item" +""" +type pokemon_v2_item { + cost: Int + fling_power: Int + id: Int! + item_category_id: Int + item_fling_effect_id: Int + name: String! + + """An array relationship""" + pokemonV2PokemonevolutionsByHeldItemId( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonevolution_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonevolution_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonevolution_bool_exp + ): [pokemon_v2_pokemonevolution!]! + + """An aggregate relationship""" + pokemonV2PokemonevolutionsByHeldItemId_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonevolution_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonevolution_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonevolution_bool_exp + ): pokemon_v2_pokemonevolution_aggregate! + + """An array relationship""" + pokemon_v2_berries( + """distinct select on columns""" + distinct_on: [pokemon_v2_berry_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berry_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berry_bool_exp + ): [pokemon_v2_berry!]! + + """An aggregate relationship""" + pokemon_v2_berries_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_berry_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berry_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berry_bool_exp + ): pokemon_v2_berry_aggregate! + + """An array relationship""" + pokemon_v2_evolutionchains( + """distinct select on columns""" + distinct_on: [pokemon_v2_evolutionchain_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_evolutionchain_order_by!] + + """filter the rows returned""" + where: pokemon_v2_evolutionchain_bool_exp + ): [pokemon_v2_evolutionchain!]! + + """An aggregate relationship""" + pokemon_v2_evolutionchains_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_evolutionchain_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_evolutionchain_order_by!] + + """filter the rows returned""" + where: pokemon_v2_evolutionchain_bool_exp + ): pokemon_v2_evolutionchain_aggregate! + + """An array relationship""" + pokemon_v2_itemattributemaps( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemattributemap_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemattributemap_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemattributemap_bool_exp + ): [pokemon_v2_itemattributemap!]! + + """An aggregate relationship""" + pokemon_v2_itemattributemaps_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemattributemap_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemattributemap_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemattributemap_bool_exp + ): pokemon_v2_itemattributemap_aggregate! + + """An object relationship""" + pokemon_v2_itemcategory: pokemon_v2_itemcategory + + """An array relationship""" + pokemon_v2_itemeffecttexts( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemeffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemeffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemeffecttext_bool_exp + ): [pokemon_v2_itemeffecttext!]! + + """An aggregate relationship""" + pokemon_v2_itemeffecttexts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemeffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemeffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemeffecttext_bool_exp + ): pokemon_v2_itemeffecttext_aggregate! + + """An array relationship""" + pokemon_v2_itemflavortexts( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemflavortext_bool_exp + ): [pokemon_v2_itemflavortext!]! + + """An aggregate relationship""" + pokemon_v2_itemflavortexts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemflavortext_bool_exp + ): pokemon_v2_itemflavortext_aggregate! + + """An object relationship""" + pokemon_v2_itemflingeffect: pokemon_v2_itemflingeffect + + """An array relationship""" + pokemon_v2_itemgameindices( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemgameindex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemgameindex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemgameindex_bool_exp + ): [pokemon_v2_itemgameindex!]! + + """An aggregate relationship""" + pokemon_v2_itemgameindices_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemgameindex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemgameindex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemgameindex_bool_exp + ): pokemon_v2_itemgameindex_aggregate! + + """An array relationship""" + pokemon_v2_itemnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemname_bool_exp + ): [pokemon_v2_itemname!]! + + """An aggregate relationship""" + pokemon_v2_itemnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemname_bool_exp + ): pokemon_v2_itemname_aggregate! + + """An array relationship""" + pokemon_v2_itemsprites( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemsprites_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemsprites_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemsprites_bool_exp + ): [pokemon_v2_itemsprites!]! + + """An aggregate relationship""" + pokemon_v2_itemsprites_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemsprites_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemsprites_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemsprites_bool_exp + ): pokemon_v2_itemsprites_aggregate! + + """An array relationship""" + pokemon_v2_machines( + """distinct select on columns""" + distinct_on: [pokemon_v2_machine_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_machine_order_by!] + + """filter the rows returned""" + where: pokemon_v2_machine_bool_exp + ): [pokemon_v2_machine!]! + + """An aggregate relationship""" + pokemon_v2_machines_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_machine_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_machine_order_by!] + + """filter the rows returned""" + where: pokemon_v2_machine_bool_exp + ): pokemon_v2_machine_aggregate! + + """An array relationship""" + pokemon_v2_pokemonevolutions( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonevolution_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonevolution_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonevolution_bool_exp + ): [pokemon_v2_pokemonevolution!]! + + """An aggregate relationship""" + pokemon_v2_pokemonevolutions_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonevolution_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonevolution_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonevolution_bool_exp + ): pokemon_v2_pokemonevolution_aggregate! + + """An array relationship""" + pokemon_v2_pokemonitems( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonitem_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonitem_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonitem_bool_exp + ): [pokemon_v2_pokemonitem!]! + + """An aggregate relationship""" + pokemon_v2_pokemonitems_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonitem_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonitem_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonitem_bool_exp + ): pokemon_v2_pokemonitem_aggregate! +} + +""" +aggregated selection of "pokemon_v2_item" +""" +type pokemon_v2_item_aggregate { + aggregate: pokemon_v2_item_aggregate_fields + nodes: [pokemon_v2_item!]! +} + +input pokemon_v2_item_aggregate_bool_exp { + count: pokemon_v2_item_aggregate_bool_exp_count +} + +input pokemon_v2_item_aggregate_bool_exp_count { + arguments: [pokemon_v2_item_select_column!] + distinct: Boolean + filter: pokemon_v2_item_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_item" +""" +type pokemon_v2_item_aggregate_fields { + avg: pokemon_v2_item_avg_fields + count(columns: [pokemon_v2_item_select_column!], distinct: Boolean): Int! + max: pokemon_v2_item_max_fields + min: pokemon_v2_item_min_fields + stddev: pokemon_v2_item_stddev_fields + stddev_pop: pokemon_v2_item_stddev_pop_fields + stddev_samp: pokemon_v2_item_stddev_samp_fields + sum: pokemon_v2_item_sum_fields + var_pop: pokemon_v2_item_var_pop_fields + var_samp: pokemon_v2_item_var_samp_fields + variance: pokemon_v2_item_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_item" +""" +input pokemon_v2_item_aggregate_order_by { + avg: pokemon_v2_item_avg_order_by + count: order_by + max: pokemon_v2_item_max_order_by + min: pokemon_v2_item_min_order_by + stddev: pokemon_v2_item_stddev_order_by + stddev_pop: pokemon_v2_item_stddev_pop_order_by + stddev_samp: pokemon_v2_item_stddev_samp_order_by + sum: pokemon_v2_item_sum_order_by + var_pop: pokemon_v2_item_var_pop_order_by + var_samp: pokemon_v2_item_var_samp_order_by + variance: pokemon_v2_item_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_item_avg_fields { + cost: Float + fling_power: Float + id: Float + item_category_id: Float + item_fling_effect_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_item" +""" +input pokemon_v2_item_avg_order_by { + cost: order_by + fling_power: order_by + id: order_by + item_category_id: order_by + item_fling_effect_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_item". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_item_bool_exp { + _and: [pokemon_v2_item_bool_exp!] + _not: pokemon_v2_item_bool_exp + _or: [pokemon_v2_item_bool_exp!] + cost: Int_comparison_exp + fling_power: Int_comparison_exp + id: Int_comparison_exp + item_category_id: Int_comparison_exp + item_fling_effect_id: Int_comparison_exp + name: String_comparison_exp + pokemonV2PokemonevolutionsByHeldItemId: pokemon_v2_pokemonevolution_bool_exp + pokemonV2PokemonevolutionsByHeldItemId_aggregate: pokemon_v2_pokemonevolution_aggregate_bool_exp + pokemon_v2_berries: pokemon_v2_berry_bool_exp + pokemon_v2_berries_aggregate: pokemon_v2_berry_aggregate_bool_exp + pokemon_v2_evolutionchains: pokemon_v2_evolutionchain_bool_exp + pokemon_v2_evolutionchains_aggregate: pokemon_v2_evolutionchain_aggregate_bool_exp + pokemon_v2_itemattributemaps: pokemon_v2_itemattributemap_bool_exp + pokemon_v2_itemattributemaps_aggregate: pokemon_v2_itemattributemap_aggregate_bool_exp + pokemon_v2_itemcategory: pokemon_v2_itemcategory_bool_exp + pokemon_v2_itemeffecttexts: pokemon_v2_itemeffecttext_bool_exp + pokemon_v2_itemeffecttexts_aggregate: pokemon_v2_itemeffecttext_aggregate_bool_exp + pokemon_v2_itemflavortexts: pokemon_v2_itemflavortext_bool_exp + pokemon_v2_itemflavortexts_aggregate: pokemon_v2_itemflavortext_aggregate_bool_exp + pokemon_v2_itemflingeffect: pokemon_v2_itemflingeffect_bool_exp + pokemon_v2_itemgameindices: pokemon_v2_itemgameindex_bool_exp + pokemon_v2_itemgameindices_aggregate: pokemon_v2_itemgameindex_aggregate_bool_exp + pokemon_v2_itemnames: pokemon_v2_itemname_bool_exp + pokemon_v2_itemnames_aggregate: pokemon_v2_itemname_aggregate_bool_exp + pokemon_v2_itemsprites: pokemon_v2_itemsprites_bool_exp + pokemon_v2_itemsprites_aggregate: pokemon_v2_itemsprites_aggregate_bool_exp + pokemon_v2_machines: pokemon_v2_machine_bool_exp + pokemon_v2_machines_aggregate: pokemon_v2_machine_aggregate_bool_exp + pokemon_v2_pokemonevolutions: pokemon_v2_pokemonevolution_bool_exp + pokemon_v2_pokemonevolutions_aggregate: pokemon_v2_pokemonevolution_aggregate_bool_exp + pokemon_v2_pokemonitems: pokemon_v2_pokemonitem_bool_exp + pokemon_v2_pokemonitems_aggregate: pokemon_v2_pokemonitem_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_item_max_fields { + cost: Int + fling_power: Int + id: Int + item_category_id: Int + item_fling_effect_id: Int + name: String +} + +""" +order by max() on columns of table "pokemon_v2_item" +""" +input pokemon_v2_item_max_order_by { + cost: order_by + fling_power: order_by + id: order_by + item_category_id: order_by + item_fling_effect_id: order_by + name: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_item_min_fields { + cost: Int + fling_power: Int + id: Int + item_category_id: Int + item_fling_effect_id: Int + name: String +} + +""" +order by min() on columns of table "pokemon_v2_item" +""" +input pokemon_v2_item_min_order_by { + cost: order_by + fling_power: order_by + id: order_by + item_category_id: order_by + item_fling_effect_id: order_by + name: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_item".""" +input pokemon_v2_item_order_by { + cost: order_by + fling_power: order_by + id: order_by + item_category_id: order_by + item_fling_effect_id: order_by + name: order_by + pokemonV2PokemonevolutionsByHeldItemId_aggregate: pokemon_v2_pokemonevolution_aggregate_order_by + pokemon_v2_berries_aggregate: pokemon_v2_berry_aggregate_order_by + pokemon_v2_evolutionchains_aggregate: pokemon_v2_evolutionchain_aggregate_order_by + pokemon_v2_itemattributemaps_aggregate: pokemon_v2_itemattributemap_aggregate_order_by + pokemon_v2_itemcategory: pokemon_v2_itemcategory_order_by + pokemon_v2_itemeffecttexts_aggregate: pokemon_v2_itemeffecttext_aggregate_order_by + pokemon_v2_itemflavortexts_aggregate: pokemon_v2_itemflavortext_aggregate_order_by + pokemon_v2_itemflingeffect: pokemon_v2_itemflingeffect_order_by + pokemon_v2_itemgameindices_aggregate: pokemon_v2_itemgameindex_aggregate_order_by + pokemon_v2_itemnames_aggregate: pokemon_v2_itemname_aggregate_order_by + pokemon_v2_itemsprites_aggregate: pokemon_v2_itemsprites_aggregate_order_by + pokemon_v2_machines_aggregate: pokemon_v2_machine_aggregate_order_by + pokemon_v2_pokemonevolutions_aggregate: pokemon_v2_pokemonevolution_aggregate_order_by + pokemon_v2_pokemonitems_aggregate: pokemon_v2_pokemonitem_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_item" +""" +enum pokemon_v2_item_select_column { + """column name""" + cost + + """column name""" + fling_power + + """column name""" + id + + """column name""" + item_category_id + + """column name""" + item_fling_effect_id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_item_stddev_fields { + cost: Float + fling_power: Float + id: Float + item_category_id: Float + item_fling_effect_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_item" +""" +input pokemon_v2_item_stddev_order_by { + cost: order_by + fling_power: order_by + id: order_by + item_category_id: order_by + item_fling_effect_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_item_stddev_pop_fields { + cost: Float + fling_power: Float + id: Float + item_category_id: Float + item_fling_effect_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_item" +""" +input pokemon_v2_item_stddev_pop_order_by { + cost: order_by + fling_power: order_by + id: order_by + item_category_id: order_by + item_fling_effect_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_item_stddev_samp_fields { + cost: Float + fling_power: Float + id: Float + item_category_id: Float + item_fling_effect_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_item" +""" +input pokemon_v2_item_stddev_samp_order_by { + cost: order_by + fling_power: order_by + id: order_by + item_category_id: order_by + item_fling_effect_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_item" +""" +input pokemon_v2_item_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_item_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_item_stream_cursor_value_input { + cost: Int + fling_power: Int + id: Int + item_category_id: Int + item_fling_effect_id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_item_sum_fields { + cost: Int + fling_power: Int + id: Int + item_category_id: Int + item_fling_effect_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_item" +""" +input pokemon_v2_item_sum_order_by { + cost: order_by + fling_power: order_by + id: order_by + item_category_id: order_by + item_fling_effect_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_item_var_pop_fields { + cost: Float + fling_power: Float + id: Float + item_category_id: Float + item_fling_effect_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_item" +""" +input pokemon_v2_item_var_pop_order_by { + cost: order_by + fling_power: order_by + id: order_by + item_category_id: order_by + item_fling_effect_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_item_var_samp_fields { + cost: Float + fling_power: Float + id: Float + item_category_id: Float + item_fling_effect_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_item" +""" +input pokemon_v2_item_var_samp_order_by { + cost: order_by + fling_power: order_by + id: order_by + item_category_id: order_by + item_fling_effect_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_item_variance_fields { + cost: Float + fling_power: Float + id: Float + item_category_id: Float + item_fling_effect_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_item" +""" +input pokemon_v2_item_variance_order_by { + cost: order_by + fling_power: order_by + id: order_by + item_category_id: order_by + item_fling_effect_id: order_by +} + +""" +columns and relationships of "pokemon_v2_itemattribute" +""" +type pokemon_v2_itemattribute { + id: Int! + name: String! + + """An array relationship""" + pokemon_v2_itemattributedescriptions( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemattributedescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemattributedescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemattributedescription_bool_exp + ): [pokemon_v2_itemattributedescription!]! + + """An aggregate relationship""" + pokemon_v2_itemattributedescriptions_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemattributedescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemattributedescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemattributedescription_bool_exp + ): pokemon_v2_itemattributedescription_aggregate! + + """An array relationship""" + pokemon_v2_itemattributemaps( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemattributemap_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemattributemap_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemattributemap_bool_exp + ): [pokemon_v2_itemattributemap!]! + + """An aggregate relationship""" + pokemon_v2_itemattributemaps_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemattributemap_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemattributemap_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemattributemap_bool_exp + ): pokemon_v2_itemattributemap_aggregate! + + """An array relationship""" + pokemon_v2_itemattributenames( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemattributename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemattributename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemattributename_bool_exp + ): [pokemon_v2_itemattributename!]! + + """An aggregate relationship""" + pokemon_v2_itemattributenames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemattributename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemattributename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemattributename_bool_exp + ): pokemon_v2_itemattributename_aggregate! +} + +""" +aggregated selection of "pokemon_v2_itemattribute" +""" +type pokemon_v2_itemattribute_aggregate { + aggregate: pokemon_v2_itemattribute_aggregate_fields + nodes: [pokemon_v2_itemattribute!]! +} + +""" +aggregate fields of "pokemon_v2_itemattribute" +""" +type pokemon_v2_itemattribute_aggregate_fields { + avg: pokemon_v2_itemattribute_avg_fields + count(columns: [pokemon_v2_itemattribute_select_column!], distinct: Boolean): Int! + max: pokemon_v2_itemattribute_max_fields + min: pokemon_v2_itemattribute_min_fields + stddev: pokemon_v2_itemattribute_stddev_fields + stddev_pop: pokemon_v2_itemattribute_stddev_pop_fields + stddev_samp: pokemon_v2_itemattribute_stddev_samp_fields + sum: pokemon_v2_itemattribute_sum_fields + var_pop: pokemon_v2_itemattribute_var_pop_fields + var_samp: pokemon_v2_itemattribute_var_samp_fields + variance: pokemon_v2_itemattribute_variance_fields +} + +"""aggregate avg on columns""" +type pokemon_v2_itemattribute_avg_fields { + id: Float +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_itemattribute". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_itemattribute_bool_exp { + _and: [pokemon_v2_itemattribute_bool_exp!] + _not: pokemon_v2_itemattribute_bool_exp + _or: [pokemon_v2_itemattribute_bool_exp!] + id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_itemattributedescriptions: pokemon_v2_itemattributedescription_bool_exp + pokemon_v2_itemattributedescriptions_aggregate: pokemon_v2_itemattributedescription_aggregate_bool_exp + pokemon_v2_itemattributemaps: pokemon_v2_itemattributemap_bool_exp + pokemon_v2_itemattributemaps_aggregate: pokemon_v2_itemattributemap_aggregate_bool_exp + pokemon_v2_itemattributenames: pokemon_v2_itemattributename_bool_exp + pokemon_v2_itemattributenames_aggregate: pokemon_v2_itemattributename_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_itemattribute_max_fields { + id: Int + name: String +} + +"""aggregate min on columns""" +type pokemon_v2_itemattribute_min_fields { + id: Int + name: String +} + +"""Ordering options when selecting data from "pokemon_v2_itemattribute".""" +input pokemon_v2_itemattribute_order_by { + id: order_by + name: order_by + pokemon_v2_itemattributedescriptions_aggregate: pokemon_v2_itemattributedescription_aggregate_order_by + pokemon_v2_itemattributemaps_aggregate: pokemon_v2_itemattributemap_aggregate_order_by + pokemon_v2_itemattributenames_aggregate: pokemon_v2_itemattributename_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_itemattribute" +""" +enum pokemon_v2_itemattribute_select_column { + """column name""" + id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_itemattribute_stddev_fields { + id: Float +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_itemattribute_stddev_pop_fields { + id: Float +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_itemattribute_stddev_samp_fields { + id: Float +} + +""" +Streaming cursor of the table "pokemon_v2_itemattribute" +""" +input pokemon_v2_itemattribute_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_itemattribute_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_itemattribute_stream_cursor_value_input { + id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_itemattribute_sum_fields { + id: Int +} + +"""aggregate var_pop on columns""" +type pokemon_v2_itemattribute_var_pop_fields { + id: Float +} + +"""aggregate var_samp on columns""" +type pokemon_v2_itemattribute_var_samp_fields { + id: Float +} + +"""aggregate variance on columns""" +type pokemon_v2_itemattribute_variance_fields { + id: Float +} + +""" +columns and relationships of "pokemon_v2_itemattributedescription" +""" +type pokemon_v2_itemattributedescription { + description: String! + id: Int! + item_attribute_id: Int + language_id: Int + + """An object relationship""" + pokemon_v2_itemattribute: pokemon_v2_itemattribute + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language +} + +""" +aggregated selection of "pokemon_v2_itemattributedescription" +""" +type pokemon_v2_itemattributedescription_aggregate { + aggregate: pokemon_v2_itemattributedescription_aggregate_fields + nodes: [pokemon_v2_itemattributedescription!]! +} + +input pokemon_v2_itemattributedescription_aggregate_bool_exp { + count: pokemon_v2_itemattributedescription_aggregate_bool_exp_count +} + +input pokemon_v2_itemattributedescription_aggregate_bool_exp_count { + arguments: [pokemon_v2_itemattributedescription_select_column!] + distinct: Boolean + filter: pokemon_v2_itemattributedescription_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_itemattributedescription" +""" +type pokemon_v2_itemattributedescription_aggregate_fields { + avg: pokemon_v2_itemattributedescription_avg_fields + count(columns: [pokemon_v2_itemattributedescription_select_column!], distinct: Boolean): Int! + max: pokemon_v2_itemattributedescription_max_fields + min: pokemon_v2_itemattributedescription_min_fields + stddev: pokemon_v2_itemattributedescription_stddev_fields + stddev_pop: pokemon_v2_itemattributedescription_stddev_pop_fields + stddev_samp: pokemon_v2_itemattributedescription_stddev_samp_fields + sum: pokemon_v2_itemattributedescription_sum_fields + var_pop: pokemon_v2_itemattributedescription_var_pop_fields + var_samp: pokemon_v2_itemattributedescription_var_samp_fields + variance: pokemon_v2_itemattributedescription_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_itemattributedescription" +""" +input pokemon_v2_itemattributedescription_aggregate_order_by { + avg: pokemon_v2_itemattributedescription_avg_order_by + count: order_by + max: pokemon_v2_itemattributedescription_max_order_by + min: pokemon_v2_itemattributedescription_min_order_by + stddev: pokemon_v2_itemattributedescription_stddev_order_by + stddev_pop: pokemon_v2_itemattributedescription_stddev_pop_order_by + stddev_samp: pokemon_v2_itemattributedescription_stddev_samp_order_by + sum: pokemon_v2_itemattributedescription_sum_order_by + var_pop: pokemon_v2_itemattributedescription_var_pop_order_by + var_samp: pokemon_v2_itemattributedescription_var_samp_order_by + variance: pokemon_v2_itemattributedescription_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_itemattributedescription_avg_fields { + id: Float + item_attribute_id: Float + language_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_itemattributedescription" +""" +input pokemon_v2_itemattributedescription_avg_order_by { + id: order_by + item_attribute_id: order_by + language_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_itemattributedescription". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_itemattributedescription_bool_exp { + _and: [pokemon_v2_itemattributedescription_bool_exp!] + _not: pokemon_v2_itemattributedescription_bool_exp + _or: [pokemon_v2_itemattributedescription_bool_exp!] + description: String_comparison_exp + id: Int_comparison_exp + item_attribute_id: Int_comparison_exp + language_id: Int_comparison_exp + pokemon_v2_itemattribute: pokemon_v2_itemattribute_bool_exp + pokemon_v2_language: pokemon_v2_language_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_itemattributedescription_max_fields { + description: String + id: Int + item_attribute_id: Int + language_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_itemattributedescription" +""" +input pokemon_v2_itemattributedescription_max_order_by { + description: order_by + id: order_by + item_attribute_id: order_by + language_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_itemattributedescription_min_fields { + description: String + id: Int + item_attribute_id: Int + language_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_itemattributedescription" +""" +input pokemon_v2_itemattributedescription_min_order_by { + description: order_by + id: order_by + item_attribute_id: order_by + language_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_itemattributedescription". +""" +input pokemon_v2_itemattributedescription_order_by { + description: order_by + id: order_by + item_attribute_id: order_by + language_id: order_by + pokemon_v2_itemattribute: pokemon_v2_itemattribute_order_by + pokemon_v2_language: pokemon_v2_language_order_by +} + +""" +select columns of table "pokemon_v2_itemattributedescription" +""" +enum pokemon_v2_itemattributedescription_select_column { + """column name""" + description + + """column name""" + id + + """column name""" + item_attribute_id + + """column name""" + language_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_itemattributedescription_stddev_fields { + id: Float + item_attribute_id: Float + language_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_itemattributedescription" +""" +input pokemon_v2_itemattributedescription_stddev_order_by { + id: order_by + item_attribute_id: order_by + language_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_itemattributedescription_stddev_pop_fields { + id: Float + item_attribute_id: Float + language_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_itemattributedescription" +""" +input pokemon_v2_itemattributedescription_stddev_pop_order_by { + id: order_by + item_attribute_id: order_by + language_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_itemattributedescription_stddev_samp_fields { + id: Float + item_attribute_id: Float + language_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_itemattributedescription" +""" +input pokemon_v2_itemattributedescription_stddev_samp_order_by { + id: order_by + item_attribute_id: order_by + language_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_itemattributedescription" +""" +input pokemon_v2_itemattributedescription_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_itemattributedescription_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_itemattributedescription_stream_cursor_value_input { + description: String + id: Int + item_attribute_id: Int + language_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_itemattributedescription_sum_fields { + id: Int + item_attribute_id: Int + language_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_itemattributedescription" +""" +input pokemon_v2_itemattributedescription_sum_order_by { + id: order_by + item_attribute_id: order_by + language_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_itemattributedescription_var_pop_fields { + id: Float + item_attribute_id: Float + language_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_itemattributedescription" +""" +input pokemon_v2_itemattributedescription_var_pop_order_by { + id: order_by + item_attribute_id: order_by + language_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_itemattributedescription_var_samp_fields { + id: Float + item_attribute_id: Float + language_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_itemattributedescription" +""" +input pokemon_v2_itemattributedescription_var_samp_order_by { + id: order_by + item_attribute_id: order_by + language_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_itemattributedescription_variance_fields { + id: Float + item_attribute_id: Float + language_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_itemattributedescription" +""" +input pokemon_v2_itemattributedescription_variance_order_by { + id: order_by + item_attribute_id: order_by + language_id: order_by +} + +""" +columns and relationships of "pokemon_v2_itemattributemap" +""" +type pokemon_v2_itemattributemap { + id: Int! + item_attribute_id: Int + item_id: Int + + """An object relationship""" + pokemon_v2_item: pokemon_v2_item + + """An object relationship""" + pokemon_v2_itemattribute: pokemon_v2_itemattribute +} + +""" +aggregated selection of "pokemon_v2_itemattributemap" +""" +type pokemon_v2_itemattributemap_aggregate { + aggregate: pokemon_v2_itemattributemap_aggregate_fields + nodes: [pokemon_v2_itemattributemap!]! +} + +input pokemon_v2_itemattributemap_aggregate_bool_exp { + count: pokemon_v2_itemattributemap_aggregate_bool_exp_count +} + +input pokemon_v2_itemattributemap_aggregate_bool_exp_count { + arguments: [pokemon_v2_itemattributemap_select_column!] + distinct: Boolean + filter: pokemon_v2_itemattributemap_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_itemattributemap" +""" +type pokemon_v2_itemattributemap_aggregate_fields { + avg: pokemon_v2_itemattributemap_avg_fields + count(columns: [pokemon_v2_itemattributemap_select_column!], distinct: Boolean): Int! + max: pokemon_v2_itemattributemap_max_fields + min: pokemon_v2_itemattributemap_min_fields + stddev: pokemon_v2_itemattributemap_stddev_fields + stddev_pop: pokemon_v2_itemattributemap_stddev_pop_fields + stddev_samp: pokemon_v2_itemattributemap_stddev_samp_fields + sum: pokemon_v2_itemattributemap_sum_fields + var_pop: pokemon_v2_itemattributemap_var_pop_fields + var_samp: pokemon_v2_itemattributemap_var_samp_fields + variance: pokemon_v2_itemattributemap_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_itemattributemap" +""" +input pokemon_v2_itemattributemap_aggregate_order_by { + avg: pokemon_v2_itemattributemap_avg_order_by + count: order_by + max: pokemon_v2_itemattributemap_max_order_by + min: pokemon_v2_itemattributemap_min_order_by + stddev: pokemon_v2_itemattributemap_stddev_order_by + stddev_pop: pokemon_v2_itemattributemap_stddev_pop_order_by + stddev_samp: pokemon_v2_itemattributemap_stddev_samp_order_by + sum: pokemon_v2_itemattributemap_sum_order_by + var_pop: pokemon_v2_itemattributemap_var_pop_order_by + var_samp: pokemon_v2_itemattributemap_var_samp_order_by + variance: pokemon_v2_itemattributemap_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_itemattributemap_avg_fields { + id: Float + item_attribute_id: Float + item_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_itemattributemap" +""" +input pokemon_v2_itemattributemap_avg_order_by { + id: order_by + item_attribute_id: order_by + item_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_itemattributemap". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_itemattributemap_bool_exp { + _and: [pokemon_v2_itemattributemap_bool_exp!] + _not: pokemon_v2_itemattributemap_bool_exp + _or: [pokemon_v2_itemattributemap_bool_exp!] + id: Int_comparison_exp + item_attribute_id: Int_comparison_exp + item_id: Int_comparison_exp + pokemon_v2_item: pokemon_v2_item_bool_exp + pokemon_v2_itemattribute: pokemon_v2_itemattribute_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_itemattributemap_max_fields { + id: Int + item_attribute_id: Int + item_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_itemattributemap" +""" +input pokemon_v2_itemattributemap_max_order_by { + id: order_by + item_attribute_id: order_by + item_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_itemattributemap_min_fields { + id: Int + item_attribute_id: Int + item_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_itemattributemap" +""" +input pokemon_v2_itemattributemap_min_order_by { + id: order_by + item_attribute_id: order_by + item_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_itemattributemap". +""" +input pokemon_v2_itemattributemap_order_by { + id: order_by + item_attribute_id: order_by + item_id: order_by + pokemon_v2_item: pokemon_v2_item_order_by + pokemon_v2_itemattribute: pokemon_v2_itemattribute_order_by +} + +""" +select columns of table "pokemon_v2_itemattributemap" +""" +enum pokemon_v2_itemattributemap_select_column { + """column name""" + id + + """column name""" + item_attribute_id + + """column name""" + item_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_itemattributemap_stddev_fields { + id: Float + item_attribute_id: Float + item_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_itemattributemap" +""" +input pokemon_v2_itemattributemap_stddev_order_by { + id: order_by + item_attribute_id: order_by + item_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_itemattributemap_stddev_pop_fields { + id: Float + item_attribute_id: Float + item_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_itemattributemap" +""" +input pokemon_v2_itemattributemap_stddev_pop_order_by { + id: order_by + item_attribute_id: order_by + item_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_itemattributemap_stddev_samp_fields { + id: Float + item_attribute_id: Float + item_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_itemattributemap" +""" +input pokemon_v2_itemattributemap_stddev_samp_order_by { + id: order_by + item_attribute_id: order_by + item_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_itemattributemap" +""" +input pokemon_v2_itemattributemap_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_itemattributemap_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_itemattributemap_stream_cursor_value_input { + id: Int + item_attribute_id: Int + item_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_itemattributemap_sum_fields { + id: Int + item_attribute_id: Int + item_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_itemattributemap" +""" +input pokemon_v2_itemattributemap_sum_order_by { + id: order_by + item_attribute_id: order_by + item_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_itemattributemap_var_pop_fields { + id: Float + item_attribute_id: Float + item_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_itemattributemap" +""" +input pokemon_v2_itemattributemap_var_pop_order_by { + id: order_by + item_attribute_id: order_by + item_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_itemattributemap_var_samp_fields { + id: Float + item_attribute_id: Float + item_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_itemattributemap" +""" +input pokemon_v2_itemattributemap_var_samp_order_by { + id: order_by + item_attribute_id: order_by + item_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_itemattributemap_variance_fields { + id: Float + item_attribute_id: Float + item_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_itemattributemap" +""" +input pokemon_v2_itemattributemap_variance_order_by { + id: order_by + item_attribute_id: order_by + item_id: order_by +} + +""" +columns and relationships of "pokemon_v2_itemattributename" +""" +type pokemon_v2_itemattributename { + id: Int! + item_attribute_id: Int + language_id: Int + name: String! + + """An object relationship""" + pokemon_v2_itemattribute: pokemon_v2_itemattribute + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language +} + +""" +aggregated selection of "pokemon_v2_itemattributename" +""" +type pokemon_v2_itemattributename_aggregate { + aggregate: pokemon_v2_itemattributename_aggregate_fields + nodes: [pokemon_v2_itemattributename!]! +} + +input pokemon_v2_itemattributename_aggregate_bool_exp { + count: pokemon_v2_itemattributename_aggregate_bool_exp_count +} + +input pokemon_v2_itemattributename_aggregate_bool_exp_count { + arguments: [pokemon_v2_itemattributename_select_column!] + distinct: Boolean + filter: pokemon_v2_itemattributename_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_itemattributename" +""" +type pokemon_v2_itemattributename_aggregate_fields { + avg: pokemon_v2_itemattributename_avg_fields + count(columns: [pokemon_v2_itemattributename_select_column!], distinct: Boolean): Int! + max: pokemon_v2_itemattributename_max_fields + min: pokemon_v2_itemattributename_min_fields + stddev: pokemon_v2_itemattributename_stddev_fields + stddev_pop: pokemon_v2_itemattributename_stddev_pop_fields + stddev_samp: pokemon_v2_itemattributename_stddev_samp_fields + sum: pokemon_v2_itemattributename_sum_fields + var_pop: pokemon_v2_itemattributename_var_pop_fields + var_samp: pokemon_v2_itemattributename_var_samp_fields + variance: pokemon_v2_itemattributename_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_itemattributename" +""" +input pokemon_v2_itemattributename_aggregate_order_by { + avg: pokemon_v2_itemattributename_avg_order_by + count: order_by + max: pokemon_v2_itemattributename_max_order_by + min: pokemon_v2_itemattributename_min_order_by + stddev: pokemon_v2_itemattributename_stddev_order_by + stddev_pop: pokemon_v2_itemattributename_stddev_pop_order_by + stddev_samp: pokemon_v2_itemattributename_stddev_samp_order_by + sum: pokemon_v2_itemattributename_sum_order_by + var_pop: pokemon_v2_itemattributename_var_pop_order_by + var_samp: pokemon_v2_itemattributename_var_samp_order_by + variance: pokemon_v2_itemattributename_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_itemattributename_avg_fields { + id: Float + item_attribute_id: Float + language_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_itemattributename" +""" +input pokemon_v2_itemattributename_avg_order_by { + id: order_by + item_attribute_id: order_by + language_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_itemattributename". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_itemattributename_bool_exp { + _and: [pokemon_v2_itemattributename_bool_exp!] + _not: pokemon_v2_itemattributename_bool_exp + _or: [pokemon_v2_itemattributename_bool_exp!] + id: Int_comparison_exp + item_attribute_id: Int_comparison_exp + language_id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_itemattribute: pokemon_v2_itemattribute_bool_exp + pokemon_v2_language: pokemon_v2_language_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_itemattributename_max_fields { + id: Int + item_attribute_id: Int + language_id: Int + name: String +} + +""" +order by max() on columns of table "pokemon_v2_itemattributename" +""" +input pokemon_v2_itemattributename_max_order_by { + id: order_by + item_attribute_id: order_by + language_id: order_by + name: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_itemattributename_min_fields { + id: Int + item_attribute_id: Int + language_id: Int + name: String +} + +""" +order by min() on columns of table "pokemon_v2_itemattributename" +""" +input pokemon_v2_itemattributename_min_order_by { + id: order_by + item_attribute_id: order_by + language_id: order_by + name: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_itemattributename". +""" +input pokemon_v2_itemattributename_order_by { + id: order_by + item_attribute_id: order_by + language_id: order_by + name: order_by + pokemon_v2_itemattribute: pokemon_v2_itemattribute_order_by + pokemon_v2_language: pokemon_v2_language_order_by +} + +""" +select columns of table "pokemon_v2_itemattributename" +""" +enum pokemon_v2_itemattributename_select_column { + """column name""" + id + + """column name""" + item_attribute_id + + """column name""" + language_id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_itemattributename_stddev_fields { + id: Float + item_attribute_id: Float + language_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_itemattributename" +""" +input pokemon_v2_itemattributename_stddev_order_by { + id: order_by + item_attribute_id: order_by + language_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_itemattributename_stddev_pop_fields { + id: Float + item_attribute_id: Float + language_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_itemattributename" +""" +input pokemon_v2_itemattributename_stddev_pop_order_by { + id: order_by + item_attribute_id: order_by + language_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_itemattributename_stddev_samp_fields { + id: Float + item_attribute_id: Float + language_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_itemattributename" +""" +input pokemon_v2_itemattributename_stddev_samp_order_by { + id: order_by + item_attribute_id: order_by + language_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_itemattributename" +""" +input pokemon_v2_itemattributename_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_itemattributename_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_itemattributename_stream_cursor_value_input { + id: Int + item_attribute_id: Int + language_id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_itemattributename_sum_fields { + id: Int + item_attribute_id: Int + language_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_itemattributename" +""" +input pokemon_v2_itemattributename_sum_order_by { + id: order_by + item_attribute_id: order_by + language_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_itemattributename_var_pop_fields { + id: Float + item_attribute_id: Float + language_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_itemattributename" +""" +input pokemon_v2_itemattributename_var_pop_order_by { + id: order_by + item_attribute_id: order_by + language_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_itemattributename_var_samp_fields { + id: Float + item_attribute_id: Float + language_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_itemattributename" +""" +input pokemon_v2_itemattributename_var_samp_order_by { + id: order_by + item_attribute_id: order_by + language_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_itemattributename_variance_fields { + id: Float + item_attribute_id: Float + language_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_itemattributename" +""" +input pokemon_v2_itemattributename_variance_order_by { + id: order_by + item_attribute_id: order_by + language_id: order_by +} + +""" +columns and relationships of "pokemon_v2_itemcategory" +""" +type pokemon_v2_itemcategory { + id: Int! + item_pocket_id: Int + name: String! + + """An array relationship""" + pokemon_v2_itemcategorynames( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemcategoryname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemcategoryname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemcategoryname_bool_exp + ): [pokemon_v2_itemcategoryname!]! + + """An aggregate relationship""" + pokemon_v2_itemcategorynames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemcategoryname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemcategoryname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemcategoryname_bool_exp + ): pokemon_v2_itemcategoryname_aggregate! + + """An object relationship""" + pokemon_v2_itempocket: pokemon_v2_itempocket + + """An array relationship""" + pokemon_v2_items( + """distinct select on columns""" + distinct_on: [pokemon_v2_item_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_item_order_by!] + + """filter the rows returned""" + where: pokemon_v2_item_bool_exp + ): [pokemon_v2_item!]! + + """An aggregate relationship""" + pokemon_v2_items_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_item_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_item_order_by!] + + """filter the rows returned""" + where: pokemon_v2_item_bool_exp + ): pokemon_v2_item_aggregate! +} + +""" +aggregated selection of "pokemon_v2_itemcategory" +""" +type pokemon_v2_itemcategory_aggregate { + aggregate: pokemon_v2_itemcategory_aggregate_fields + nodes: [pokemon_v2_itemcategory!]! +} + +input pokemon_v2_itemcategory_aggregate_bool_exp { + count: pokemon_v2_itemcategory_aggregate_bool_exp_count +} + +input pokemon_v2_itemcategory_aggregate_bool_exp_count { + arguments: [pokemon_v2_itemcategory_select_column!] + distinct: Boolean + filter: pokemon_v2_itemcategory_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_itemcategory" +""" +type pokemon_v2_itemcategory_aggregate_fields { + avg: pokemon_v2_itemcategory_avg_fields + count(columns: [pokemon_v2_itemcategory_select_column!], distinct: Boolean): Int! + max: pokemon_v2_itemcategory_max_fields + min: pokemon_v2_itemcategory_min_fields + stddev: pokemon_v2_itemcategory_stddev_fields + stddev_pop: pokemon_v2_itemcategory_stddev_pop_fields + stddev_samp: pokemon_v2_itemcategory_stddev_samp_fields + sum: pokemon_v2_itemcategory_sum_fields + var_pop: pokemon_v2_itemcategory_var_pop_fields + var_samp: pokemon_v2_itemcategory_var_samp_fields + variance: pokemon_v2_itemcategory_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_itemcategory" +""" +input pokemon_v2_itemcategory_aggregate_order_by { + avg: pokemon_v2_itemcategory_avg_order_by + count: order_by + max: pokemon_v2_itemcategory_max_order_by + min: pokemon_v2_itemcategory_min_order_by + stddev: pokemon_v2_itemcategory_stddev_order_by + stddev_pop: pokemon_v2_itemcategory_stddev_pop_order_by + stddev_samp: pokemon_v2_itemcategory_stddev_samp_order_by + sum: pokemon_v2_itemcategory_sum_order_by + var_pop: pokemon_v2_itemcategory_var_pop_order_by + var_samp: pokemon_v2_itemcategory_var_samp_order_by + variance: pokemon_v2_itemcategory_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_itemcategory_avg_fields { + id: Float + item_pocket_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_itemcategory" +""" +input pokemon_v2_itemcategory_avg_order_by { + id: order_by + item_pocket_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_itemcategory". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_itemcategory_bool_exp { + _and: [pokemon_v2_itemcategory_bool_exp!] + _not: pokemon_v2_itemcategory_bool_exp + _or: [pokemon_v2_itemcategory_bool_exp!] + id: Int_comparison_exp + item_pocket_id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_itemcategorynames: pokemon_v2_itemcategoryname_bool_exp + pokemon_v2_itemcategorynames_aggregate: pokemon_v2_itemcategoryname_aggregate_bool_exp + pokemon_v2_itempocket: pokemon_v2_itempocket_bool_exp + pokemon_v2_items: pokemon_v2_item_bool_exp + pokemon_v2_items_aggregate: pokemon_v2_item_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_itemcategory_max_fields { + id: Int + item_pocket_id: Int + name: String +} + +""" +order by max() on columns of table "pokemon_v2_itemcategory" +""" +input pokemon_v2_itemcategory_max_order_by { + id: order_by + item_pocket_id: order_by + name: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_itemcategory_min_fields { + id: Int + item_pocket_id: Int + name: String +} + +""" +order by min() on columns of table "pokemon_v2_itemcategory" +""" +input pokemon_v2_itemcategory_min_order_by { + id: order_by + item_pocket_id: order_by + name: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_itemcategory".""" +input pokemon_v2_itemcategory_order_by { + id: order_by + item_pocket_id: order_by + name: order_by + pokemon_v2_itemcategorynames_aggregate: pokemon_v2_itemcategoryname_aggregate_order_by + pokemon_v2_itempocket: pokemon_v2_itempocket_order_by + pokemon_v2_items_aggregate: pokemon_v2_item_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_itemcategory" +""" +enum pokemon_v2_itemcategory_select_column { + """column name""" + id + + """column name""" + item_pocket_id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_itemcategory_stddev_fields { + id: Float + item_pocket_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_itemcategory" +""" +input pokemon_v2_itemcategory_stddev_order_by { + id: order_by + item_pocket_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_itemcategory_stddev_pop_fields { + id: Float + item_pocket_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_itemcategory" +""" +input pokemon_v2_itemcategory_stddev_pop_order_by { + id: order_by + item_pocket_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_itemcategory_stddev_samp_fields { + id: Float + item_pocket_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_itemcategory" +""" +input pokemon_v2_itemcategory_stddev_samp_order_by { + id: order_by + item_pocket_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_itemcategory" +""" +input pokemon_v2_itemcategory_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_itemcategory_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_itemcategory_stream_cursor_value_input { + id: Int + item_pocket_id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_itemcategory_sum_fields { + id: Int + item_pocket_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_itemcategory" +""" +input pokemon_v2_itemcategory_sum_order_by { + id: order_by + item_pocket_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_itemcategory_var_pop_fields { + id: Float + item_pocket_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_itemcategory" +""" +input pokemon_v2_itemcategory_var_pop_order_by { + id: order_by + item_pocket_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_itemcategory_var_samp_fields { + id: Float + item_pocket_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_itemcategory" +""" +input pokemon_v2_itemcategory_var_samp_order_by { + id: order_by + item_pocket_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_itemcategory_variance_fields { + id: Float + item_pocket_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_itemcategory" +""" +input pokemon_v2_itemcategory_variance_order_by { + id: order_by + item_pocket_id: order_by +} + +""" +columns and relationships of "pokemon_v2_itemcategoryname" +""" +type pokemon_v2_itemcategoryname { + id: Int! + item_category_id: Int + language_id: Int + name: String! + + """An object relationship""" + pokemon_v2_itemcategory: pokemon_v2_itemcategory + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language +} + +""" +aggregated selection of "pokemon_v2_itemcategoryname" +""" +type pokemon_v2_itemcategoryname_aggregate { + aggregate: pokemon_v2_itemcategoryname_aggregate_fields + nodes: [pokemon_v2_itemcategoryname!]! +} + +input pokemon_v2_itemcategoryname_aggregate_bool_exp { + count: pokemon_v2_itemcategoryname_aggregate_bool_exp_count +} + +input pokemon_v2_itemcategoryname_aggregate_bool_exp_count { + arguments: [pokemon_v2_itemcategoryname_select_column!] + distinct: Boolean + filter: pokemon_v2_itemcategoryname_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_itemcategoryname" +""" +type pokemon_v2_itemcategoryname_aggregate_fields { + avg: pokemon_v2_itemcategoryname_avg_fields + count(columns: [pokemon_v2_itemcategoryname_select_column!], distinct: Boolean): Int! + max: pokemon_v2_itemcategoryname_max_fields + min: pokemon_v2_itemcategoryname_min_fields + stddev: pokemon_v2_itemcategoryname_stddev_fields + stddev_pop: pokemon_v2_itemcategoryname_stddev_pop_fields + stddev_samp: pokemon_v2_itemcategoryname_stddev_samp_fields + sum: pokemon_v2_itemcategoryname_sum_fields + var_pop: pokemon_v2_itemcategoryname_var_pop_fields + var_samp: pokemon_v2_itemcategoryname_var_samp_fields + variance: pokemon_v2_itemcategoryname_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_itemcategoryname" +""" +input pokemon_v2_itemcategoryname_aggregate_order_by { + avg: pokemon_v2_itemcategoryname_avg_order_by + count: order_by + max: pokemon_v2_itemcategoryname_max_order_by + min: pokemon_v2_itemcategoryname_min_order_by + stddev: pokemon_v2_itemcategoryname_stddev_order_by + stddev_pop: pokemon_v2_itemcategoryname_stddev_pop_order_by + stddev_samp: pokemon_v2_itemcategoryname_stddev_samp_order_by + sum: pokemon_v2_itemcategoryname_sum_order_by + var_pop: pokemon_v2_itemcategoryname_var_pop_order_by + var_samp: pokemon_v2_itemcategoryname_var_samp_order_by + variance: pokemon_v2_itemcategoryname_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_itemcategoryname_avg_fields { + id: Float + item_category_id: Float + language_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_itemcategoryname" +""" +input pokemon_v2_itemcategoryname_avg_order_by { + id: order_by + item_category_id: order_by + language_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_itemcategoryname". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_itemcategoryname_bool_exp { + _and: [pokemon_v2_itemcategoryname_bool_exp!] + _not: pokemon_v2_itemcategoryname_bool_exp + _or: [pokemon_v2_itemcategoryname_bool_exp!] + id: Int_comparison_exp + item_category_id: Int_comparison_exp + language_id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_itemcategory: pokemon_v2_itemcategory_bool_exp + pokemon_v2_language: pokemon_v2_language_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_itemcategoryname_max_fields { + id: Int + item_category_id: Int + language_id: Int + name: String +} + +""" +order by max() on columns of table "pokemon_v2_itemcategoryname" +""" +input pokemon_v2_itemcategoryname_max_order_by { + id: order_by + item_category_id: order_by + language_id: order_by + name: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_itemcategoryname_min_fields { + id: Int + item_category_id: Int + language_id: Int + name: String +} + +""" +order by min() on columns of table "pokemon_v2_itemcategoryname" +""" +input pokemon_v2_itemcategoryname_min_order_by { + id: order_by + item_category_id: order_by + language_id: order_by + name: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_itemcategoryname". +""" +input pokemon_v2_itemcategoryname_order_by { + id: order_by + item_category_id: order_by + language_id: order_by + name: order_by + pokemon_v2_itemcategory: pokemon_v2_itemcategory_order_by + pokemon_v2_language: pokemon_v2_language_order_by +} + +""" +select columns of table "pokemon_v2_itemcategoryname" +""" +enum pokemon_v2_itemcategoryname_select_column { + """column name""" + id + + """column name""" + item_category_id + + """column name""" + language_id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_itemcategoryname_stddev_fields { + id: Float + item_category_id: Float + language_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_itemcategoryname" +""" +input pokemon_v2_itemcategoryname_stddev_order_by { + id: order_by + item_category_id: order_by + language_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_itemcategoryname_stddev_pop_fields { + id: Float + item_category_id: Float + language_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_itemcategoryname" +""" +input pokemon_v2_itemcategoryname_stddev_pop_order_by { + id: order_by + item_category_id: order_by + language_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_itemcategoryname_stddev_samp_fields { + id: Float + item_category_id: Float + language_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_itemcategoryname" +""" +input pokemon_v2_itemcategoryname_stddev_samp_order_by { + id: order_by + item_category_id: order_by + language_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_itemcategoryname" +""" +input pokemon_v2_itemcategoryname_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_itemcategoryname_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_itemcategoryname_stream_cursor_value_input { + id: Int + item_category_id: Int + language_id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_itemcategoryname_sum_fields { + id: Int + item_category_id: Int + language_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_itemcategoryname" +""" +input pokemon_v2_itemcategoryname_sum_order_by { + id: order_by + item_category_id: order_by + language_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_itemcategoryname_var_pop_fields { + id: Float + item_category_id: Float + language_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_itemcategoryname" +""" +input pokemon_v2_itemcategoryname_var_pop_order_by { + id: order_by + item_category_id: order_by + language_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_itemcategoryname_var_samp_fields { + id: Float + item_category_id: Float + language_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_itemcategoryname" +""" +input pokemon_v2_itemcategoryname_var_samp_order_by { + id: order_by + item_category_id: order_by + language_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_itemcategoryname_variance_fields { + id: Float + item_category_id: Float + language_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_itemcategoryname" +""" +input pokemon_v2_itemcategoryname_variance_order_by { + id: order_by + item_category_id: order_by + language_id: order_by +} + +""" +columns and relationships of "pokemon_v2_itemeffecttext" +""" +type pokemon_v2_itemeffecttext { + effect: String! + id: Int! + item_id: Int + language_id: Int + + """An object relationship""" + pokemon_v2_item: pokemon_v2_item + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + short_effect: String! +} + +""" +aggregated selection of "pokemon_v2_itemeffecttext" +""" +type pokemon_v2_itemeffecttext_aggregate { + aggregate: pokemon_v2_itemeffecttext_aggregate_fields + nodes: [pokemon_v2_itemeffecttext!]! +} + +input pokemon_v2_itemeffecttext_aggregate_bool_exp { + count: pokemon_v2_itemeffecttext_aggregate_bool_exp_count +} + +input pokemon_v2_itemeffecttext_aggregate_bool_exp_count { + arguments: [pokemon_v2_itemeffecttext_select_column!] + distinct: Boolean + filter: pokemon_v2_itemeffecttext_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_itemeffecttext" +""" +type pokemon_v2_itemeffecttext_aggregate_fields { + avg: pokemon_v2_itemeffecttext_avg_fields + count(columns: [pokemon_v2_itemeffecttext_select_column!], distinct: Boolean): Int! + max: pokemon_v2_itemeffecttext_max_fields + min: pokemon_v2_itemeffecttext_min_fields + stddev: pokemon_v2_itemeffecttext_stddev_fields + stddev_pop: pokemon_v2_itemeffecttext_stddev_pop_fields + stddev_samp: pokemon_v2_itemeffecttext_stddev_samp_fields + sum: pokemon_v2_itemeffecttext_sum_fields + var_pop: pokemon_v2_itemeffecttext_var_pop_fields + var_samp: pokemon_v2_itemeffecttext_var_samp_fields + variance: pokemon_v2_itemeffecttext_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_itemeffecttext" +""" +input pokemon_v2_itemeffecttext_aggregate_order_by { + avg: pokemon_v2_itemeffecttext_avg_order_by + count: order_by + max: pokemon_v2_itemeffecttext_max_order_by + min: pokemon_v2_itemeffecttext_min_order_by + stddev: pokemon_v2_itemeffecttext_stddev_order_by + stddev_pop: pokemon_v2_itemeffecttext_stddev_pop_order_by + stddev_samp: pokemon_v2_itemeffecttext_stddev_samp_order_by + sum: pokemon_v2_itemeffecttext_sum_order_by + var_pop: pokemon_v2_itemeffecttext_var_pop_order_by + var_samp: pokemon_v2_itemeffecttext_var_samp_order_by + variance: pokemon_v2_itemeffecttext_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_itemeffecttext_avg_fields { + id: Float + item_id: Float + language_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_itemeffecttext" +""" +input pokemon_v2_itemeffecttext_avg_order_by { + id: order_by + item_id: order_by + language_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_itemeffecttext". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_itemeffecttext_bool_exp { + _and: [pokemon_v2_itemeffecttext_bool_exp!] + _not: pokemon_v2_itemeffecttext_bool_exp + _or: [pokemon_v2_itemeffecttext_bool_exp!] + effect: String_comparison_exp + id: Int_comparison_exp + item_id: Int_comparison_exp + language_id: Int_comparison_exp + pokemon_v2_item: pokemon_v2_item_bool_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + short_effect: String_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_itemeffecttext_max_fields { + effect: String + id: Int + item_id: Int + language_id: Int + short_effect: String +} + +""" +order by max() on columns of table "pokemon_v2_itemeffecttext" +""" +input pokemon_v2_itemeffecttext_max_order_by { + effect: order_by + id: order_by + item_id: order_by + language_id: order_by + short_effect: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_itemeffecttext_min_fields { + effect: String + id: Int + item_id: Int + language_id: Int + short_effect: String +} + +""" +order by min() on columns of table "pokemon_v2_itemeffecttext" +""" +input pokemon_v2_itemeffecttext_min_order_by { + effect: order_by + id: order_by + item_id: order_by + language_id: order_by + short_effect: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_itemeffecttext".""" +input pokemon_v2_itemeffecttext_order_by { + effect: order_by + id: order_by + item_id: order_by + language_id: order_by + pokemon_v2_item: pokemon_v2_item_order_by + pokemon_v2_language: pokemon_v2_language_order_by + short_effect: order_by +} + +""" +select columns of table "pokemon_v2_itemeffecttext" +""" +enum pokemon_v2_itemeffecttext_select_column { + """column name""" + effect + + """column name""" + id + + """column name""" + item_id + + """column name""" + language_id + + """column name""" + short_effect +} + +"""aggregate stddev on columns""" +type pokemon_v2_itemeffecttext_stddev_fields { + id: Float + item_id: Float + language_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_itemeffecttext" +""" +input pokemon_v2_itemeffecttext_stddev_order_by { + id: order_by + item_id: order_by + language_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_itemeffecttext_stddev_pop_fields { + id: Float + item_id: Float + language_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_itemeffecttext" +""" +input pokemon_v2_itemeffecttext_stddev_pop_order_by { + id: order_by + item_id: order_by + language_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_itemeffecttext_stddev_samp_fields { + id: Float + item_id: Float + language_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_itemeffecttext" +""" +input pokemon_v2_itemeffecttext_stddev_samp_order_by { + id: order_by + item_id: order_by + language_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_itemeffecttext" +""" +input pokemon_v2_itemeffecttext_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_itemeffecttext_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_itemeffecttext_stream_cursor_value_input { + effect: String + id: Int + item_id: Int + language_id: Int + short_effect: String +} + +"""aggregate sum on columns""" +type pokemon_v2_itemeffecttext_sum_fields { + id: Int + item_id: Int + language_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_itemeffecttext" +""" +input pokemon_v2_itemeffecttext_sum_order_by { + id: order_by + item_id: order_by + language_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_itemeffecttext_var_pop_fields { + id: Float + item_id: Float + language_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_itemeffecttext" +""" +input pokemon_v2_itemeffecttext_var_pop_order_by { + id: order_by + item_id: order_by + language_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_itemeffecttext_var_samp_fields { + id: Float + item_id: Float + language_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_itemeffecttext" +""" +input pokemon_v2_itemeffecttext_var_samp_order_by { + id: order_by + item_id: order_by + language_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_itemeffecttext_variance_fields { + id: Float + item_id: Float + language_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_itemeffecttext" +""" +input pokemon_v2_itemeffecttext_variance_order_by { + id: order_by + item_id: order_by + language_id: order_by +} + +""" +columns and relationships of "pokemon_v2_itemflavortext" +""" +type pokemon_v2_itemflavortext { + flavor_text: String! + id: Int! + item_id: Int + language_id: Int + + """An object relationship""" + pokemon_v2_item: pokemon_v2_item + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_versiongroup: pokemon_v2_versiongroup + version_group_id: Int +} + +""" +aggregated selection of "pokemon_v2_itemflavortext" +""" +type pokemon_v2_itemflavortext_aggregate { + aggregate: pokemon_v2_itemflavortext_aggregate_fields + nodes: [pokemon_v2_itemflavortext!]! +} + +input pokemon_v2_itemflavortext_aggregate_bool_exp { + count: pokemon_v2_itemflavortext_aggregate_bool_exp_count +} + +input pokemon_v2_itemflavortext_aggregate_bool_exp_count { + arguments: [pokemon_v2_itemflavortext_select_column!] + distinct: Boolean + filter: pokemon_v2_itemflavortext_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_itemflavortext" +""" +type pokemon_v2_itemflavortext_aggregate_fields { + avg: pokemon_v2_itemflavortext_avg_fields + count(columns: [pokemon_v2_itemflavortext_select_column!], distinct: Boolean): Int! + max: pokemon_v2_itemflavortext_max_fields + min: pokemon_v2_itemflavortext_min_fields + stddev: pokemon_v2_itemflavortext_stddev_fields + stddev_pop: pokemon_v2_itemflavortext_stddev_pop_fields + stddev_samp: pokemon_v2_itemflavortext_stddev_samp_fields + sum: pokemon_v2_itemflavortext_sum_fields + var_pop: pokemon_v2_itemflavortext_var_pop_fields + var_samp: pokemon_v2_itemflavortext_var_samp_fields + variance: pokemon_v2_itemflavortext_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_itemflavortext" +""" +input pokemon_v2_itemflavortext_aggregate_order_by { + avg: pokemon_v2_itemflavortext_avg_order_by + count: order_by + max: pokemon_v2_itemflavortext_max_order_by + min: pokemon_v2_itemflavortext_min_order_by + stddev: pokemon_v2_itemflavortext_stddev_order_by + stddev_pop: pokemon_v2_itemflavortext_stddev_pop_order_by + stddev_samp: pokemon_v2_itemflavortext_stddev_samp_order_by + sum: pokemon_v2_itemflavortext_sum_order_by + var_pop: pokemon_v2_itemflavortext_var_pop_order_by + var_samp: pokemon_v2_itemflavortext_var_samp_order_by + variance: pokemon_v2_itemflavortext_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_itemflavortext_avg_fields { + id: Float + item_id: Float + language_id: Float + version_group_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_itemflavortext" +""" +input pokemon_v2_itemflavortext_avg_order_by { + id: order_by + item_id: order_by + language_id: order_by + version_group_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_itemflavortext". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_itemflavortext_bool_exp { + _and: [pokemon_v2_itemflavortext_bool_exp!] + _not: pokemon_v2_itemflavortext_bool_exp + _or: [pokemon_v2_itemflavortext_bool_exp!] + flavor_text: String_comparison_exp + id: Int_comparison_exp + item_id: Int_comparison_exp + language_id: Int_comparison_exp + pokemon_v2_item: pokemon_v2_item_bool_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_versiongroup: pokemon_v2_versiongroup_bool_exp + version_group_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_itemflavortext_max_fields { + flavor_text: String + id: Int + item_id: Int + language_id: Int + version_group_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_itemflavortext" +""" +input pokemon_v2_itemflavortext_max_order_by { + flavor_text: order_by + id: order_by + item_id: order_by + language_id: order_by + version_group_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_itemflavortext_min_fields { + flavor_text: String + id: Int + item_id: Int + language_id: Int + version_group_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_itemflavortext" +""" +input pokemon_v2_itemflavortext_min_order_by { + flavor_text: order_by + id: order_by + item_id: order_by + language_id: order_by + version_group_id: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_itemflavortext".""" +input pokemon_v2_itemflavortext_order_by { + flavor_text: order_by + id: order_by + item_id: order_by + language_id: order_by + pokemon_v2_item: pokemon_v2_item_order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_versiongroup: pokemon_v2_versiongroup_order_by + version_group_id: order_by +} + +""" +select columns of table "pokemon_v2_itemflavortext" +""" +enum pokemon_v2_itemflavortext_select_column { + """column name""" + flavor_text + + """column name""" + id + + """column name""" + item_id + + """column name""" + language_id + + """column name""" + version_group_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_itemflavortext_stddev_fields { + id: Float + item_id: Float + language_id: Float + version_group_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_itemflavortext" +""" +input pokemon_v2_itemflavortext_stddev_order_by { + id: order_by + item_id: order_by + language_id: order_by + version_group_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_itemflavortext_stddev_pop_fields { + id: Float + item_id: Float + language_id: Float + version_group_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_itemflavortext" +""" +input pokemon_v2_itemflavortext_stddev_pop_order_by { + id: order_by + item_id: order_by + language_id: order_by + version_group_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_itemflavortext_stddev_samp_fields { + id: Float + item_id: Float + language_id: Float + version_group_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_itemflavortext" +""" +input pokemon_v2_itemflavortext_stddev_samp_order_by { + id: order_by + item_id: order_by + language_id: order_by + version_group_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_itemflavortext" +""" +input pokemon_v2_itemflavortext_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_itemflavortext_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_itemflavortext_stream_cursor_value_input { + flavor_text: String + id: Int + item_id: Int + language_id: Int + version_group_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_itemflavortext_sum_fields { + id: Int + item_id: Int + language_id: Int + version_group_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_itemflavortext" +""" +input pokemon_v2_itemflavortext_sum_order_by { + id: order_by + item_id: order_by + language_id: order_by + version_group_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_itemflavortext_var_pop_fields { + id: Float + item_id: Float + language_id: Float + version_group_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_itemflavortext" +""" +input pokemon_v2_itemflavortext_var_pop_order_by { + id: order_by + item_id: order_by + language_id: order_by + version_group_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_itemflavortext_var_samp_fields { + id: Float + item_id: Float + language_id: Float + version_group_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_itemflavortext" +""" +input pokemon_v2_itemflavortext_var_samp_order_by { + id: order_by + item_id: order_by + language_id: order_by + version_group_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_itemflavortext_variance_fields { + id: Float + item_id: Float + language_id: Float + version_group_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_itemflavortext" +""" +input pokemon_v2_itemflavortext_variance_order_by { + id: order_by + item_id: order_by + language_id: order_by + version_group_id: order_by +} + +""" +columns and relationships of "pokemon_v2_itemflingeffect" +""" +type pokemon_v2_itemflingeffect { + id: Int! + name: String! + + """An array relationship""" + pokemon_v2_itemflingeffecteffecttexts( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemflingeffecteffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemflingeffecteffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemflingeffecteffecttext_bool_exp + ): [pokemon_v2_itemflingeffecteffecttext!]! + + """An aggregate relationship""" + pokemon_v2_itemflingeffecteffecttexts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemflingeffecteffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemflingeffecteffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemflingeffecteffecttext_bool_exp + ): pokemon_v2_itemflingeffecteffecttext_aggregate! + + """An array relationship""" + pokemon_v2_items( + """distinct select on columns""" + distinct_on: [pokemon_v2_item_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_item_order_by!] + + """filter the rows returned""" + where: pokemon_v2_item_bool_exp + ): [pokemon_v2_item!]! + + """An aggregate relationship""" + pokemon_v2_items_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_item_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_item_order_by!] + + """filter the rows returned""" + where: pokemon_v2_item_bool_exp + ): pokemon_v2_item_aggregate! +} + +""" +aggregated selection of "pokemon_v2_itemflingeffect" +""" +type pokemon_v2_itemflingeffect_aggregate { + aggregate: pokemon_v2_itemflingeffect_aggregate_fields + nodes: [pokemon_v2_itemflingeffect!]! +} + +""" +aggregate fields of "pokemon_v2_itemflingeffect" +""" +type pokemon_v2_itemflingeffect_aggregate_fields { + avg: pokemon_v2_itemflingeffect_avg_fields + count(columns: [pokemon_v2_itemflingeffect_select_column!], distinct: Boolean): Int! + max: pokemon_v2_itemflingeffect_max_fields + min: pokemon_v2_itemflingeffect_min_fields + stddev: pokemon_v2_itemflingeffect_stddev_fields + stddev_pop: pokemon_v2_itemflingeffect_stddev_pop_fields + stddev_samp: pokemon_v2_itemflingeffect_stddev_samp_fields + sum: pokemon_v2_itemflingeffect_sum_fields + var_pop: pokemon_v2_itemflingeffect_var_pop_fields + var_samp: pokemon_v2_itemflingeffect_var_samp_fields + variance: pokemon_v2_itemflingeffect_variance_fields +} + +"""aggregate avg on columns""" +type pokemon_v2_itemflingeffect_avg_fields { + id: Float +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_itemflingeffect". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_itemflingeffect_bool_exp { + _and: [pokemon_v2_itemflingeffect_bool_exp!] + _not: pokemon_v2_itemflingeffect_bool_exp + _or: [pokemon_v2_itemflingeffect_bool_exp!] + id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_itemflingeffecteffecttexts: pokemon_v2_itemflingeffecteffecttext_bool_exp + pokemon_v2_itemflingeffecteffecttexts_aggregate: pokemon_v2_itemflingeffecteffecttext_aggregate_bool_exp + pokemon_v2_items: pokemon_v2_item_bool_exp + pokemon_v2_items_aggregate: pokemon_v2_item_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_itemflingeffect_max_fields { + id: Int + name: String +} + +"""aggregate min on columns""" +type pokemon_v2_itemflingeffect_min_fields { + id: Int + name: String +} + +""" +Ordering options when selecting data from "pokemon_v2_itemflingeffect". +""" +input pokemon_v2_itemflingeffect_order_by { + id: order_by + name: order_by + pokemon_v2_itemflingeffecteffecttexts_aggregate: pokemon_v2_itemflingeffecteffecttext_aggregate_order_by + pokemon_v2_items_aggregate: pokemon_v2_item_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_itemflingeffect" +""" +enum pokemon_v2_itemflingeffect_select_column { + """column name""" + id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_itemflingeffect_stddev_fields { + id: Float +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_itemflingeffect_stddev_pop_fields { + id: Float +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_itemflingeffect_stddev_samp_fields { + id: Float +} + +""" +Streaming cursor of the table "pokemon_v2_itemflingeffect" +""" +input pokemon_v2_itemflingeffect_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_itemflingeffect_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_itemflingeffect_stream_cursor_value_input { + id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_itemflingeffect_sum_fields { + id: Int +} + +"""aggregate var_pop on columns""" +type pokemon_v2_itemflingeffect_var_pop_fields { + id: Float +} + +"""aggregate var_samp on columns""" +type pokemon_v2_itemflingeffect_var_samp_fields { + id: Float +} + +"""aggregate variance on columns""" +type pokemon_v2_itemflingeffect_variance_fields { + id: Float +} + +""" +columns and relationships of "pokemon_v2_itemflingeffecteffecttext" +""" +type pokemon_v2_itemflingeffecteffecttext { + effect: String! + id: Int! + item_fling_effect_id: Int + language_id: Int + + """An object relationship""" + pokemon_v2_itemflingeffect: pokemon_v2_itemflingeffect + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language +} + +""" +aggregated selection of "pokemon_v2_itemflingeffecteffecttext" +""" +type pokemon_v2_itemflingeffecteffecttext_aggregate { + aggregate: pokemon_v2_itemflingeffecteffecttext_aggregate_fields + nodes: [pokemon_v2_itemflingeffecteffecttext!]! +} + +input pokemon_v2_itemflingeffecteffecttext_aggregate_bool_exp { + count: pokemon_v2_itemflingeffecteffecttext_aggregate_bool_exp_count +} + +input pokemon_v2_itemflingeffecteffecttext_aggregate_bool_exp_count { + arguments: [pokemon_v2_itemflingeffecteffecttext_select_column!] + distinct: Boolean + filter: pokemon_v2_itemflingeffecteffecttext_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_itemflingeffecteffecttext" +""" +type pokemon_v2_itemflingeffecteffecttext_aggregate_fields { + avg: pokemon_v2_itemflingeffecteffecttext_avg_fields + count(columns: [pokemon_v2_itemflingeffecteffecttext_select_column!], distinct: Boolean): Int! + max: pokemon_v2_itemflingeffecteffecttext_max_fields + min: pokemon_v2_itemflingeffecteffecttext_min_fields + stddev: pokemon_v2_itemflingeffecteffecttext_stddev_fields + stddev_pop: pokemon_v2_itemflingeffecteffecttext_stddev_pop_fields + stddev_samp: pokemon_v2_itemflingeffecteffecttext_stddev_samp_fields + sum: pokemon_v2_itemflingeffecteffecttext_sum_fields + var_pop: pokemon_v2_itemflingeffecteffecttext_var_pop_fields + var_samp: pokemon_v2_itemflingeffecteffecttext_var_samp_fields + variance: pokemon_v2_itemflingeffecteffecttext_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_itemflingeffecteffecttext" +""" +input pokemon_v2_itemflingeffecteffecttext_aggregate_order_by { + avg: pokemon_v2_itemflingeffecteffecttext_avg_order_by + count: order_by + max: pokemon_v2_itemflingeffecteffecttext_max_order_by + min: pokemon_v2_itemflingeffecteffecttext_min_order_by + stddev: pokemon_v2_itemflingeffecteffecttext_stddev_order_by + stddev_pop: pokemon_v2_itemflingeffecteffecttext_stddev_pop_order_by + stddev_samp: pokemon_v2_itemflingeffecteffecttext_stddev_samp_order_by + sum: pokemon_v2_itemflingeffecteffecttext_sum_order_by + var_pop: pokemon_v2_itemflingeffecteffecttext_var_pop_order_by + var_samp: pokemon_v2_itemflingeffecteffecttext_var_samp_order_by + variance: pokemon_v2_itemflingeffecteffecttext_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_itemflingeffecteffecttext_avg_fields { + id: Float + item_fling_effect_id: Float + language_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_itemflingeffecteffecttext" +""" +input pokemon_v2_itemflingeffecteffecttext_avg_order_by { + id: order_by + item_fling_effect_id: order_by + language_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_itemflingeffecteffecttext". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_itemflingeffecteffecttext_bool_exp { + _and: [pokemon_v2_itemflingeffecteffecttext_bool_exp!] + _not: pokemon_v2_itemflingeffecteffecttext_bool_exp + _or: [pokemon_v2_itemflingeffecteffecttext_bool_exp!] + effect: String_comparison_exp + id: Int_comparison_exp + item_fling_effect_id: Int_comparison_exp + language_id: Int_comparison_exp + pokemon_v2_itemflingeffect: pokemon_v2_itemflingeffect_bool_exp + pokemon_v2_language: pokemon_v2_language_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_itemflingeffecteffecttext_max_fields { + effect: String + id: Int + item_fling_effect_id: Int + language_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_itemflingeffecteffecttext" +""" +input pokemon_v2_itemflingeffecteffecttext_max_order_by { + effect: order_by + id: order_by + item_fling_effect_id: order_by + language_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_itemflingeffecteffecttext_min_fields { + effect: String + id: Int + item_fling_effect_id: Int + language_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_itemflingeffecteffecttext" +""" +input pokemon_v2_itemflingeffecteffecttext_min_order_by { + effect: order_by + id: order_by + item_fling_effect_id: order_by + language_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_itemflingeffecteffecttext". +""" +input pokemon_v2_itemflingeffecteffecttext_order_by { + effect: order_by + id: order_by + item_fling_effect_id: order_by + language_id: order_by + pokemon_v2_itemflingeffect: pokemon_v2_itemflingeffect_order_by + pokemon_v2_language: pokemon_v2_language_order_by +} + +""" +select columns of table "pokemon_v2_itemflingeffecteffecttext" +""" +enum pokemon_v2_itemflingeffecteffecttext_select_column { + """column name""" + effect + + """column name""" + id + + """column name""" + item_fling_effect_id + + """column name""" + language_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_itemflingeffecteffecttext_stddev_fields { + id: Float + item_fling_effect_id: Float + language_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_itemflingeffecteffecttext" +""" +input pokemon_v2_itemflingeffecteffecttext_stddev_order_by { + id: order_by + item_fling_effect_id: order_by + language_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_itemflingeffecteffecttext_stddev_pop_fields { + id: Float + item_fling_effect_id: Float + language_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_itemflingeffecteffecttext" +""" +input pokemon_v2_itemflingeffecteffecttext_stddev_pop_order_by { + id: order_by + item_fling_effect_id: order_by + language_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_itemflingeffecteffecttext_stddev_samp_fields { + id: Float + item_fling_effect_id: Float + language_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_itemflingeffecteffecttext" +""" +input pokemon_v2_itemflingeffecteffecttext_stddev_samp_order_by { + id: order_by + item_fling_effect_id: order_by + language_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_itemflingeffecteffecttext" +""" +input pokemon_v2_itemflingeffecteffecttext_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_itemflingeffecteffecttext_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_itemflingeffecteffecttext_stream_cursor_value_input { + effect: String + id: Int + item_fling_effect_id: Int + language_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_itemflingeffecteffecttext_sum_fields { + id: Int + item_fling_effect_id: Int + language_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_itemflingeffecteffecttext" +""" +input pokemon_v2_itemflingeffecteffecttext_sum_order_by { + id: order_by + item_fling_effect_id: order_by + language_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_itemflingeffecteffecttext_var_pop_fields { + id: Float + item_fling_effect_id: Float + language_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_itemflingeffecteffecttext" +""" +input pokemon_v2_itemflingeffecteffecttext_var_pop_order_by { + id: order_by + item_fling_effect_id: order_by + language_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_itemflingeffecteffecttext_var_samp_fields { + id: Float + item_fling_effect_id: Float + language_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_itemflingeffecteffecttext" +""" +input pokemon_v2_itemflingeffecteffecttext_var_samp_order_by { + id: order_by + item_fling_effect_id: order_by + language_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_itemflingeffecteffecttext_variance_fields { + id: Float + item_fling_effect_id: Float + language_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_itemflingeffecteffecttext" +""" +input pokemon_v2_itemflingeffecteffecttext_variance_order_by { + id: order_by + item_fling_effect_id: order_by + language_id: order_by +} + +""" +columns and relationships of "pokemon_v2_itemgameindex" +""" +type pokemon_v2_itemgameindex { + game_index: Int! + generation_id: Int + id: Int! + item_id: Int + + """An object relationship""" + pokemon_v2_generation: pokemon_v2_generation + + """An object relationship""" + pokemon_v2_item: pokemon_v2_item +} + +""" +aggregated selection of "pokemon_v2_itemgameindex" +""" +type pokemon_v2_itemgameindex_aggregate { + aggregate: pokemon_v2_itemgameindex_aggregate_fields + nodes: [pokemon_v2_itemgameindex!]! +} + +input pokemon_v2_itemgameindex_aggregate_bool_exp { + count: pokemon_v2_itemgameindex_aggregate_bool_exp_count +} + +input pokemon_v2_itemgameindex_aggregate_bool_exp_count { + arguments: [pokemon_v2_itemgameindex_select_column!] + distinct: Boolean + filter: pokemon_v2_itemgameindex_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_itemgameindex" +""" +type pokemon_v2_itemgameindex_aggregate_fields { + avg: pokemon_v2_itemgameindex_avg_fields + count(columns: [pokemon_v2_itemgameindex_select_column!], distinct: Boolean): Int! + max: pokemon_v2_itemgameindex_max_fields + min: pokemon_v2_itemgameindex_min_fields + stddev: pokemon_v2_itemgameindex_stddev_fields + stddev_pop: pokemon_v2_itemgameindex_stddev_pop_fields + stddev_samp: pokemon_v2_itemgameindex_stddev_samp_fields + sum: pokemon_v2_itemgameindex_sum_fields + var_pop: pokemon_v2_itemgameindex_var_pop_fields + var_samp: pokemon_v2_itemgameindex_var_samp_fields + variance: pokemon_v2_itemgameindex_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_itemgameindex" +""" +input pokemon_v2_itemgameindex_aggregate_order_by { + avg: pokemon_v2_itemgameindex_avg_order_by + count: order_by + max: pokemon_v2_itemgameindex_max_order_by + min: pokemon_v2_itemgameindex_min_order_by + stddev: pokemon_v2_itemgameindex_stddev_order_by + stddev_pop: pokemon_v2_itemgameindex_stddev_pop_order_by + stddev_samp: pokemon_v2_itemgameindex_stddev_samp_order_by + sum: pokemon_v2_itemgameindex_sum_order_by + var_pop: pokemon_v2_itemgameindex_var_pop_order_by + var_samp: pokemon_v2_itemgameindex_var_samp_order_by + variance: pokemon_v2_itemgameindex_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_itemgameindex_avg_fields { + game_index: Float + generation_id: Float + id: Float + item_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_itemgameindex" +""" +input pokemon_v2_itemgameindex_avg_order_by { + game_index: order_by + generation_id: order_by + id: order_by + item_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_itemgameindex". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_itemgameindex_bool_exp { + _and: [pokemon_v2_itemgameindex_bool_exp!] + _not: pokemon_v2_itemgameindex_bool_exp + _or: [pokemon_v2_itemgameindex_bool_exp!] + game_index: Int_comparison_exp + generation_id: Int_comparison_exp + id: Int_comparison_exp + item_id: Int_comparison_exp + pokemon_v2_generation: pokemon_v2_generation_bool_exp + pokemon_v2_item: pokemon_v2_item_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_itemgameindex_max_fields { + game_index: Int + generation_id: Int + id: Int + item_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_itemgameindex" +""" +input pokemon_v2_itemgameindex_max_order_by { + game_index: order_by + generation_id: order_by + id: order_by + item_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_itemgameindex_min_fields { + game_index: Int + generation_id: Int + id: Int + item_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_itemgameindex" +""" +input pokemon_v2_itemgameindex_min_order_by { + game_index: order_by + generation_id: order_by + id: order_by + item_id: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_itemgameindex".""" +input pokemon_v2_itemgameindex_order_by { + game_index: order_by + generation_id: order_by + id: order_by + item_id: order_by + pokemon_v2_generation: pokemon_v2_generation_order_by + pokemon_v2_item: pokemon_v2_item_order_by +} + +""" +select columns of table "pokemon_v2_itemgameindex" +""" +enum pokemon_v2_itemgameindex_select_column { + """column name""" + game_index + + """column name""" + generation_id + + """column name""" + id + + """column name""" + item_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_itemgameindex_stddev_fields { + game_index: Float + generation_id: Float + id: Float + item_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_itemgameindex" +""" +input pokemon_v2_itemgameindex_stddev_order_by { + game_index: order_by + generation_id: order_by + id: order_by + item_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_itemgameindex_stddev_pop_fields { + game_index: Float + generation_id: Float + id: Float + item_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_itemgameindex" +""" +input pokemon_v2_itemgameindex_stddev_pop_order_by { + game_index: order_by + generation_id: order_by + id: order_by + item_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_itemgameindex_stddev_samp_fields { + game_index: Float + generation_id: Float + id: Float + item_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_itemgameindex" +""" +input pokemon_v2_itemgameindex_stddev_samp_order_by { + game_index: order_by + generation_id: order_by + id: order_by + item_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_itemgameindex" +""" +input pokemon_v2_itemgameindex_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_itemgameindex_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_itemgameindex_stream_cursor_value_input { + game_index: Int + generation_id: Int + id: Int + item_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_itemgameindex_sum_fields { + game_index: Int + generation_id: Int + id: Int + item_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_itemgameindex" +""" +input pokemon_v2_itemgameindex_sum_order_by { + game_index: order_by + generation_id: order_by + id: order_by + item_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_itemgameindex_var_pop_fields { + game_index: Float + generation_id: Float + id: Float + item_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_itemgameindex" +""" +input pokemon_v2_itemgameindex_var_pop_order_by { + game_index: order_by + generation_id: order_by + id: order_by + item_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_itemgameindex_var_samp_fields { + game_index: Float + generation_id: Float + id: Float + item_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_itemgameindex" +""" +input pokemon_v2_itemgameindex_var_samp_order_by { + game_index: order_by + generation_id: order_by + id: order_by + item_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_itemgameindex_variance_fields { + game_index: Float + generation_id: Float + id: Float + item_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_itemgameindex" +""" +input pokemon_v2_itemgameindex_variance_order_by { + game_index: order_by + generation_id: order_by + id: order_by + item_id: order_by +} + +""" +columns and relationships of "pokemon_v2_itemname" +""" +type pokemon_v2_itemname { + id: Int! + item_id: Int + language_id: Int + name: String! + + """An object relationship""" + pokemon_v2_item: pokemon_v2_item + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language +} + +""" +aggregated selection of "pokemon_v2_itemname" +""" +type pokemon_v2_itemname_aggregate { + aggregate: pokemon_v2_itemname_aggregate_fields + nodes: [pokemon_v2_itemname!]! +} + +input pokemon_v2_itemname_aggregate_bool_exp { + count: pokemon_v2_itemname_aggregate_bool_exp_count +} + +input pokemon_v2_itemname_aggregate_bool_exp_count { + arguments: [pokemon_v2_itemname_select_column!] + distinct: Boolean + filter: pokemon_v2_itemname_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_itemname" +""" +type pokemon_v2_itemname_aggregate_fields { + avg: pokemon_v2_itemname_avg_fields + count(columns: [pokemon_v2_itemname_select_column!], distinct: Boolean): Int! + max: pokemon_v2_itemname_max_fields + min: pokemon_v2_itemname_min_fields + stddev: pokemon_v2_itemname_stddev_fields + stddev_pop: pokemon_v2_itemname_stddev_pop_fields + stddev_samp: pokemon_v2_itemname_stddev_samp_fields + sum: pokemon_v2_itemname_sum_fields + var_pop: pokemon_v2_itemname_var_pop_fields + var_samp: pokemon_v2_itemname_var_samp_fields + variance: pokemon_v2_itemname_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_itemname" +""" +input pokemon_v2_itemname_aggregate_order_by { + avg: pokemon_v2_itemname_avg_order_by + count: order_by + max: pokemon_v2_itemname_max_order_by + min: pokemon_v2_itemname_min_order_by + stddev: pokemon_v2_itemname_stddev_order_by + stddev_pop: pokemon_v2_itemname_stddev_pop_order_by + stddev_samp: pokemon_v2_itemname_stddev_samp_order_by + sum: pokemon_v2_itemname_sum_order_by + var_pop: pokemon_v2_itemname_var_pop_order_by + var_samp: pokemon_v2_itemname_var_samp_order_by + variance: pokemon_v2_itemname_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_itemname_avg_fields { + id: Float + item_id: Float + language_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_itemname" +""" +input pokemon_v2_itemname_avg_order_by { + id: order_by + item_id: order_by + language_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_itemname". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_itemname_bool_exp { + _and: [pokemon_v2_itemname_bool_exp!] + _not: pokemon_v2_itemname_bool_exp + _or: [pokemon_v2_itemname_bool_exp!] + id: Int_comparison_exp + item_id: Int_comparison_exp + language_id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_item: pokemon_v2_item_bool_exp + pokemon_v2_language: pokemon_v2_language_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_itemname_max_fields { + id: Int + item_id: Int + language_id: Int + name: String +} + +""" +order by max() on columns of table "pokemon_v2_itemname" +""" +input pokemon_v2_itemname_max_order_by { + id: order_by + item_id: order_by + language_id: order_by + name: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_itemname_min_fields { + id: Int + item_id: Int + language_id: Int + name: String +} + +""" +order by min() on columns of table "pokemon_v2_itemname" +""" +input pokemon_v2_itemname_min_order_by { + id: order_by + item_id: order_by + language_id: order_by + name: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_itemname".""" +input pokemon_v2_itemname_order_by { + id: order_by + item_id: order_by + language_id: order_by + name: order_by + pokemon_v2_item: pokemon_v2_item_order_by + pokemon_v2_language: pokemon_v2_language_order_by +} + +""" +select columns of table "pokemon_v2_itemname" +""" +enum pokemon_v2_itemname_select_column { + """column name""" + id + + """column name""" + item_id + + """column name""" + language_id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_itemname_stddev_fields { + id: Float + item_id: Float + language_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_itemname" +""" +input pokemon_v2_itemname_stddev_order_by { + id: order_by + item_id: order_by + language_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_itemname_stddev_pop_fields { + id: Float + item_id: Float + language_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_itemname" +""" +input pokemon_v2_itemname_stddev_pop_order_by { + id: order_by + item_id: order_by + language_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_itemname_stddev_samp_fields { + id: Float + item_id: Float + language_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_itemname" +""" +input pokemon_v2_itemname_stddev_samp_order_by { + id: order_by + item_id: order_by + language_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_itemname" +""" +input pokemon_v2_itemname_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_itemname_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_itemname_stream_cursor_value_input { + id: Int + item_id: Int + language_id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_itemname_sum_fields { + id: Int + item_id: Int + language_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_itemname" +""" +input pokemon_v2_itemname_sum_order_by { + id: order_by + item_id: order_by + language_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_itemname_var_pop_fields { + id: Float + item_id: Float + language_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_itemname" +""" +input pokemon_v2_itemname_var_pop_order_by { + id: order_by + item_id: order_by + language_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_itemname_var_samp_fields { + id: Float + item_id: Float + language_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_itemname" +""" +input pokemon_v2_itemname_var_samp_order_by { + id: order_by + item_id: order_by + language_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_itemname_variance_fields { + id: Float + item_id: Float + language_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_itemname" +""" +input pokemon_v2_itemname_variance_order_by { + id: order_by + item_id: order_by + language_id: order_by +} + +""" +columns and relationships of "pokemon_v2_itempocket" +""" +type pokemon_v2_itempocket { + id: Int! + name: String! + + """An array relationship""" + pokemon_v2_itemcategories( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemcategory_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemcategory_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemcategory_bool_exp + ): [pokemon_v2_itemcategory!]! + + """An aggregate relationship""" + pokemon_v2_itemcategories_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemcategory_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemcategory_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemcategory_bool_exp + ): pokemon_v2_itemcategory_aggregate! + + """An array relationship""" + pokemon_v2_itempocketnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_itempocketname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itempocketname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itempocketname_bool_exp + ): [pokemon_v2_itempocketname!]! + + """An aggregate relationship""" + pokemon_v2_itempocketnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itempocketname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itempocketname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itempocketname_bool_exp + ): pokemon_v2_itempocketname_aggregate! +} + +""" +aggregated selection of "pokemon_v2_itempocket" +""" +type pokemon_v2_itempocket_aggregate { + aggregate: pokemon_v2_itempocket_aggregate_fields + nodes: [pokemon_v2_itempocket!]! +} + +""" +aggregate fields of "pokemon_v2_itempocket" +""" +type pokemon_v2_itempocket_aggregate_fields { + avg: pokemon_v2_itempocket_avg_fields + count(columns: [pokemon_v2_itempocket_select_column!], distinct: Boolean): Int! + max: pokemon_v2_itempocket_max_fields + min: pokemon_v2_itempocket_min_fields + stddev: pokemon_v2_itempocket_stddev_fields + stddev_pop: pokemon_v2_itempocket_stddev_pop_fields + stddev_samp: pokemon_v2_itempocket_stddev_samp_fields + sum: pokemon_v2_itempocket_sum_fields + var_pop: pokemon_v2_itempocket_var_pop_fields + var_samp: pokemon_v2_itempocket_var_samp_fields + variance: pokemon_v2_itempocket_variance_fields +} + +"""aggregate avg on columns""" +type pokemon_v2_itempocket_avg_fields { + id: Float +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_itempocket". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_itempocket_bool_exp { + _and: [pokemon_v2_itempocket_bool_exp!] + _not: pokemon_v2_itempocket_bool_exp + _or: [pokemon_v2_itempocket_bool_exp!] + id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_itemcategories: pokemon_v2_itemcategory_bool_exp + pokemon_v2_itemcategories_aggregate: pokemon_v2_itemcategory_aggregate_bool_exp + pokemon_v2_itempocketnames: pokemon_v2_itempocketname_bool_exp + pokemon_v2_itempocketnames_aggregate: pokemon_v2_itempocketname_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_itempocket_max_fields { + id: Int + name: String +} + +"""aggregate min on columns""" +type pokemon_v2_itempocket_min_fields { + id: Int + name: String +} + +"""Ordering options when selecting data from "pokemon_v2_itempocket".""" +input pokemon_v2_itempocket_order_by { + id: order_by + name: order_by + pokemon_v2_itemcategories_aggregate: pokemon_v2_itemcategory_aggregate_order_by + pokemon_v2_itempocketnames_aggregate: pokemon_v2_itempocketname_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_itempocket" +""" +enum pokemon_v2_itempocket_select_column { + """column name""" + id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_itempocket_stddev_fields { + id: Float +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_itempocket_stddev_pop_fields { + id: Float +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_itempocket_stddev_samp_fields { + id: Float +} + +""" +Streaming cursor of the table "pokemon_v2_itempocket" +""" +input pokemon_v2_itempocket_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_itempocket_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_itempocket_stream_cursor_value_input { + id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_itempocket_sum_fields { + id: Int +} + +"""aggregate var_pop on columns""" +type pokemon_v2_itempocket_var_pop_fields { + id: Float +} + +"""aggregate var_samp on columns""" +type pokemon_v2_itempocket_var_samp_fields { + id: Float +} + +"""aggregate variance on columns""" +type pokemon_v2_itempocket_variance_fields { + id: Float +} + +""" +columns and relationships of "pokemon_v2_itempocketname" +""" +type pokemon_v2_itempocketname { + id: Int! + item_pocket_id: Int + language_id: Int + name: String! + + """An object relationship""" + pokemon_v2_itempocket: pokemon_v2_itempocket + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language +} + +""" +aggregated selection of "pokemon_v2_itempocketname" +""" +type pokemon_v2_itempocketname_aggregate { + aggregate: pokemon_v2_itempocketname_aggregate_fields + nodes: [pokemon_v2_itempocketname!]! +} + +input pokemon_v2_itempocketname_aggregate_bool_exp { + count: pokemon_v2_itempocketname_aggregate_bool_exp_count +} + +input pokemon_v2_itempocketname_aggregate_bool_exp_count { + arguments: [pokemon_v2_itempocketname_select_column!] + distinct: Boolean + filter: pokemon_v2_itempocketname_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_itempocketname" +""" +type pokemon_v2_itempocketname_aggregate_fields { + avg: pokemon_v2_itempocketname_avg_fields + count(columns: [pokemon_v2_itempocketname_select_column!], distinct: Boolean): Int! + max: pokemon_v2_itempocketname_max_fields + min: pokemon_v2_itempocketname_min_fields + stddev: pokemon_v2_itempocketname_stddev_fields + stddev_pop: pokemon_v2_itempocketname_stddev_pop_fields + stddev_samp: pokemon_v2_itempocketname_stddev_samp_fields + sum: pokemon_v2_itempocketname_sum_fields + var_pop: pokemon_v2_itempocketname_var_pop_fields + var_samp: pokemon_v2_itempocketname_var_samp_fields + variance: pokemon_v2_itempocketname_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_itempocketname" +""" +input pokemon_v2_itempocketname_aggregate_order_by { + avg: pokemon_v2_itempocketname_avg_order_by + count: order_by + max: pokemon_v2_itempocketname_max_order_by + min: pokemon_v2_itempocketname_min_order_by + stddev: pokemon_v2_itempocketname_stddev_order_by + stddev_pop: pokemon_v2_itempocketname_stddev_pop_order_by + stddev_samp: pokemon_v2_itempocketname_stddev_samp_order_by + sum: pokemon_v2_itempocketname_sum_order_by + var_pop: pokemon_v2_itempocketname_var_pop_order_by + var_samp: pokemon_v2_itempocketname_var_samp_order_by + variance: pokemon_v2_itempocketname_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_itempocketname_avg_fields { + id: Float + item_pocket_id: Float + language_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_itempocketname" +""" +input pokemon_v2_itempocketname_avg_order_by { + id: order_by + item_pocket_id: order_by + language_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_itempocketname". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_itempocketname_bool_exp { + _and: [pokemon_v2_itempocketname_bool_exp!] + _not: pokemon_v2_itempocketname_bool_exp + _or: [pokemon_v2_itempocketname_bool_exp!] + id: Int_comparison_exp + item_pocket_id: Int_comparison_exp + language_id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_itempocket: pokemon_v2_itempocket_bool_exp + pokemon_v2_language: pokemon_v2_language_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_itempocketname_max_fields { + id: Int + item_pocket_id: Int + language_id: Int + name: String +} + +""" +order by max() on columns of table "pokemon_v2_itempocketname" +""" +input pokemon_v2_itempocketname_max_order_by { + id: order_by + item_pocket_id: order_by + language_id: order_by + name: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_itempocketname_min_fields { + id: Int + item_pocket_id: Int + language_id: Int + name: String +} + +""" +order by min() on columns of table "pokemon_v2_itempocketname" +""" +input pokemon_v2_itempocketname_min_order_by { + id: order_by + item_pocket_id: order_by + language_id: order_by + name: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_itempocketname".""" +input pokemon_v2_itempocketname_order_by { + id: order_by + item_pocket_id: order_by + language_id: order_by + name: order_by + pokemon_v2_itempocket: pokemon_v2_itempocket_order_by + pokemon_v2_language: pokemon_v2_language_order_by +} + +""" +select columns of table "pokemon_v2_itempocketname" +""" +enum pokemon_v2_itempocketname_select_column { + """column name""" + id + + """column name""" + item_pocket_id + + """column name""" + language_id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_itempocketname_stddev_fields { + id: Float + item_pocket_id: Float + language_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_itempocketname" +""" +input pokemon_v2_itempocketname_stddev_order_by { + id: order_by + item_pocket_id: order_by + language_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_itempocketname_stddev_pop_fields { + id: Float + item_pocket_id: Float + language_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_itempocketname" +""" +input pokemon_v2_itempocketname_stddev_pop_order_by { + id: order_by + item_pocket_id: order_by + language_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_itempocketname_stddev_samp_fields { + id: Float + item_pocket_id: Float + language_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_itempocketname" +""" +input pokemon_v2_itempocketname_stddev_samp_order_by { + id: order_by + item_pocket_id: order_by + language_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_itempocketname" +""" +input pokemon_v2_itempocketname_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_itempocketname_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_itempocketname_stream_cursor_value_input { + id: Int + item_pocket_id: Int + language_id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_itempocketname_sum_fields { + id: Int + item_pocket_id: Int + language_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_itempocketname" +""" +input pokemon_v2_itempocketname_sum_order_by { + id: order_by + item_pocket_id: order_by + language_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_itempocketname_var_pop_fields { + id: Float + item_pocket_id: Float + language_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_itempocketname" +""" +input pokemon_v2_itempocketname_var_pop_order_by { + id: order_by + item_pocket_id: order_by + language_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_itempocketname_var_samp_fields { + id: Float + item_pocket_id: Float + language_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_itempocketname" +""" +input pokemon_v2_itempocketname_var_samp_order_by { + id: order_by + item_pocket_id: order_by + language_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_itempocketname_variance_fields { + id: Float + item_pocket_id: Float + language_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_itempocketname" +""" +input pokemon_v2_itempocketname_variance_order_by { + id: order_by + item_pocket_id: order_by + language_id: order_by +} + +""" +columns and relationships of "pokemon_v2_itemsprites" +""" +type pokemon_v2_itemsprites { + id: Int! + item_id: Int + + """An object relationship""" + pokemon_v2_item: pokemon_v2_item + sprites( + """JSON select path""" + path: String + ): jsonb! +} + +""" +aggregated selection of "pokemon_v2_itemsprites" +""" +type pokemon_v2_itemsprites_aggregate { + aggregate: pokemon_v2_itemsprites_aggregate_fields + nodes: [pokemon_v2_itemsprites!]! +} + +input pokemon_v2_itemsprites_aggregate_bool_exp { + count: pokemon_v2_itemsprites_aggregate_bool_exp_count +} + +input pokemon_v2_itemsprites_aggregate_bool_exp_count { + arguments: [pokemon_v2_itemsprites_select_column!] + distinct: Boolean + filter: pokemon_v2_itemsprites_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_itemsprites" +""" +type pokemon_v2_itemsprites_aggregate_fields { + avg: pokemon_v2_itemsprites_avg_fields + count(columns: [pokemon_v2_itemsprites_select_column!], distinct: Boolean): Int! + max: pokemon_v2_itemsprites_max_fields + min: pokemon_v2_itemsprites_min_fields + stddev: pokemon_v2_itemsprites_stddev_fields + stddev_pop: pokemon_v2_itemsprites_stddev_pop_fields + stddev_samp: pokemon_v2_itemsprites_stddev_samp_fields + sum: pokemon_v2_itemsprites_sum_fields + var_pop: pokemon_v2_itemsprites_var_pop_fields + var_samp: pokemon_v2_itemsprites_var_samp_fields + variance: pokemon_v2_itemsprites_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_itemsprites" +""" +input pokemon_v2_itemsprites_aggregate_order_by { + avg: pokemon_v2_itemsprites_avg_order_by + count: order_by + max: pokemon_v2_itemsprites_max_order_by + min: pokemon_v2_itemsprites_min_order_by + stddev: pokemon_v2_itemsprites_stddev_order_by + stddev_pop: pokemon_v2_itemsprites_stddev_pop_order_by + stddev_samp: pokemon_v2_itemsprites_stddev_samp_order_by + sum: pokemon_v2_itemsprites_sum_order_by + var_pop: pokemon_v2_itemsprites_var_pop_order_by + var_samp: pokemon_v2_itemsprites_var_samp_order_by + variance: pokemon_v2_itemsprites_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_itemsprites_avg_fields { + id: Float + item_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_itemsprites" +""" +input pokemon_v2_itemsprites_avg_order_by { + id: order_by + item_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_itemsprites". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_itemsprites_bool_exp { + _and: [pokemon_v2_itemsprites_bool_exp!] + _not: pokemon_v2_itemsprites_bool_exp + _or: [pokemon_v2_itemsprites_bool_exp!] + id: Int_comparison_exp + item_id: Int_comparison_exp + pokemon_v2_item: pokemon_v2_item_bool_exp + sprites: jsonb_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_itemsprites_max_fields { + id: Int + item_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_itemsprites" +""" +input pokemon_v2_itemsprites_max_order_by { + id: order_by + item_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_itemsprites_min_fields { + id: Int + item_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_itemsprites" +""" +input pokemon_v2_itemsprites_min_order_by { + id: order_by + item_id: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_itemsprites".""" +input pokemon_v2_itemsprites_order_by { + id: order_by + item_id: order_by + pokemon_v2_item: pokemon_v2_item_order_by + sprites: order_by +} + +""" +select columns of table "pokemon_v2_itemsprites" +""" +enum pokemon_v2_itemsprites_select_column { + """column name""" + id + + """column name""" + item_id + + """column name""" + sprites +} + +"""aggregate stddev on columns""" +type pokemon_v2_itemsprites_stddev_fields { + id: Float + item_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_itemsprites" +""" +input pokemon_v2_itemsprites_stddev_order_by { + id: order_by + item_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_itemsprites_stddev_pop_fields { + id: Float + item_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_itemsprites" +""" +input pokemon_v2_itemsprites_stddev_pop_order_by { + id: order_by + item_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_itemsprites_stddev_samp_fields { + id: Float + item_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_itemsprites" +""" +input pokemon_v2_itemsprites_stddev_samp_order_by { + id: order_by + item_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_itemsprites" +""" +input pokemon_v2_itemsprites_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_itemsprites_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_itemsprites_stream_cursor_value_input { + id: Int + item_id: Int + sprites: jsonb +} + +"""aggregate sum on columns""" +type pokemon_v2_itemsprites_sum_fields { + id: Int + item_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_itemsprites" +""" +input pokemon_v2_itemsprites_sum_order_by { + id: order_by + item_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_itemsprites_var_pop_fields { + id: Float + item_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_itemsprites" +""" +input pokemon_v2_itemsprites_var_pop_order_by { + id: order_by + item_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_itemsprites_var_samp_fields { + id: Float + item_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_itemsprites" +""" +input pokemon_v2_itemsprites_var_samp_order_by { + id: order_by + item_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_itemsprites_variance_fields { + id: Float + item_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_itemsprites" +""" +input pokemon_v2_itemsprites_variance_order_by { + id: order_by + item_id: order_by +} + +""" +columns and relationships of "pokemon_v2_language" +""" +type pokemon_v2_language { + id: Int! + iso3166: String! + iso639: String! + name: String! + official: Boolean! + order: Int + + """An array relationship""" + pokemonV2LanguagenamesByLocalLanguageId( + """distinct select on columns""" + distinct_on: [pokemon_v2_languagename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_languagename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_languagename_bool_exp + ): [pokemon_v2_languagename!]! + + """An aggregate relationship""" + pokemonV2LanguagenamesByLocalLanguageId_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_languagename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_languagename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_languagename_bool_exp + ): pokemon_v2_languagename_aggregate! + + """An array relationship""" + pokemon_v2_abilitychangeeffecttexts( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilitychangeeffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilitychangeeffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilitychangeeffecttext_bool_exp + ): [pokemon_v2_abilitychangeeffecttext!]! + + """An aggregate relationship""" + pokemon_v2_abilitychangeeffecttexts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilitychangeeffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilitychangeeffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilitychangeeffecttext_bool_exp + ): pokemon_v2_abilitychangeeffecttext_aggregate! + + """An array relationship""" + pokemon_v2_abilityeffecttexts( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilityeffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilityeffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilityeffecttext_bool_exp + ): [pokemon_v2_abilityeffecttext!]! + + """An aggregate relationship""" + pokemon_v2_abilityeffecttexts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilityeffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilityeffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilityeffecttext_bool_exp + ): pokemon_v2_abilityeffecttext_aggregate! + + """An array relationship""" + pokemon_v2_abilityflavortexts( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilityflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilityflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilityflavortext_bool_exp + ): [pokemon_v2_abilityflavortext!]! + + """An aggregate relationship""" + pokemon_v2_abilityflavortexts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilityflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilityflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilityflavortext_bool_exp + ): pokemon_v2_abilityflavortext_aggregate! + + """An array relationship""" + pokemon_v2_abilitynames( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilityname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilityname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilityname_bool_exp + ): [pokemon_v2_abilityname!]! + + """An aggregate relationship""" + pokemon_v2_abilitynames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilityname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilityname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilityname_bool_exp + ): pokemon_v2_abilityname_aggregate! + + """An array relationship""" + pokemon_v2_berryfirmnessnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_berryfirmnessname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berryfirmnessname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berryfirmnessname_bool_exp + ): [pokemon_v2_berryfirmnessname!]! + + """An aggregate relationship""" + pokemon_v2_berryfirmnessnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_berryfirmnessname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berryfirmnessname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berryfirmnessname_bool_exp + ): pokemon_v2_berryfirmnessname_aggregate! + + """An array relationship""" + pokemon_v2_berryflavornames( + """distinct select on columns""" + distinct_on: [pokemon_v2_berryflavorname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berryflavorname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berryflavorname_bool_exp + ): [pokemon_v2_berryflavorname!]! + + """An aggregate relationship""" + pokemon_v2_berryflavornames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_berryflavorname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berryflavorname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berryflavorname_bool_exp + ): pokemon_v2_berryflavorname_aggregate! + + """An array relationship""" + pokemon_v2_characteristicdescriptions( + """distinct select on columns""" + distinct_on: [pokemon_v2_characteristicdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_characteristicdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_characteristicdescription_bool_exp + ): [pokemon_v2_characteristicdescription!]! + + """An aggregate relationship""" + pokemon_v2_characteristicdescriptions_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_characteristicdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_characteristicdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_characteristicdescription_bool_exp + ): pokemon_v2_characteristicdescription_aggregate! + + """An array relationship""" + pokemon_v2_contesteffecteffecttexts( + """distinct select on columns""" + distinct_on: [pokemon_v2_contesteffecteffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contesteffecteffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contesteffecteffecttext_bool_exp + ): [pokemon_v2_contesteffecteffecttext!]! + + """An aggregate relationship""" + pokemon_v2_contesteffecteffecttexts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_contesteffecteffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contesteffecteffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contesteffecteffecttext_bool_exp + ): pokemon_v2_contesteffecteffecttext_aggregate! + + """An array relationship""" + pokemon_v2_contesteffectflavortexts( + """distinct select on columns""" + distinct_on: [pokemon_v2_contesteffectflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contesteffectflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contesteffectflavortext_bool_exp + ): [pokemon_v2_contesteffectflavortext!]! + + """An aggregate relationship""" + pokemon_v2_contesteffectflavortexts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_contesteffectflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contesteffectflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contesteffectflavortext_bool_exp + ): pokemon_v2_contesteffectflavortext_aggregate! + + """An array relationship""" + pokemon_v2_contesttypenames( + """distinct select on columns""" + distinct_on: [pokemon_v2_contesttypename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contesttypename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contesttypename_bool_exp + ): [pokemon_v2_contesttypename!]! + + """An aggregate relationship""" + pokemon_v2_contesttypenames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_contesttypename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contesttypename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contesttypename_bool_exp + ): pokemon_v2_contesttypename_aggregate! + + """An array relationship""" + pokemon_v2_egggroupnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_egggroupname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_egggroupname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_egggroupname_bool_exp + ): [pokemon_v2_egggroupname!]! + + """An aggregate relationship""" + pokemon_v2_egggroupnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_egggroupname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_egggroupname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_egggroupname_bool_exp + ): pokemon_v2_egggroupname_aggregate! + + """An array relationship""" + pokemon_v2_encounterconditionnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterconditionname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterconditionname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterconditionname_bool_exp + ): [pokemon_v2_encounterconditionname!]! + + """An aggregate relationship""" + pokemon_v2_encounterconditionnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterconditionname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterconditionname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterconditionname_bool_exp + ): pokemon_v2_encounterconditionname_aggregate! + + """An array relationship""" + pokemon_v2_encounterconditionvaluenames( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterconditionvaluename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterconditionvaluename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterconditionvaluename_bool_exp + ): [pokemon_v2_encounterconditionvaluename!]! + + """An aggregate relationship""" + pokemon_v2_encounterconditionvaluenames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterconditionvaluename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterconditionvaluename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterconditionvaluename_bool_exp + ): pokemon_v2_encounterconditionvaluename_aggregate! + + """An array relationship""" + pokemon_v2_encountermethodnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_encountermethodname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encountermethodname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encountermethodname_bool_exp + ): [pokemon_v2_encountermethodname!]! + + """An aggregate relationship""" + pokemon_v2_encountermethodnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_encountermethodname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encountermethodname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encountermethodname_bool_exp + ): pokemon_v2_encountermethodname_aggregate! + + """An array relationship""" + pokemon_v2_evolutiontriggernames( + """distinct select on columns""" + distinct_on: [pokemon_v2_evolutiontriggername_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_evolutiontriggername_order_by!] + + """filter the rows returned""" + where: pokemon_v2_evolutiontriggername_bool_exp + ): [pokemon_v2_evolutiontriggername!]! + + """An aggregate relationship""" + pokemon_v2_evolutiontriggernames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_evolutiontriggername_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_evolutiontriggername_order_by!] + + """filter the rows returned""" + where: pokemon_v2_evolutiontriggername_bool_exp + ): pokemon_v2_evolutiontriggername_aggregate! + + """An array relationship""" + pokemon_v2_generationnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_generationname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_generationname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_generationname_bool_exp + ): [pokemon_v2_generationname!]! + + """An aggregate relationship""" + pokemon_v2_generationnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_generationname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_generationname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_generationname_bool_exp + ): pokemon_v2_generationname_aggregate! + + """An array relationship""" + pokemon_v2_growthratedescriptions( + """distinct select on columns""" + distinct_on: [pokemon_v2_growthratedescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_growthratedescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_growthratedescription_bool_exp + ): [pokemon_v2_growthratedescription!]! + + """An aggregate relationship""" + pokemon_v2_growthratedescriptions_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_growthratedescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_growthratedescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_growthratedescription_bool_exp + ): pokemon_v2_growthratedescription_aggregate! + + """An array relationship""" + pokemon_v2_itemattributedescriptions( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemattributedescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemattributedescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemattributedescription_bool_exp + ): [pokemon_v2_itemattributedescription!]! + + """An aggregate relationship""" + pokemon_v2_itemattributedescriptions_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemattributedescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemattributedescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemattributedescription_bool_exp + ): pokemon_v2_itemattributedescription_aggregate! + + """An array relationship""" + pokemon_v2_itemattributenames( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemattributename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemattributename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemattributename_bool_exp + ): [pokemon_v2_itemattributename!]! + + """An aggregate relationship""" + pokemon_v2_itemattributenames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemattributename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemattributename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemattributename_bool_exp + ): pokemon_v2_itemattributename_aggregate! + + """An array relationship""" + pokemon_v2_itemcategorynames( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemcategoryname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemcategoryname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemcategoryname_bool_exp + ): [pokemon_v2_itemcategoryname!]! + + """An aggregate relationship""" + pokemon_v2_itemcategorynames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemcategoryname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemcategoryname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemcategoryname_bool_exp + ): pokemon_v2_itemcategoryname_aggregate! + + """An array relationship""" + pokemon_v2_itemeffecttexts( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemeffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemeffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemeffecttext_bool_exp + ): [pokemon_v2_itemeffecttext!]! + + """An aggregate relationship""" + pokemon_v2_itemeffecttexts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemeffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemeffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemeffecttext_bool_exp + ): pokemon_v2_itemeffecttext_aggregate! + + """An array relationship""" + pokemon_v2_itemflavortexts( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemflavortext_bool_exp + ): [pokemon_v2_itemflavortext!]! + + """An aggregate relationship""" + pokemon_v2_itemflavortexts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemflavortext_bool_exp + ): pokemon_v2_itemflavortext_aggregate! + + """An array relationship""" + pokemon_v2_itemflingeffecteffecttexts( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemflingeffecteffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemflingeffecteffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemflingeffecteffecttext_bool_exp + ): [pokemon_v2_itemflingeffecteffecttext!]! + + """An aggregate relationship""" + pokemon_v2_itemflingeffecteffecttexts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemflingeffecteffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemflingeffecteffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemflingeffecteffecttext_bool_exp + ): pokemon_v2_itemflingeffecteffecttext_aggregate! + + """An array relationship""" + pokemon_v2_itemnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemname_bool_exp + ): [pokemon_v2_itemname!]! + + """An aggregate relationship""" + pokemon_v2_itemnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemname_bool_exp + ): pokemon_v2_itemname_aggregate! + + """An array relationship""" + pokemon_v2_itempocketnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_itempocketname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itempocketname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itempocketname_bool_exp + ): [pokemon_v2_itempocketname!]! + + """An aggregate relationship""" + pokemon_v2_itempocketnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itempocketname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itempocketname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itempocketname_bool_exp + ): pokemon_v2_itempocketname_aggregate! + + """An array relationship""" + pokemon_v2_languagenames( + """distinct select on columns""" + distinct_on: [pokemon_v2_languagename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_languagename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_languagename_bool_exp + ): [pokemon_v2_languagename!]! + + """An aggregate relationship""" + pokemon_v2_languagenames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_languagename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_languagename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_languagename_bool_exp + ): pokemon_v2_languagename_aggregate! + + """An array relationship""" + pokemon_v2_locationareanames( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationareaname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationareaname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationareaname_bool_exp + ): [pokemon_v2_locationareaname!]! + + """An aggregate relationship""" + pokemon_v2_locationareanames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationareaname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationareaname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationareaname_bool_exp + ): pokemon_v2_locationareaname_aggregate! + + """An array relationship""" + pokemon_v2_locationnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationname_bool_exp + ): [pokemon_v2_locationname!]! + + """An aggregate relationship""" + pokemon_v2_locationnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationname_bool_exp + ): pokemon_v2_locationname_aggregate! + + """An array relationship""" + pokemon_v2_moveattributedescriptions( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveattributedescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveattributedescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveattributedescription_bool_exp + ): [pokemon_v2_moveattributedescription!]! + + """An aggregate relationship""" + pokemon_v2_moveattributedescriptions_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveattributedescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveattributedescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveattributedescription_bool_exp + ): pokemon_v2_moveattributedescription_aggregate! + + """An array relationship""" + pokemon_v2_moveattributenames( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveattributename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveattributename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveattributename_bool_exp + ): [pokemon_v2_moveattributename!]! + + """An aggregate relationship""" + pokemon_v2_moveattributenames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveattributename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveattributename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveattributename_bool_exp + ): pokemon_v2_moveattributename_aggregate! + + """An array relationship""" + pokemon_v2_movebattlestylenames( + """distinct select on columns""" + distinct_on: [pokemon_v2_movebattlestylename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movebattlestylename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movebattlestylename_bool_exp + ): [pokemon_v2_movebattlestylename!]! + + """An aggregate relationship""" + pokemon_v2_movebattlestylenames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movebattlestylename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movebattlestylename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movebattlestylename_bool_exp + ): pokemon_v2_movebattlestylename_aggregate! + + """An array relationship""" + pokemon_v2_movedamageclassdescriptions( + """distinct select on columns""" + distinct_on: [pokemon_v2_movedamageclassdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movedamageclassdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movedamageclassdescription_bool_exp + ): [pokemon_v2_movedamageclassdescription!]! + + """An aggregate relationship""" + pokemon_v2_movedamageclassdescriptions_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movedamageclassdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movedamageclassdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movedamageclassdescription_bool_exp + ): pokemon_v2_movedamageclassdescription_aggregate! + + """An array relationship""" + pokemon_v2_movedamageclassnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_movedamageclassname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movedamageclassname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movedamageclassname_bool_exp + ): [pokemon_v2_movedamageclassname!]! + + """An aggregate relationship""" + pokemon_v2_movedamageclassnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movedamageclassname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movedamageclassname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movedamageclassname_bool_exp + ): pokemon_v2_movedamageclassname_aggregate! + + """An array relationship""" + pokemon_v2_moveeffectchangeeffecttexts( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveeffectchangeeffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveeffectchangeeffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveeffectchangeeffecttext_bool_exp + ): [pokemon_v2_moveeffectchangeeffecttext!]! + + """An aggregate relationship""" + pokemon_v2_moveeffectchangeeffecttexts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveeffectchangeeffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveeffectchangeeffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveeffectchangeeffecttext_bool_exp + ): pokemon_v2_moveeffectchangeeffecttext_aggregate! + + """An array relationship""" + pokemon_v2_moveeffecteffecttexts( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveeffecteffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveeffecteffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveeffecteffecttext_bool_exp + ): [pokemon_v2_moveeffecteffecttext!]! + + """An aggregate relationship""" + pokemon_v2_moveeffecteffecttexts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveeffecteffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveeffecteffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveeffecteffecttext_bool_exp + ): pokemon_v2_moveeffecteffecttext_aggregate! + + """An array relationship""" + pokemon_v2_moveflavortexts( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveflavortext_bool_exp + ): [pokemon_v2_moveflavortext!]! + + """An aggregate relationship""" + pokemon_v2_moveflavortexts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveflavortext_bool_exp + ): pokemon_v2_moveflavortext_aggregate! + + """An array relationship""" + pokemon_v2_movelearnmethoddescriptions( + """distinct select on columns""" + distinct_on: [pokemon_v2_movelearnmethoddescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movelearnmethoddescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movelearnmethoddescription_bool_exp + ): [pokemon_v2_movelearnmethoddescription!]! + + """An aggregate relationship""" + pokemon_v2_movelearnmethoddescriptions_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movelearnmethoddescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movelearnmethoddescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movelearnmethoddescription_bool_exp + ): pokemon_v2_movelearnmethoddescription_aggregate! + + """An array relationship""" + pokemon_v2_movelearnmethodnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_movelearnmethodname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movelearnmethodname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movelearnmethodname_bool_exp + ): [pokemon_v2_movelearnmethodname!]! + + """An aggregate relationship""" + pokemon_v2_movelearnmethodnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movelearnmethodname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movelearnmethodname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movelearnmethodname_bool_exp + ): pokemon_v2_movelearnmethodname_aggregate! + + """An array relationship""" + pokemon_v2_movemetaailmentnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemetaailmentname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemetaailmentname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemetaailmentname_bool_exp + ): [pokemon_v2_movemetaailmentname!]! + + """An aggregate relationship""" + pokemon_v2_movemetaailmentnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemetaailmentname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemetaailmentname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemetaailmentname_bool_exp + ): pokemon_v2_movemetaailmentname_aggregate! + + """An array relationship""" + pokemon_v2_movemetacategorydescriptions( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemetacategorydescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemetacategorydescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemetacategorydescription_bool_exp + ): [pokemon_v2_movemetacategorydescription!]! + + """An aggregate relationship""" + pokemon_v2_movemetacategorydescriptions_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemetacategorydescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemetacategorydescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemetacategorydescription_bool_exp + ): pokemon_v2_movemetacategorydescription_aggregate! + + """An array relationship""" + pokemon_v2_movenames( + """distinct select on columns""" + distinct_on: [pokemon_v2_movename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movename_bool_exp + ): [pokemon_v2_movename!]! + + """An aggregate relationship""" + pokemon_v2_movenames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movename_bool_exp + ): pokemon_v2_movename_aggregate! + + """An array relationship""" + pokemon_v2_movetargetdescriptions( + """distinct select on columns""" + distinct_on: [pokemon_v2_movetargetdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movetargetdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movetargetdescription_bool_exp + ): [pokemon_v2_movetargetdescription!]! + + """An aggregate relationship""" + pokemon_v2_movetargetdescriptions_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movetargetdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movetargetdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movetargetdescription_bool_exp + ): pokemon_v2_movetargetdescription_aggregate! + + """An array relationship""" + pokemon_v2_movetargetnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_movetargetname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movetargetname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movetargetname_bool_exp + ): [pokemon_v2_movetargetname!]! + + """An aggregate relationship""" + pokemon_v2_movetargetnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movetargetname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movetargetname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movetargetname_bool_exp + ): pokemon_v2_movetargetname_aggregate! + + """An array relationship""" + pokemon_v2_naturenames( + """distinct select on columns""" + distinct_on: [pokemon_v2_naturename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_naturename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_naturename_bool_exp + ): [pokemon_v2_naturename!]! + + """An aggregate relationship""" + pokemon_v2_naturenames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_naturename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_naturename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_naturename_bool_exp + ): pokemon_v2_naturename_aggregate! + + """An array relationship""" + pokemon_v2_palparkareanames( + """distinct select on columns""" + distinct_on: [pokemon_v2_palparkareaname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_palparkareaname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_palparkareaname_bool_exp + ): [pokemon_v2_palparkareaname!]! + + """An aggregate relationship""" + pokemon_v2_palparkareanames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_palparkareaname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_palparkareaname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_palparkareaname_bool_exp + ): pokemon_v2_palparkareaname_aggregate! + + """An array relationship""" + pokemon_v2_pokeathlonstatnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokeathlonstatname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokeathlonstatname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokeathlonstatname_bool_exp + ): [pokemon_v2_pokeathlonstatname!]! + + """An aggregate relationship""" + pokemon_v2_pokeathlonstatnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokeathlonstatname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokeathlonstatname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokeathlonstatname_bool_exp + ): pokemon_v2_pokeathlonstatname_aggregate! + + """An array relationship""" + pokemon_v2_pokedexdescriptions( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokedexdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokedexdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokedexdescription_bool_exp + ): [pokemon_v2_pokedexdescription!]! + + """An aggregate relationship""" + pokemon_v2_pokedexdescriptions_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokedexdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokedexdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokedexdescription_bool_exp + ): pokemon_v2_pokedexdescription_aggregate! + + """An array relationship""" + pokemon_v2_pokedexnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokedexname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokedexname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokedexname_bool_exp + ): [pokemon_v2_pokedexname!]! + + """An aggregate relationship""" + pokemon_v2_pokedexnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokedexname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokedexname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokedexname_bool_exp + ): pokemon_v2_pokedexname_aggregate! + + """An array relationship""" + pokemon_v2_pokemoncolornames( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemoncolorname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemoncolorname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemoncolorname_bool_exp + ): [pokemon_v2_pokemoncolorname!]! + + """An aggregate relationship""" + pokemon_v2_pokemoncolornames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemoncolorname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemoncolorname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemoncolorname_bool_exp + ): pokemon_v2_pokemoncolorname_aggregate! + + """An array relationship""" + pokemon_v2_pokemonformnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonformname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonformname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonformname_bool_exp + ): [pokemon_v2_pokemonformname!]! + + """An aggregate relationship""" + pokemon_v2_pokemonformnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonformname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonformname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonformname_bool_exp + ): pokemon_v2_pokemonformname_aggregate! + + """An array relationship""" + pokemon_v2_pokemonhabitatnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonhabitatname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonhabitatname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonhabitatname_bool_exp + ): [pokemon_v2_pokemonhabitatname!]! + + """An aggregate relationship""" + pokemon_v2_pokemonhabitatnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonhabitatname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonhabitatname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonhabitatname_bool_exp + ): pokemon_v2_pokemonhabitatname_aggregate! + + """An array relationship""" + pokemon_v2_pokemonshapenames( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonshapename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonshapename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonshapename_bool_exp + ): [pokemon_v2_pokemonshapename!]! + + """An aggregate relationship""" + pokemon_v2_pokemonshapenames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonshapename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonshapename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonshapename_bool_exp + ): pokemon_v2_pokemonshapename_aggregate! + + """An array relationship""" + pokemon_v2_pokemonspeciesdescriptions( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspeciesdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspeciesdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspeciesdescription_bool_exp + ): [pokemon_v2_pokemonspeciesdescription!]! + + """An aggregate relationship""" + pokemon_v2_pokemonspeciesdescriptions_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspeciesdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspeciesdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspeciesdescription_bool_exp + ): pokemon_v2_pokemonspeciesdescription_aggregate! + + """An array relationship""" + pokemon_v2_pokemonspeciesflavortexts( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspeciesflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspeciesflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspeciesflavortext_bool_exp + ): [pokemon_v2_pokemonspeciesflavortext!]! + + """An aggregate relationship""" + pokemon_v2_pokemonspeciesflavortexts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspeciesflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspeciesflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspeciesflavortext_bool_exp + ): pokemon_v2_pokemonspeciesflavortext_aggregate! + + """An array relationship""" + pokemon_v2_pokemonspeciesnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspeciesname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspeciesname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspeciesname_bool_exp + ): [pokemon_v2_pokemonspeciesname!]! + + """An aggregate relationship""" + pokemon_v2_pokemonspeciesnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspeciesname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspeciesname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspeciesname_bool_exp + ): pokemon_v2_pokemonspeciesname_aggregate! + + """An array relationship""" + pokemon_v2_regionnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_regionname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_regionname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_regionname_bool_exp + ): [pokemon_v2_regionname!]! + + """An aggregate relationship""" + pokemon_v2_regionnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_regionname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_regionname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_regionname_bool_exp + ): pokemon_v2_regionname_aggregate! + + """An array relationship""" + pokemon_v2_statnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_statname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_statname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_statname_bool_exp + ): [pokemon_v2_statname!]! + + """An aggregate relationship""" + pokemon_v2_statnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_statname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_statname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_statname_bool_exp + ): pokemon_v2_statname_aggregate! + + """An array relationship""" + pokemon_v2_supercontesteffectflavortexts( + """distinct select on columns""" + distinct_on: [pokemon_v2_supercontesteffectflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_supercontesteffectflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_supercontesteffectflavortext_bool_exp + ): [pokemon_v2_supercontesteffectflavortext!]! + + """An aggregate relationship""" + pokemon_v2_supercontesteffectflavortexts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_supercontesteffectflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_supercontesteffectflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_supercontesteffectflavortext_bool_exp + ): pokemon_v2_supercontesteffectflavortext_aggregate! + + """An array relationship""" + pokemon_v2_typenames( + """distinct select on columns""" + distinct_on: [pokemon_v2_typename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_typename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_typename_bool_exp + ): [pokemon_v2_typename!]! + + """An aggregate relationship""" + pokemon_v2_typenames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_typename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_typename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_typename_bool_exp + ): pokemon_v2_typename_aggregate! + + """An array relationship""" + pokemon_v2_versionnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_versionname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_versionname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_versionname_bool_exp + ): [pokemon_v2_versionname!]! + + """An aggregate relationship""" + pokemon_v2_versionnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_versionname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_versionname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_versionname_bool_exp + ): pokemon_v2_versionname_aggregate! +} + +""" +aggregated selection of "pokemon_v2_language" +""" +type pokemon_v2_language_aggregate { + aggregate: pokemon_v2_language_aggregate_fields + nodes: [pokemon_v2_language!]! +} + +""" +aggregate fields of "pokemon_v2_language" +""" +type pokemon_v2_language_aggregate_fields { + avg: pokemon_v2_language_avg_fields + count(columns: [pokemon_v2_language_select_column!], distinct: Boolean): Int! + max: pokemon_v2_language_max_fields + min: pokemon_v2_language_min_fields + stddev: pokemon_v2_language_stddev_fields + stddev_pop: pokemon_v2_language_stddev_pop_fields + stddev_samp: pokemon_v2_language_stddev_samp_fields + sum: pokemon_v2_language_sum_fields + var_pop: pokemon_v2_language_var_pop_fields + var_samp: pokemon_v2_language_var_samp_fields + variance: pokemon_v2_language_variance_fields +} + +"""aggregate avg on columns""" +type pokemon_v2_language_avg_fields { + id: Float + order: Float +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_language". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_language_bool_exp { + _and: [pokemon_v2_language_bool_exp!] + _not: pokemon_v2_language_bool_exp + _or: [pokemon_v2_language_bool_exp!] + id: Int_comparison_exp + iso3166: String_comparison_exp + iso639: String_comparison_exp + name: String_comparison_exp + official: Boolean_comparison_exp + order: Int_comparison_exp + pokemonV2LanguagenamesByLocalLanguageId: pokemon_v2_languagename_bool_exp + pokemonV2LanguagenamesByLocalLanguageId_aggregate: pokemon_v2_languagename_aggregate_bool_exp + pokemon_v2_abilitychangeeffecttexts: pokemon_v2_abilitychangeeffecttext_bool_exp + pokemon_v2_abilitychangeeffecttexts_aggregate: pokemon_v2_abilitychangeeffecttext_aggregate_bool_exp + pokemon_v2_abilityeffecttexts: pokemon_v2_abilityeffecttext_bool_exp + pokemon_v2_abilityeffecttexts_aggregate: pokemon_v2_abilityeffecttext_aggregate_bool_exp + pokemon_v2_abilityflavortexts: pokemon_v2_abilityflavortext_bool_exp + pokemon_v2_abilityflavortexts_aggregate: pokemon_v2_abilityflavortext_aggregate_bool_exp + pokemon_v2_abilitynames: pokemon_v2_abilityname_bool_exp + pokemon_v2_abilitynames_aggregate: pokemon_v2_abilityname_aggregate_bool_exp + pokemon_v2_berryfirmnessnames: pokemon_v2_berryfirmnessname_bool_exp + pokemon_v2_berryfirmnessnames_aggregate: pokemon_v2_berryfirmnessname_aggregate_bool_exp + pokemon_v2_berryflavornames: pokemon_v2_berryflavorname_bool_exp + pokemon_v2_berryflavornames_aggregate: pokemon_v2_berryflavorname_aggregate_bool_exp + pokemon_v2_characteristicdescriptions: pokemon_v2_characteristicdescription_bool_exp + pokemon_v2_characteristicdescriptions_aggregate: pokemon_v2_characteristicdescription_aggregate_bool_exp + pokemon_v2_contesteffecteffecttexts: pokemon_v2_contesteffecteffecttext_bool_exp + pokemon_v2_contesteffecteffecttexts_aggregate: pokemon_v2_contesteffecteffecttext_aggregate_bool_exp + pokemon_v2_contesteffectflavortexts: pokemon_v2_contesteffectflavortext_bool_exp + pokemon_v2_contesteffectflavortexts_aggregate: pokemon_v2_contesteffectflavortext_aggregate_bool_exp + pokemon_v2_contesttypenames: pokemon_v2_contesttypename_bool_exp + pokemon_v2_contesttypenames_aggregate: pokemon_v2_contesttypename_aggregate_bool_exp + pokemon_v2_egggroupnames: pokemon_v2_egggroupname_bool_exp + pokemon_v2_egggroupnames_aggregate: pokemon_v2_egggroupname_aggregate_bool_exp + pokemon_v2_encounterconditionnames: pokemon_v2_encounterconditionname_bool_exp + pokemon_v2_encounterconditionnames_aggregate: pokemon_v2_encounterconditionname_aggregate_bool_exp + pokemon_v2_encounterconditionvaluenames: pokemon_v2_encounterconditionvaluename_bool_exp + pokemon_v2_encounterconditionvaluenames_aggregate: pokemon_v2_encounterconditionvaluename_aggregate_bool_exp + pokemon_v2_encountermethodnames: pokemon_v2_encountermethodname_bool_exp + pokemon_v2_encountermethodnames_aggregate: pokemon_v2_encountermethodname_aggregate_bool_exp + pokemon_v2_evolutiontriggernames: pokemon_v2_evolutiontriggername_bool_exp + pokemon_v2_evolutiontriggernames_aggregate: pokemon_v2_evolutiontriggername_aggregate_bool_exp + pokemon_v2_generationnames: pokemon_v2_generationname_bool_exp + pokemon_v2_generationnames_aggregate: pokemon_v2_generationname_aggregate_bool_exp + pokemon_v2_growthratedescriptions: pokemon_v2_growthratedescription_bool_exp + pokemon_v2_growthratedescriptions_aggregate: pokemon_v2_growthratedescription_aggregate_bool_exp + pokemon_v2_itemattributedescriptions: pokemon_v2_itemattributedescription_bool_exp + pokemon_v2_itemattributedescriptions_aggregate: pokemon_v2_itemattributedescription_aggregate_bool_exp + pokemon_v2_itemattributenames: pokemon_v2_itemattributename_bool_exp + pokemon_v2_itemattributenames_aggregate: pokemon_v2_itemattributename_aggregate_bool_exp + pokemon_v2_itemcategorynames: pokemon_v2_itemcategoryname_bool_exp + pokemon_v2_itemcategorynames_aggregate: pokemon_v2_itemcategoryname_aggregate_bool_exp + pokemon_v2_itemeffecttexts: pokemon_v2_itemeffecttext_bool_exp + pokemon_v2_itemeffecttexts_aggregate: pokemon_v2_itemeffecttext_aggregate_bool_exp + pokemon_v2_itemflavortexts: pokemon_v2_itemflavortext_bool_exp + pokemon_v2_itemflavortexts_aggregate: pokemon_v2_itemflavortext_aggregate_bool_exp + pokemon_v2_itemflingeffecteffecttexts: pokemon_v2_itemflingeffecteffecttext_bool_exp + pokemon_v2_itemflingeffecteffecttexts_aggregate: pokemon_v2_itemflingeffecteffecttext_aggregate_bool_exp + pokemon_v2_itemnames: pokemon_v2_itemname_bool_exp + pokemon_v2_itemnames_aggregate: pokemon_v2_itemname_aggregate_bool_exp + pokemon_v2_itempocketnames: pokemon_v2_itempocketname_bool_exp + pokemon_v2_itempocketnames_aggregate: pokemon_v2_itempocketname_aggregate_bool_exp + pokemon_v2_languagenames: pokemon_v2_languagename_bool_exp + pokemon_v2_languagenames_aggregate: pokemon_v2_languagename_aggregate_bool_exp + pokemon_v2_locationareanames: pokemon_v2_locationareaname_bool_exp + pokemon_v2_locationareanames_aggregate: pokemon_v2_locationareaname_aggregate_bool_exp + pokemon_v2_locationnames: pokemon_v2_locationname_bool_exp + pokemon_v2_locationnames_aggregate: pokemon_v2_locationname_aggregate_bool_exp + pokemon_v2_moveattributedescriptions: pokemon_v2_moveattributedescription_bool_exp + pokemon_v2_moveattributedescriptions_aggregate: pokemon_v2_moveattributedescription_aggregate_bool_exp + pokemon_v2_moveattributenames: pokemon_v2_moveattributename_bool_exp + pokemon_v2_moveattributenames_aggregate: pokemon_v2_moveattributename_aggregate_bool_exp + pokemon_v2_movebattlestylenames: pokemon_v2_movebattlestylename_bool_exp + pokemon_v2_movebattlestylenames_aggregate: pokemon_v2_movebattlestylename_aggregate_bool_exp + pokemon_v2_movedamageclassdescriptions: pokemon_v2_movedamageclassdescription_bool_exp + pokemon_v2_movedamageclassdescriptions_aggregate: pokemon_v2_movedamageclassdescription_aggregate_bool_exp + pokemon_v2_movedamageclassnames: pokemon_v2_movedamageclassname_bool_exp + pokemon_v2_movedamageclassnames_aggregate: pokemon_v2_movedamageclassname_aggregate_bool_exp + pokemon_v2_moveeffectchangeeffecttexts: pokemon_v2_moveeffectchangeeffecttext_bool_exp + pokemon_v2_moveeffectchangeeffecttexts_aggregate: pokemon_v2_moveeffectchangeeffecttext_aggregate_bool_exp + pokemon_v2_moveeffecteffecttexts: pokemon_v2_moveeffecteffecttext_bool_exp + pokemon_v2_moveeffecteffecttexts_aggregate: pokemon_v2_moveeffecteffecttext_aggregate_bool_exp + pokemon_v2_moveflavortexts: pokemon_v2_moveflavortext_bool_exp + pokemon_v2_moveflavortexts_aggregate: pokemon_v2_moveflavortext_aggregate_bool_exp + pokemon_v2_movelearnmethoddescriptions: pokemon_v2_movelearnmethoddescription_bool_exp + pokemon_v2_movelearnmethoddescriptions_aggregate: pokemon_v2_movelearnmethoddescription_aggregate_bool_exp + pokemon_v2_movelearnmethodnames: pokemon_v2_movelearnmethodname_bool_exp + pokemon_v2_movelearnmethodnames_aggregate: pokemon_v2_movelearnmethodname_aggregate_bool_exp + pokemon_v2_movemetaailmentnames: pokemon_v2_movemetaailmentname_bool_exp + pokemon_v2_movemetaailmentnames_aggregate: pokemon_v2_movemetaailmentname_aggregate_bool_exp + pokemon_v2_movemetacategorydescriptions: pokemon_v2_movemetacategorydescription_bool_exp + pokemon_v2_movemetacategorydescriptions_aggregate: pokemon_v2_movemetacategorydescription_aggregate_bool_exp + pokemon_v2_movenames: pokemon_v2_movename_bool_exp + pokemon_v2_movenames_aggregate: pokemon_v2_movename_aggregate_bool_exp + pokemon_v2_movetargetdescriptions: pokemon_v2_movetargetdescription_bool_exp + pokemon_v2_movetargetdescriptions_aggregate: pokemon_v2_movetargetdescription_aggregate_bool_exp + pokemon_v2_movetargetnames: pokemon_v2_movetargetname_bool_exp + pokemon_v2_movetargetnames_aggregate: pokemon_v2_movetargetname_aggregate_bool_exp + pokemon_v2_naturenames: pokemon_v2_naturename_bool_exp + pokemon_v2_naturenames_aggregate: pokemon_v2_naturename_aggregate_bool_exp + pokemon_v2_palparkareanames: pokemon_v2_palparkareaname_bool_exp + pokemon_v2_palparkareanames_aggregate: pokemon_v2_palparkareaname_aggregate_bool_exp + pokemon_v2_pokeathlonstatnames: pokemon_v2_pokeathlonstatname_bool_exp + pokemon_v2_pokeathlonstatnames_aggregate: pokemon_v2_pokeathlonstatname_aggregate_bool_exp + pokemon_v2_pokedexdescriptions: pokemon_v2_pokedexdescription_bool_exp + pokemon_v2_pokedexdescriptions_aggregate: pokemon_v2_pokedexdescription_aggregate_bool_exp + pokemon_v2_pokedexnames: pokemon_v2_pokedexname_bool_exp + pokemon_v2_pokedexnames_aggregate: pokemon_v2_pokedexname_aggregate_bool_exp + pokemon_v2_pokemoncolornames: pokemon_v2_pokemoncolorname_bool_exp + pokemon_v2_pokemoncolornames_aggregate: pokemon_v2_pokemoncolorname_aggregate_bool_exp + pokemon_v2_pokemonformnames: pokemon_v2_pokemonformname_bool_exp + pokemon_v2_pokemonformnames_aggregate: pokemon_v2_pokemonformname_aggregate_bool_exp + pokemon_v2_pokemonhabitatnames: pokemon_v2_pokemonhabitatname_bool_exp + pokemon_v2_pokemonhabitatnames_aggregate: pokemon_v2_pokemonhabitatname_aggregate_bool_exp + pokemon_v2_pokemonshapenames: pokemon_v2_pokemonshapename_bool_exp + pokemon_v2_pokemonshapenames_aggregate: pokemon_v2_pokemonshapename_aggregate_bool_exp + pokemon_v2_pokemonspeciesdescriptions: pokemon_v2_pokemonspeciesdescription_bool_exp + pokemon_v2_pokemonspeciesdescriptions_aggregate: pokemon_v2_pokemonspeciesdescription_aggregate_bool_exp + pokemon_v2_pokemonspeciesflavortexts: pokemon_v2_pokemonspeciesflavortext_bool_exp + pokemon_v2_pokemonspeciesflavortexts_aggregate: pokemon_v2_pokemonspeciesflavortext_aggregate_bool_exp + pokemon_v2_pokemonspeciesnames: pokemon_v2_pokemonspeciesname_bool_exp + pokemon_v2_pokemonspeciesnames_aggregate: pokemon_v2_pokemonspeciesname_aggregate_bool_exp + pokemon_v2_regionnames: pokemon_v2_regionname_bool_exp + pokemon_v2_regionnames_aggregate: pokemon_v2_regionname_aggregate_bool_exp + pokemon_v2_statnames: pokemon_v2_statname_bool_exp + pokemon_v2_statnames_aggregate: pokemon_v2_statname_aggregate_bool_exp + pokemon_v2_supercontesteffectflavortexts: pokemon_v2_supercontesteffectflavortext_bool_exp + pokemon_v2_supercontesteffectflavortexts_aggregate: pokemon_v2_supercontesteffectflavortext_aggregate_bool_exp + pokemon_v2_typenames: pokemon_v2_typename_bool_exp + pokemon_v2_typenames_aggregate: pokemon_v2_typename_aggregate_bool_exp + pokemon_v2_versionnames: pokemon_v2_versionname_bool_exp + pokemon_v2_versionnames_aggregate: pokemon_v2_versionname_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_language_max_fields { + id: Int + iso3166: String + iso639: String + name: String + order: Int +} + +"""aggregate min on columns""" +type pokemon_v2_language_min_fields { + id: Int + iso3166: String + iso639: String + name: String + order: Int +} + +"""Ordering options when selecting data from "pokemon_v2_language".""" +input pokemon_v2_language_order_by { + id: order_by + iso3166: order_by + iso639: order_by + name: order_by + official: order_by + order: order_by + pokemonV2LanguagenamesByLocalLanguageId_aggregate: pokemon_v2_languagename_aggregate_order_by + pokemon_v2_abilitychangeeffecttexts_aggregate: pokemon_v2_abilitychangeeffecttext_aggregate_order_by + pokemon_v2_abilityeffecttexts_aggregate: pokemon_v2_abilityeffecttext_aggregate_order_by + pokemon_v2_abilityflavortexts_aggregate: pokemon_v2_abilityflavortext_aggregate_order_by + pokemon_v2_abilitynames_aggregate: pokemon_v2_abilityname_aggregate_order_by + pokemon_v2_berryfirmnessnames_aggregate: pokemon_v2_berryfirmnessname_aggregate_order_by + pokemon_v2_berryflavornames_aggregate: pokemon_v2_berryflavorname_aggregate_order_by + pokemon_v2_characteristicdescriptions_aggregate: pokemon_v2_characteristicdescription_aggregate_order_by + pokemon_v2_contesteffecteffecttexts_aggregate: pokemon_v2_contesteffecteffecttext_aggregate_order_by + pokemon_v2_contesteffectflavortexts_aggregate: pokemon_v2_contesteffectflavortext_aggregate_order_by + pokemon_v2_contesttypenames_aggregate: pokemon_v2_contesttypename_aggregate_order_by + pokemon_v2_egggroupnames_aggregate: pokemon_v2_egggroupname_aggregate_order_by + pokemon_v2_encounterconditionnames_aggregate: pokemon_v2_encounterconditionname_aggregate_order_by + pokemon_v2_encounterconditionvaluenames_aggregate: pokemon_v2_encounterconditionvaluename_aggregate_order_by + pokemon_v2_encountermethodnames_aggregate: pokemon_v2_encountermethodname_aggregate_order_by + pokemon_v2_evolutiontriggernames_aggregate: pokemon_v2_evolutiontriggername_aggregate_order_by + pokemon_v2_generationnames_aggregate: pokemon_v2_generationname_aggregate_order_by + pokemon_v2_growthratedescriptions_aggregate: pokemon_v2_growthratedescription_aggregate_order_by + pokemon_v2_itemattributedescriptions_aggregate: pokemon_v2_itemattributedescription_aggregate_order_by + pokemon_v2_itemattributenames_aggregate: pokemon_v2_itemattributename_aggregate_order_by + pokemon_v2_itemcategorynames_aggregate: pokemon_v2_itemcategoryname_aggregate_order_by + pokemon_v2_itemeffecttexts_aggregate: pokemon_v2_itemeffecttext_aggregate_order_by + pokemon_v2_itemflavortexts_aggregate: pokemon_v2_itemflavortext_aggregate_order_by + pokemon_v2_itemflingeffecteffecttexts_aggregate: pokemon_v2_itemflingeffecteffecttext_aggregate_order_by + pokemon_v2_itemnames_aggregate: pokemon_v2_itemname_aggregate_order_by + pokemon_v2_itempocketnames_aggregate: pokemon_v2_itempocketname_aggregate_order_by + pokemon_v2_languagenames_aggregate: pokemon_v2_languagename_aggregate_order_by + pokemon_v2_locationareanames_aggregate: pokemon_v2_locationareaname_aggregate_order_by + pokemon_v2_locationnames_aggregate: pokemon_v2_locationname_aggregate_order_by + pokemon_v2_moveattributedescriptions_aggregate: pokemon_v2_moveattributedescription_aggregate_order_by + pokemon_v2_moveattributenames_aggregate: pokemon_v2_moveattributename_aggregate_order_by + pokemon_v2_movebattlestylenames_aggregate: pokemon_v2_movebattlestylename_aggregate_order_by + pokemon_v2_movedamageclassdescriptions_aggregate: pokemon_v2_movedamageclassdescription_aggregate_order_by + pokemon_v2_movedamageclassnames_aggregate: pokemon_v2_movedamageclassname_aggregate_order_by + pokemon_v2_moveeffectchangeeffecttexts_aggregate: pokemon_v2_moveeffectchangeeffecttext_aggregate_order_by + pokemon_v2_moveeffecteffecttexts_aggregate: pokemon_v2_moveeffecteffecttext_aggregate_order_by + pokemon_v2_moveflavortexts_aggregate: pokemon_v2_moveflavortext_aggregate_order_by + pokemon_v2_movelearnmethoddescriptions_aggregate: pokemon_v2_movelearnmethoddescription_aggregate_order_by + pokemon_v2_movelearnmethodnames_aggregate: pokemon_v2_movelearnmethodname_aggregate_order_by + pokemon_v2_movemetaailmentnames_aggregate: pokemon_v2_movemetaailmentname_aggregate_order_by + pokemon_v2_movemetacategorydescriptions_aggregate: pokemon_v2_movemetacategorydescription_aggregate_order_by + pokemon_v2_movenames_aggregate: pokemon_v2_movename_aggregate_order_by + pokemon_v2_movetargetdescriptions_aggregate: pokemon_v2_movetargetdescription_aggregate_order_by + pokemon_v2_movetargetnames_aggregate: pokemon_v2_movetargetname_aggregate_order_by + pokemon_v2_naturenames_aggregate: pokemon_v2_naturename_aggregate_order_by + pokemon_v2_palparkareanames_aggregate: pokemon_v2_palparkareaname_aggregate_order_by + pokemon_v2_pokeathlonstatnames_aggregate: pokemon_v2_pokeathlonstatname_aggregate_order_by + pokemon_v2_pokedexdescriptions_aggregate: pokemon_v2_pokedexdescription_aggregate_order_by + pokemon_v2_pokedexnames_aggregate: pokemon_v2_pokedexname_aggregate_order_by + pokemon_v2_pokemoncolornames_aggregate: pokemon_v2_pokemoncolorname_aggregate_order_by + pokemon_v2_pokemonformnames_aggregate: pokemon_v2_pokemonformname_aggregate_order_by + pokemon_v2_pokemonhabitatnames_aggregate: pokemon_v2_pokemonhabitatname_aggregate_order_by + pokemon_v2_pokemonshapenames_aggregate: pokemon_v2_pokemonshapename_aggregate_order_by + pokemon_v2_pokemonspeciesdescriptions_aggregate: pokemon_v2_pokemonspeciesdescription_aggregate_order_by + pokemon_v2_pokemonspeciesflavortexts_aggregate: pokemon_v2_pokemonspeciesflavortext_aggregate_order_by + pokemon_v2_pokemonspeciesnames_aggregate: pokemon_v2_pokemonspeciesname_aggregate_order_by + pokemon_v2_regionnames_aggregate: pokemon_v2_regionname_aggregate_order_by + pokemon_v2_statnames_aggregate: pokemon_v2_statname_aggregate_order_by + pokemon_v2_supercontesteffectflavortexts_aggregate: pokemon_v2_supercontesteffectflavortext_aggregate_order_by + pokemon_v2_typenames_aggregate: pokemon_v2_typename_aggregate_order_by + pokemon_v2_versionnames_aggregate: pokemon_v2_versionname_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_language" +""" +enum pokemon_v2_language_select_column { + """column name""" + id + + """column name""" + iso3166 + + """column name""" + iso639 + + """column name""" + name + + """column name""" + official + + """column name""" + order +} + +"""aggregate stddev on columns""" +type pokemon_v2_language_stddev_fields { + id: Float + order: Float +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_language_stddev_pop_fields { + id: Float + order: Float +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_language_stddev_samp_fields { + id: Float + order: Float +} + +""" +Streaming cursor of the table "pokemon_v2_language" +""" +input pokemon_v2_language_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_language_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_language_stream_cursor_value_input { + id: Int + iso3166: String + iso639: String + name: String + official: Boolean + order: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_language_sum_fields { + id: Int + order: Int +} + +"""aggregate var_pop on columns""" +type pokemon_v2_language_var_pop_fields { + id: Float + order: Float +} + +"""aggregate var_samp on columns""" +type pokemon_v2_language_var_samp_fields { + id: Float + order: Float +} + +"""aggregate variance on columns""" +type pokemon_v2_language_variance_fields { + id: Float + order: Float +} + +""" +columns and relationships of "pokemon_v2_languagename" +""" +type pokemon_v2_languagename { + id: Int! + language_id: Int + local_language_id: Int + name: String! + + """An object relationship""" + pokemonV2LanguageByLocalLanguageId: pokemon_v2_language + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language +} + +""" +aggregated selection of "pokemon_v2_languagename" +""" +type pokemon_v2_languagename_aggregate { + aggregate: pokemon_v2_languagename_aggregate_fields + nodes: [pokemon_v2_languagename!]! +} + +input pokemon_v2_languagename_aggregate_bool_exp { + count: pokemon_v2_languagename_aggregate_bool_exp_count +} + +input pokemon_v2_languagename_aggregate_bool_exp_count { + arguments: [pokemon_v2_languagename_select_column!] + distinct: Boolean + filter: pokemon_v2_languagename_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_languagename" +""" +type pokemon_v2_languagename_aggregate_fields { + avg: pokemon_v2_languagename_avg_fields + count(columns: [pokemon_v2_languagename_select_column!], distinct: Boolean): Int! + max: pokemon_v2_languagename_max_fields + min: pokemon_v2_languagename_min_fields + stddev: pokemon_v2_languagename_stddev_fields + stddev_pop: pokemon_v2_languagename_stddev_pop_fields + stddev_samp: pokemon_v2_languagename_stddev_samp_fields + sum: pokemon_v2_languagename_sum_fields + var_pop: pokemon_v2_languagename_var_pop_fields + var_samp: pokemon_v2_languagename_var_samp_fields + variance: pokemon_v2_languagename_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_languagename" +""" +input pokemon_v2_languagename_aggregate_order_by { + avg: pokemon_v2_languagename_avg_order_by + count: order_by + max: pokemon_v2_languagename_max_order_by + min: pokemon_v2_languagename_min_order_by + stddev: pokemon_v2_languagename_stddev_order_by + stddev_pop: pokemon_v2_languagename_stddev_pop_order_by + stddev_samp: pokemon_v2_languagename_stddev_samp_order_by + sum: pokemon_v2_languagename_sum_order_by + var_pop: pokemon_v2_languagename_var_pop_order_by + var_samp: pokemon_v2_languagename_var_samp_order_by + variance: pokemon_v2_languagename_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_languagename_avg_fields { + id: Float + language_id: Float + local_language_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_languagename" +""" +input pokemon_v2_languagename_avg_order_by { + id: order_by + language_id: order_by + local_language_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_languagename". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_languagename_bool_exp { + _and: [pokemon_v2_languagename_bool_exp!] + _not: pokemon_v2_languagename_bool_exp + _or: [pokemon_v2_languagename_bool_exp!] + id: Int_comparison_exp + language_id: Int_comparison_exp + local_language_id: Int_comparison_exp + name: String_comparison_exp + pokemonV2LanguageByLocalLanguageId: pokemon_v2_language_bool_exp + pokemon_v2_language: pokemon_v2_language_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_languagename_max_fields { + id: Int + language_id: Int + local_language_id: Int + name: String +} + +""" +order by max() on columns of table "pokemon_v2_languagename" +""" +input pokemon_v2_languagename_max_order_by { + id: order_by + language_id: order_by + local_language_id: order_by + name: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_languagename_min_fields { + id: Int + language_id: Int + local_language_id: Int + name: String +} + +""" +order by min() on columns of table "pokemon_v2_languagename" +""" +input pokemon_v2_languagename_min_order_by { + id: order_by + language_id: order_by + local_language_id: order_by + name: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_languagename".""" +input pokemon_v2_languagename_order_by { + id: order_by + language_id: order_by + local_language_id: order_by + name: order_by + pokemonV2LanguageByLocalLanguageId: pokemon_v2_language_order_by + pokemon_v2_language: pokemon_v2_language_order_by +} + +""" +select columns of table "pokemon_v2_languagename" +""" +enum pokemon_v2_languagename_select_column { + """column name""" + id + + """column name""" + language_id + + """column name""" + local_language_id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_languagename_stddev_fields { + id: Float + language_id: Float + local_language_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_languagename" +""" +input pokemon_v2_languagename_stddev_order_by { + id: order_by + language_id: order_by + local_language_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_languagename_stddev_pop_fields { + id: Float + language_id: Float + local_language_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_languagename" +""" +input pokemon_v2_languagename_stddev_pop_order_by { + id: order_by + language_id: order_by + local_language_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_languagename_stddev_samp_fields { + id: Float + language_id: Float + local_language_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_languagename" +""" +input pokemon_v2_languagename_stddev_samp_order_by { + id: order_by + language_id: order_by + local_language_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_languagename" +""" +input pokemon_v2_languagename_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_languagename_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_languagename_stream_cursor_value_input { + id: Int + language_id: Int + local_language_id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_languagename_sum_fields { + id: Int + language_id: Int + local_language_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_languagename" +""" +input pokemon_v2_languagename_sum_order_by { + id: order_by + language_id: order_by + local_language_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_languagename_var_pop_fields { + id: Float + language_id: Float + local_language_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_languagename" +""" +input pokemon_v2_languagename_var_pop_order_by { + id: order_by + language_id: order_by + local_language_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_languagename_var_samp_fields { + id: Float + language_id: Float + local_language_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_languagename" +""" +input pokemon_v2_languagename_var_samp_order_by { + id: order_by + language_id: order_by + local_language_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_languagename_variance_fields { + id: Float + language_id: Float + local_language_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_languagename" +""" +input pokemon_v2_languagename_variance_order_by { + id: order_by + language_id: order_by + local_language_id: order_by +} + +""" +columns and relationships of "pokemon_v2_location" +""" +type pokemon_v2_location { + id: Int! + name: String! + + """An array relationship""" + pokemon_v2_locationareas( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationarea_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationarea_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationarea_bool_exp + ): [pokemon_v2_locationarea!]! + + """An aggregate relationship""" + pokemon_v2_locationareas_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationarea_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationarea_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationarea_bool_exp + ): pokemon_v2_locationarea_aggregate! + + """An array relationship""" + pokemon_v2_locationgameindices( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationgameindex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationgameindex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationgameindex_bool_exp + ): [pokemon_v2_locationgameindex!]! + + """An aggregate relationship""" + pokemon_v2_locationgameindices_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationgameindex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationgameindex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationgameindex_bool_exp + ): pokemon_v2_locationgameindex_aggregate! + + """An array relationship""" + pokemon_v2_locationnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationname_bool_exp + ): [pokemon_v2_locationname!]! + + """An aggregate relationship""" + pokemon_v2_locationnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationname_bool_exp + ): pokemon_v2_locationname_aggregate! + + """An array relationship""" + pokemon_v2_pokemonevolutions( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonevolution_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonevolution_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonevolution_bool_exp + ): [pokemon_v2_pokemonevolution!]! + + """An aggregate relationship""" + pokemon_v2_pokemonevolutions_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonevolution_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonevolution_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonevolution_bool_exp + ): pokemon_v2_pokemonevolution_aggregate! + + """An object relationship""" + pokemon_v2_region: pokemon_v2_region + region_id: Int +} + +""" +aggregated selection of "pokemon_v2_location" +""" +type pokemon_v2_location_aggregate { + aggregate: pokemon_v2_location_aggregate_fields + nodes: [pokemon_v2_location!]! +} + +input pokemon_v2_location_aggregate_bool_exp { + count: pokemon_v2_location_aggregate_bool_exp_count +} + +input pokemon_v2_location_aggregate_bool_exp_count { + arguments: [pokemon_v2_location_select_column!] + distinct: Boolean + filter: pokemon_v2_location_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_location" +""" +type pokemon_v2_location_aggregate_fields { + avg: pokemon_v2_location_avg_fields + count(columns: [pokemon_v2_location_select_column!], distinct: Boolean): Int! + max: pokemon_v2_location_max_fields + min: pokemon_v2_location_min_fields + stddev: pokemon_v2_location_stddev_fields + stddev_pop: pokemon_v2_location_stddev_pop_fields + stddev_samp: pokemon_v2_location_stddev_samp_fields + sum: pokemon_v2_location_sum_fields + var_pop: pokemon_v2_location_var_pop_fields + var_samp: pokemon_v2_location_var_samp_fields + variance: pokemon_v2_location_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_location" +""" +input pokemon_v2_location_aggregate_order_by { + avg: pokemon_v2_location_avg_order_by + count: order_by + max: pokemon_v2_location_max_order_by + min: pokemon_v2_location_min_order_by + stddev: pokemon_v2_location_stddev_order_by + stddev_pop: pokemon_v2_location_stddev_pop_order_by + stddev_samp: pokemon_v2_location_stddev_samp_order_by + sum: pokemon_v2_location_sum_order_by + var_pop: pokemon_v2_location_var_pop_order_by + var_samp: pokemon_v2_location_var_samp_order_by + variance: pokemon_v2_location_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_location_avg_fields { + id: Float + region_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_location" +""" +input pokemon_v2_location_avg_order_by { + id: order_by + region_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_location". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_location_bool_exp { + _and: [pokemon_v2_location_bool_exp!] + _not: pokemon_v2_location_bool_exp + _or: [pokemon_v2_location_bool_exp!] + id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_locationareas: pokemon_v2_locationarea_bool_exp + pokemon_v2_locationareas_aggregate: pokemon_v2_locationarea_aggregate_bool_exp + pokemon_v2_locationgameindices: pokemon_v2_locationgameindex_bool_exp + pokemon_v2_locationgameindices_aggregate: pokemon_v2_locationgameindex_aggregate_bool_exp + pokemon_v2_locationnames: pokemon_v2_locationname_bool_exp + pokemon_v2_locationnames_aggregate: pokemon_v2_locationname_aggregate_bool_exp + pokemon_v2_pokemonevolutions: pokemon_v2_pokemonevolution_bool_exp + pokemon_v2_pokemonevolutions_aggregate: pokemon_v2_pokemonevolution_aggregate_bool_exp + pokemon_v2_region: pokemon_v2_region_bool_exp + region_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_location_max_fields { + id: Int + name: String + region_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_location" +""" +input pokemon_v2_location_max_order_by { + id: order_by + name: order_by + region_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_location_min_fields { + id: Int + name: String + region_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_location" +""" +input pokemon_v2_location_min_order_by { + id: order_by + name: order_by + region_id: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_location".""" +input pokemon_v2_location_order_by { + id: order_by + name: order_by + pokemon_v2_locationareas_aggregate: pokemon_v2_locationarea_aggregate_order_by + pokemon_v2_locationgameindices_aggregate: pokemon_v2_locationgameindex_aggregate_order_by + pokemon_v2_locationnames_aggregate: pokemon_v2_locationname_aggregate_order_by + pokemon_v2_pokemonevolutions_aggregate: pokemon_v2_pokemonevolution_aggregate_order_by + pokemon_v2_region: pokemon_v2_region_order_by + region_id: order_by +} + +""" +select columns of table "pokemon_v2_location" +""" +enum pokemon_v2_location_select_column { + """column name""" + id + + """column name""" + name + + """column name""" + region_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_location_stddev_fields { + id: Float + region_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_location" +""" +input pokemon_v2_location_stddev_order_by { + id: order_by + region_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_location_stddev_pop_fields { + id: Float + region_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_location" +""" +input pokemon_v2_location_stddev_pop_order_by { + id: order_by + region_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_location_stddev_samp_fields { + id: Float + region_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_location" +""" +input pokemon_v2_location_stddev_samp_order_by { + id: order_by + region_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_location" +""" +input pokemon_v2_location_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_location_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_location_stream_cursor_value_input { + id: Int + name: String + region_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_location_sum_fields { + id: Int + region_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_location" +""" +input pokemon_v2_location_sum_order_by { + id: order_by + region_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_location_var_pop_fields { + id: Float + region_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_location" +""" +input pokemon_v2_location_var_pop_order_by { + id: order_by + region_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_location_var_samp_fields { + id: Float + region_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_location" +""" +input pokemon_v2_location_var_samp_order_by { + id: order_by + region_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_location_variance_fields { + id: Float + region_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_location" +""" +input pokemon_v2_location_variance_order_by { + id: order_by + region_id: order_by +} + +""" +columns and relationships of "pokemon_v2_locationarea" +""" +type pokemon_v2_locationarea { + game_index: Int! + id: Int! + location_id: Int + name: String! + + """An array relationship""" + pokemon_v2_encounters( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounter_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounter_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounter_bool_exp + ): [pokemon_v2_encounter!]! + + """An aggregate relationship""" + pokemon_v2_encounters_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounter_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounter_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounter_bool_exp + ): pokemon_v2_encounter_aggregate! + + """An object relationship""" + pokemon_v2_location: pokemon_v2_location + + """An array relationship""" + pokemon_v2_locationareaencounterrates( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationareaencounterrate_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationareaencounterrate_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationareaencounterrate_bool_exp + ): [pokemon_v2_locationareaencounterrate!]! + + """An aggregate relationship""" + pokemon_v2_locationareaencounterrates_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationareaencounterrate_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationareaencounterrate_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationareaencounterrate_bool_exp + ): pokemon_v2_locationareaencounterrate_aggregate! + + """An array relationship""" + pokemon_v2_locationareanames( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationareaname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationareaname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationareaname_bool_exp + ): [pokemon_v2_locationareaname!]! + + """An aggregate relationship""" + pokemon_v2_locationareanames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationareaname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationareaname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationareaname_bool_exp + ): pokemon_v2_locationareaname_aggregate! +} + +""" +aggregated selection of "pokemon_v2_locationarea" +""" +type pokemon_v2_locationarea_aggregate { + aggregate: pokemon_v2_locationarea_aggregate_fields + nodes: [pokemon_v2_locationarea!]! +} + +input pokemon_v2_locationarea_aggregate_bool_exp { + count: pokemon_v2_locationarea_aggregate_bool_exp_count +} + +input pokemon_v2_locationarea_aggregate_bool_exp_count { + arguments: [pokemon_v2_locationarea_select_column!] + distinct: Boolean + filter: pokemon_v2_locationarea_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_locationarea" +""" +type pokemon_v2_locationarea_aggregate_fields { + avg: pokemon_v2_locationarea_avg_fields + count(columns: [pokemon_v2_locationarea_select_column!], distinct: Boolean): Int! + max: pokemon_v2_locationarea_max_fields + min: pokemon_v2_locationarea_min_fields + stddev: pokemon_v2_locationarea_stddev_fields + stddev_pop: pokemon_v2_locationarea_stddev_pop_fields + stddev_samp: pokemon_v2_locationarea_stddev_samp_fields + sum: pokemon_v2_locationarea_sum_fields + var_pop: pokemon_v2_locationarea_var_pop_fields + var_samp: pokemon_v2_locationarea_var_samp_fields + variance: pokemon_v2_locationarea_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_locationarea" +""" +input pokemon_v2_locationarea_aggregate_order_by { + avg: pokemon_v2_locationarea_avg_order_by + count: order_by + max: pokemon_v2_locationarea_max_order_by + min: pokemon_v2_locationarea_min_order_by + stddev: pokemon_v2_locationarea_stddev_order_by + stddev_pop: pokemon_v2_locationarea_stddev_pop_order_by + stddev_samp: pokemon_v2_locationarea_stddev_samp_order_by + sum: pokemon_v2_locationarea_sum_order_by + var_pop: pokemon_v2_locationarea_var_pop_order_by + var_samp: pokemon_v2_locationarea_var_samp_order_by + variance: pokemon_v2_locationarea_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_locationarea_avg_fields { + game_index: Float + id: Float + location_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_locationarea" +""" +input pokemon_v2_locationarea_avg_order_by { + game_index: order_by + id: order_by + location_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_locationarea". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_locationarea_bool_exp { + _and: [pokemon_v2_locationarea_bool_exp!] + _not: pokemon_v2_locationarea_bool_exp + _or: [pokemon_v2_locationarea_bool_exp!] + game_index: Int_comparison_exp + id: Int_comparison_exp + location_id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_encounters: pokemon_v2_encounter_bool_exp + pokemon_v2_encounters_aggregate: pokemon_v2_encounter_aggregate_bool_exp + pokemon_v2_location: pokemon_v2_location_bool_exp + pokemon_v2_locationareaencounterrates: pokemon_v2_locationareaencounterrate_bool_exp + pokemon_v2_locationareaencounterrates_aggregate: pokemon_v2_locationareaencounterrate_aggregate_bool_exp + pokemon_v2_locationareanames: pokemon_v2_locationareaname_bool_exp + pokemon_v2_locationareanames_aggregate: pokemon_v2_locationareaname_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_locationarea_max_fields { + game_index: Int + id: Int + location_id: Int + name: String +} + +""" +order by max() on columns of table "pokemon_v2_locationarea" +""" +input pokemon_v2_locationarea_max_order_by { + game_index: order_by + id: order_by + location_id: order_by + name: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_locationarea_min_fields { + game_index: Int + id: Int + location_id: Int + name: String +} + +""" +order by min() on columns of table "pokemon_v2_locationarea" +""" +input pokemon_v2_locationarea_min_order_by { + game_index: order_by + id: order_by + location_id: order_by + name: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_locationarea".""" +input pokemon_v2_locationarea_order_by { + game_index: order_by + id: order_by + location_id: order_by + name: order_by + pokemon_v2_encounters_aggregate: pokemon_v2_encounter_aggregate_order_by + pokemon_v2_location: pokemon_v2_location_order_by + pokemon_v2_locationareaencounterrates_aggregate: pokemon_v2_locationareaencounterrate_aggregate_order_by + pokemon_v2_locationareanames_aggregate: pokemon_v2_locationareaname_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_locationarea" +""" +enum pokemon_v2_locationarea_select_column { + """column name""" + game_index + + """column name""" + id + + """column name""" + location_id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_locationarea_stddev_fields { + game_index: Float + id: Float + location_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_locationarea" +""" +input pokemon_v2_locationarea_stddev_order_by { + game_index: order_by + id: order_by + location_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_locationarea_stddev_pop_fields { + game_index: Float + id: Float + location_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_locationarea" +""" +input pokemon_v2_locationarea_stddev_pop_order_by { + game_index: order_by + id: order_by + location_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_locationarea_stddev_samp_fields { + game_index: Float + id: Float + location_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_locationarea" +""" +input pokemon_v2_locationarea_stddev_samp_order_by { + game_index: order_by + id: order_by + location_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_locationarea" +""" +input pokemon_v2_locationarea_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_locationarea_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_locationarea_stream_cursor_value_input { + game_index: Int + id: Int + location_id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_locationarea_sum_fields { + game_index: Int + id: Int + location_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_locationarea" +""" +input pokemon_v2_locationarea_sum_order_by { + game_index: order_by + id: order_by + location_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_locationarea_var_pop_fields { + game_index: Float + id: Float + location_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_locationarea" +""" +input pokemon_v2_locationarea_var_pop_order_by { + game_index: order_by + id: order_by + location_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_locationarea_var_samp_fields { + game_index: Float + id: Float + location_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_locationarea" +""" +input pokemon_v2_locationarea_var_samp_order_by { + game_index: order_by + id: order_by + location_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_locationarea_variance_fields { + game_index: Float + id: Float + location_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_locationarea" +""" +input pokemon_v2_locationarea_variance_order_by { + game_index: order_by + id: order_by + location_id: order_by +} + +""" +columns and relationships of "pokemon_v2_locationareaencounterrate" +""" +type pokemon_v2_locationareaencounterrate { + encounter_method_id: Int + id: Int! + location_area_id: Int + + """An object relationship""" + pokemon_v2_encountermethod: pokemon_v2_encountermethod + + """An object relationship""" + pokemon_v2_locationarea: pokemon_v2_locationarea + + """An object relationship""" + pokemon_v2_version: pokemon_v2_version + rate: Int! + version_id: Int +} + +""" +aggregated selection of "pokemon_v2_locationareaencounterrate" +""" +type pokemon_v2_locationareaencounterrate_aggregate { + aggregate: pokemon_v2_locationareaencounterrate_aggregate_fields + nodes: [pokemon_v2_locationareaencounterrate!]! +} + +input pokemon_v2_locationareaencounterrate_aggregate_bool_exp { + count: pokemon_v2_locationareaencounterrate_aggregate_bool_exp_count +} + +input pokemon_v2_locationareaencounterrate_aggregate_bool_exp_count { + arguments: [pokemon_v2_locationareaencounterrate_select_column!] + distinct: Boolean + filter: pokemon_v2_locationareaencounterrate_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_locationareaencounterrate" +""" +type pokemon_v2_locationareaencounterrate_aggregate_fields { + avg: pokemon_v2_locationareaencounterrate_avg_fields + count(columns: [pokemon_v2_locationareaencounterrate_select_column!], distinct: Boolean): Int! + max: pokemon_v2_locationareaencounterrate_max_fields + min: pokemon_v2_locationareaencounterrate_min_fields + stddev: pokemon_v2_locationareaencounterrate_stddev_fields + stddev_pop: pokemon_v2_locationareaencounterrate_stddev_pop_fields + stddev_samp: pokemon_v2_locationareaencounterrate_stddev_samp_fields + sum: pokemon_v2_locationareaencounterrate_sum_fields + var_pop: pokemon_v2_locationareaencounterrate_var_pop_fields + var_samp: pokemon_v2_locationareaencounterrate_var_samp_fields + variance: pokemon_v2_locationareaencounterrate_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_locationareaencounterrate" +""" +input pokemon_v2_locationareaencounterrate_aggregate_order_by { + avg: pokemon_v2_locationareaencounterrate_avg_order_by + count: order_by + max: pokemon_v2_locationareaencounterrate_max_order_by + min: pokemon_v2_locationareaencounterrate_min_order_by + stddev: pokemon_v2_locationareaencounterrate_stddev_order_by + stddev_pop: pokemon_v2_locationareaencounterrate_stddev_pop_order_by + stddev_samp: pokemon_v2_locationareaencounterrate_stddev_samp_order_by + sum: pokemon_v2_locationareaencounterrate_sum_order_by + var_pop: pokemon_v2_locationareaencounterrate_var_pop_order_by + var_samp: pokemon_v2_locationareaencounterrate_var_samp_order_by + variance: pokemon_v2_locationareaencounterrate_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_locationareaencounterrate_avg_fields { + encounter_method_id: Float + id: Float + location_area_id: Float + rate: Float + version_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_locationareaencounterrate" +""" +input pokemon_v2_locationareaencounterrate_avg_order_by { + encounter_method_id: order_by + id: order_by + location_area_id: order_by + rate: order_by + version_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_locationareaencounterrate". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_locationareaencounterrate_bool_exp { + _and: [pokemon_v2_locationareaencounterrate_bool_exp!] + _not: pokemon_v2_locationareaencounterrate_bool_exp + _or: [pokemon_v2_locationareaencounterrate_bool_exp!] + encounter_method_id: Int_comparison_exp + id: Int_comparison_exp + location_area_id: Int_comparison_exp + pokemon_v2_encountermethod: pokemon_v2_encountermethod_bool_exp + pokemon_v2_locationarea: pokemon_v2_locationarea_bool_exp + pokemon_v2_version: pokemon_v2_version_bool_exp + rate: Int_comparison_exp + version_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_locationareaencounterrate_max_fields { + encounter_method_id: Int + id: Int + location_area_id: Int + rate: Int + version_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_locationareaencounterrate" +""" +input pokemon_v2_locationareaencounterrate_max_order_by { + encounter_method_id: order_by + id: order_by + location_area_id: order_by + rate: order_by + version_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_locationareaencounterrate_min_fields { + encounter_method_id: Int + id: Int + location_area_id: Int + rate: Int + version_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_locationareaencounterrate" +""" +input pokemon_v2_locationareaencounterrate_min_order_by { + encounter_method_id: order_by + id: order_by + location_area_id: order_by + rate: order_by + version_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_locationareaencounterrate". +""" +input pokemon_v2_locationareaencounterrate_order_by { + encounter_method_id: order_by + id: order_by + location_area_id: order_by + pokemon_v2_encountermethod: pokemon_v2_encountermethod_order_by + pokemon_v2_locationarea: pokemon_v2_locationarea_order_by + pokemon_v2_version: pokemon_v2_version_order_by + rate: order_by + version_id: order_by +} + +""" +select columns of table "pokemon_v2_locationareaencounterrate" +""" +enum pokemon_v2_locationareaencounterrate_select_column { + """column name""" + encounter_method_id + + """column name""" + id + + """column name""" + location_area_id + + """column name""" + rate + + """column name""" + version_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_locationareaencounterrate_stddev_fields { + encounter_method_id: Float + id: Float + location_area_id: Float + rate: Float + version_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_locationareaencounterrate" +""" +input pokemon_v2_locationareaencounterrate_stddev_order_by { + encounter_method_id: order_by + id: order_by + location_area_id: order_by + rate: order_by + version_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_locationareaencounterrate_stddev_pop_fields { + encounter_method_id: Float + id: Float + location_area_id: Float + rate: Float + version_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_locationareaencounterrate" +""" +input pokemon_v2_locationareaencounterrate_stddev_pop_order_by { + encounter_method_id: order_by + id: order_by + location_area_id: order_by + rate: order_by + version_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_locationareaencounterrate_stddev_samp_fields { + encounter_method_id: Float + id: Float + location_area_id: Float + rate: Float + version_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_locationareaencounterrate" +""" +input pokemon_v2_locationareaencounterrate_stddev_samp_order_by { + encounter_method_id: order_by + id: order_by + location_area_id: order_by + rate: order_by + version_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_locationareaencounterrate" +""" +input pokemon_v2_locationareaencounterrate_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_locationareaencounterrate_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_locationareaencounterrate_stream_cursor_value_input { + encounter_method_id: Int + id: Int + location_area_id: Int + rate: Int + version_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_locationareaencounterrate_sum_fields { + encounter_method_id: Int + id: Int + location_area_id: Int + rate: Int + version_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_locationareaencounterrate" +""" +input pokemon_v2_locationareaencounterrate_sum_order_by { + encounter_method_id: order_by + id: order_by + location_area_id: order_by + rate: order_by + version_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_locationareaencounterrate_var_pop_fields { + encounter_method_id: Float + id: Float + location_area_id: Float + rate: Float + version_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_locationareaencounterrate" +""" +input pokemon_v2_locationareaencounterrate_var_pop_order_by { + encounter_method_id: order_by + id: order_by + location_area_id: order_by + rate: order_by + version_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_locationareaencounterrate_var_samp_fields { + encounter_method_id: Float + id: Float + location_area_id: Float + rate: Float + version_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_locationareaencounterrate" +""" +input pokemon_v2_locationareaencounterrate_var_samp_order_by { + encounter_method_id: order_by + id: order_by + location_area_id: order_by + rate: order_by + version_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_locationareaencounterrate_variance_fields { + encounter_method_id: Float + id: Float + location_area_id: Float + rate: Float + version_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_locationareaencounterrate" +""" +input pokemon_v2_locationareaencounterrate_variance_order_by { + encounter_method_id: order_by + id: order_by + location_area_id: order_by + rate: order_by + version_id: order_by +} + +""" +columns and relationships of "pokemon_v2_locationareaname" +""" +type pokemon_v2_locationareaname { + id: Int! + language_id: Int + location_area_id: Int + name: String! + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_locationarea: pokemon_v2_locationarea +} + +""" +aggregated selection of "pokemon_v2_locationareaname" +""" +type pokemon_v2_locationareaname_aggregate { + aggregate: pokemon_v2_locationareaname_aggregate_fields + nodes: [pokemon_v2_locationareaname!]! +} + +input pokemon_v2_locationareaname_aggregate_bool_exp { + count: pokemon_v2_locationareaname_aggregate_bool_exp_count +} + +input pokemon_v2_locationareaname_aggregate_bool_exp_count { + arguments: [pokemon_v2_locationareaname_select_column!] + distinct: Boolean + filter: pokemon_v2_locationareaname_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_locationareaname" +""" +type pokemon_v2_locationareaname_aggregate_fields { + avg: pokemon_v2_locationareaname_avg_fields + count(columns: [pokemon_v2_locationareaname_select_column!], distinct: Boolean): Int! + max: pokemon_v2_locationareaname_max_fields + min: pokemon_v2_locationareaname_min_fields + stddev: pokemon_v2_locationareaname_stddev_fields + stddev_pop: pokemon_v2_locationareaname_stddev_pop_fields + stddev_samp: pokemon_v2_locationareaname_stddev_samp_fields + sum: pokemon_v2_locationareaname_sum_fields + var_pop: pokemon_v2_locationareaname_var_pop_fields + var_samp: pokemon_v2_locationareaname_var_samp_fields + variance: pokemon_v2_locationareaname_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_locationareaname" +""" +input pokemon_v2_locationareaname_aggregate_order_by { + avg: pokemon_v2_locationareaname_avg_order_by + count: order_by + max: pokemon_v2_locationareaname_max_order_by + min: pokemon_v2_locationareaname_min_order_by + stddev: pokemon_v2_locationareaname_stddev_order_by + stddev_pop: pokemon_v2_locationareaname_stddev_pop_order_by + stddev_samp: pokemon_v2_locationareaname_stddev_samp_order_by + sum: pokemon_v2_locationareaname_sum_order_by + var_pop: pokemon_v2_locationareaname_var_pop_order_by + var_samp: pokemon_v2_locationareaname_var_samp_order_by + variance: pokemon_v2_locationareaname_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_locationareaname_avg_fields { + id: Float + language_id: Float + location_area_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_locationareaname" +""" +input pokemon_v2_locationareaname_avg_order_by { + id: order_by + language_id: order_by + location_area_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_locationareaname". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_locationareaname_bool_exp { + _and: [pokemon_v2_locationareaname_bool_exp!] + _not: pokemon_v2_locationareaname_bool_exp + _or: [pokemon_v2_locationareaname_bool_exp!] + id: Int_comparison_exp + language_id: Int_comparison_exp + location_area_id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_locationarea: pokemon_v2_locationarea_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_locationareaname_max_fields { + id: Int + language_id: Int + location_area_id: Int + name: String +} + +""" +order by max() on columns of table "pokemon_v2_locationareaname" +""" +input pokemon_v2_locationareaname_max_order_by { + id: order_by + language_id: order_by + location_area_id: order_by + name: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_locationareaname_min_fields { + id: Int + language_id: Int + location_area_id: Int + name: String +} + +""" +order by min() on columns of table "pokemon_v2_locationareaname" +""" +input pokemon_v2_locationareaname_min_order_by { + id: order_by + language_id: order_by + location_area_id: order_by + name: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_locationareaname". +""" +input pokemon_v2_locationareaname_order_by { + id: order_by + language_id: order_by + location_area_id: order_by + name: order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_locationarea: pokemon_v2_locationarea_order_by +} + +""" +select columns of table "pokemon_v2_locationareaname" +""" +enum pokemon_v2_locationareaname_select_column { + """column name""" + id + + """column name""" + language_id + + """column name""" + location_area_id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_locationareaname_stddev_fields { + id: Float + language_id: Float + location_area_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_locationareaname" +""" +input pokemon_v2_locationareaname_stddev_order_by { + id: order_by + language_id: order_by + location_area_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_locationareaname_stddev_pop_fields { + id: Float + language_id: Float + location_area_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_locationareaname" +""" +input pokemon_v2_locationareaname_stddev_pop_order_by { + id: order_by + language_id: order_by + location_area_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_locationareaname_stddev_samp_fields { + id: Float + language_id: Float + location_area_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_locationareaname" +""" +input pokemon_v2_locationareaname_stddev_samp_order_by { + id: order_by + language_id: order_by + location_area_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_locationareaname" +""" +input pokemon_v2_locationareaname_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_locationareaname_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_locationareaname_stream_cursor_value_input { + id: Int + language_id: Int + location_area_id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_locationareaname_sum_fields { + id: Int + language_id: Int + location_area_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_locationareaname" +""" +input pokemon_v2_locationareaname_sum_order_by { + id: order_by + language_id: order_by + location_area_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_locationareaname_var_pop_fields { + id: Float + language_id: Float + location_area_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_locationareaname" +""" +input pokemon_v2_locationareaname_var_pop_order_by { + id: order_by + language_id: order_by + location_area_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_locationareaname_var_samp_fields { + id: Float + language_id: Float + location_area_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_locationareaname" +""" +input pokemon_v2_locationareaname_var_samp_order_by { + id: order_by + language_id: order_by + location_area_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_locationareaname_variance_fields { + id: Float + language_id: Float + location_area_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_locationareaname" +""" +input pokemon_v2_locationareaname_variance_order_by { + id: order_by + language_id: order_by + location_area_id: order_by +} + +""" +columns and relationships of "pokemon_v2_locationgameindex" +""" +type pokemon_v2_locationgameindex { + game_index: Int! + generation_id: Int + id: Int! + location_id: Int + + """An object relationship""" + pokemon_v2_generation: pokemon_v2_generation + + """An object relationship""" + pokemon_v2_location: pokemon_v2_location +} + +""" +aggregated selection of "pokemon_v2_locationgameindex" +""" +type pokemon_v2_locationgameindex_aggregate { + aggregate: pokemon_v2_locationgameindex_aggregate_fields + nodes: [pokemon_v2_locationgameindex!]! +} + +input pokemon_v2_locationgameindex_aggregate_bool_exp { + count: pokemon_v2_locationgameindex_aggregate_bool_exp_count +} + +input pokemon_v2_locationgameindex_aggregate_bool_exp_count { + arguments: [pokemon_v2_locationgameindex_select_column!] + distinct: Boolean + filter: pokemon_v2_locationgameindex_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_locationgameindex" +""" +type pokemon_v2_locationgameindex_aggregate_fields { + avg: pokemon_v2_locationgameindex_avg_fields + count(columns: [pokemon_v2_locationgameindex_select_column!], distinct: Boolean): Int! + max: pokemon_v2_locationgameindex_max_fields + min: pokemon_v2_locationgameindex_min_fields + stddev: pokemon_v2_locationgameindex_stddev_fields + stddev_pop: pokemon_v2_locationgameindex_stddev_pop_fields + stddev_samp: pokemon_v2_locationgameindex_stddev_samp_fields + sum: pokemon_v2_locationgameindex_sum_fields + var_pop: pokemon_v2_locationgameindex_var_pop_fields + var_samp: pokemon_v2_locationgameindex_var_samp_fields + variance: pokemon_v2_locationgameindex_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_locationgameindex" +""" +input pokemon_v2_locationgameindex_aggregate_order_by { + avg: pokemon_v2_locationgameindex_avg_order_by + count: order_by + max: pokemon_v2_locationgameindex_max_order_by + min: pokemon_v2_locationgameindex_min_order_by + stddev: pokemon_v2_locationgameindex_stddev_order_by + stddev_pop: pokemon_v2_locationgameindex_stddev_pop_order_by + stddev_samp: pokemon_v2_locationgameindex_stddev_samp_order_by + sum: pokemon_v2_locationgameindex_sum_order_by + var_pop: pokemon_v2_locationgameindex_var_pop_order_by + var_samp: pokemon_v2_locationgameindex_var_samp_order_by + variance: pokemon_v2_locationgameindex_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_locationgameindex_avg_fields { + game_index: Float + generation_id: Float + id: Float + location_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_locationgameindex" +""" +input pokemon_v2_locationgameindex_avg_order_by { + game_index: order_by + generation_id: order_by + id: order_by + location_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_locationgameindex". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_locationgameindex_bool_exp { + _and: [pokemon_v2_locationgameindex_bool_exp!] + _not: pokemon_v2_locationgameindex_bool_exp + _or: [pokemon_v2_locationgameindex_bool_exp!] + game_index: Int_comparison_exp + generation_id: Int_comparison_exp + id: Int_comparison_exp + location_id: Int_comparison_exp + pokemon_v2_generation: pokemon_v2_generation_bool_exp + pokemon_v2_location: pokemon_v2_location_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_locationgameindex_max_fields { + game_index: Int + generation_id: Int + id: Int + location_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_locationgameindex" +""" +input pokemon_v2_locationgameindex_max_order_by { + game_index: order_by + generation_id: order_by + id: order_by + location_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_locationgameindex_min_fields { + game_index: Int + generation_id: Int + id: Int + location_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_locationgameindex" +""" +input pokemon_v2_locationgameindex_min_order_by { + game_index: order_by + generation_id: order_by + id: order_by + location_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_locationgameindex". +""" +input pokemon_v2_locationgameindex_order_by { + game_index: order_by + generation_id: order_by + id: order_by + location_id: order_by + pokemon_v2_generation: pokemon_v2_generation_order_by + pokemon_v2_location: pokemon_v2_location_order_by +} + +""" +select columns of table "pokemon_v2_locationgameindex" +""" +enum pokemon_v2_locationgameindex_select_column { + """column name""" + game_index + + """column name""" + generation_id + + """column name""" + id + + """column name""" + location_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_locationgameindex_stddev_fields { + game_index: Float + generation_id: Float + id: Float + location_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_locationgameindex" +""" +input pokemon_v2_locationgameindex_stddev_order_by { + game_index: order_by + generation_id: order_by + id: order_by + location_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_locationgameindex_stddev_pop_fields { + game_index: Float + generation_id: Float + id: Float + location_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_locationgameindex" +""" +input pokemon_v2_locationgameindex_stddev_pop_order_by { + game_index: order_by + generation_id: order_by + id: order_by + location_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_locationgameindex_stddev_samp_fields { + game_index: Float + generation_id: Float + id: Float + location_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_locationgameindex" +""" +input pokemon_v2_locationgameindex_stddev_samp_order_by { + game_index: order_by + generation_id: order_by + id: order_by + location_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_locationgameindex" +""" +input pokemon_v2_locationgameindex_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_locationgameindex_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_locationgameindex_stream_cursor_value_input { + game_index: Int + generation_id: Int + id: Int + location_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_locationgameindex_sum_fields { + game_index: Int + generation_id: Int + id: Int + location_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_locationgameindex" +""" +input pokemon_v2_locationgameindex_sum_order_by { + game_index: order_by + generation_id: order_by + id: order_by + location_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_locationgameindex_var_pop_fields { + game_index: Float + generation_id: Float + id: Float + location_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_locationgameindex" +""" +input pokemon_v2_locationgameindex_var_pop_order_by { + game_index: order_by + generation_id: order_by + id: order_by + location_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_locationgameindex_var_samp_fields { + game_index: Float + generation_id: Float + id: Float + location_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_locationgameindex" +""" +input pokemon_v2_locationgameindex_var_samp_order_by { + game_index: order_by + generation_id: order_by + id: order_by + location_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_locationgameindex_variance_fields { + game_index: Float + generation_id: Float + id: Float + location_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_locationgameindex" +""" +input pokemon_v2_locationgameindex_variance_order_by { + game_index: order_by + generation_id: order_by + id: order_by + location_id: order_by +} + +""" +columns and relationships of "pokemon_v2_locationname" +""" +type pokemon_v2_locationname { + id: Int! + language_id: Int + location_id: Int + name: String! + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_location: pokemon_v2_location +} + +""" +aggregated selection of "pokemon_v2_locationname" +""" +type pokemon_v2_locationname_aggregate { + aggregate: pokemon_v2_locationname_aggregate_fields + nodes: [pokemon_v2_locationname!]! +} + +input pokemon_v2_locationname_aggregate_bool_exp { + count: pokemon_v2_locationname_aggregate_bool_exp_count +} + +input pokemon_v2_locationname_aggregate_bool_exp_count { + arguments: [pokemon_v2_locationname_select_column!] + distinct: Boolean + filter: pokemon_v2_locationname_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_locationname" +""" +type pokemon_v2_locationname_aggregate_fields { + avg: pokemon_v2_locationname_avg_fields + count(columns: [pokemon_v2_locationname_select_column!], distinct: Boolean): Int! + max: pokemon_v2_locationname_max_fields + min: pokemon_v2_locationname_min_fields + stddev: pokemon_v2_locationname_stddev_fields + stddev_pop: pokemon_v2_locationname_stddev_pop_fields + stddev_samp: pokemon_v2_locationname_stddev_samp_fields + sum: pokemon_v2_locationname_sum_fields + var_pop: pokemon_v2_locationname_var_pop_fields + var_samp: pokemon_v2_locationname_var_samp_fields + variance: pokemon_v2_locationname_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_locationname" +""" +input pokemon_v2_locationname_aggregate_order_by { + avg: pokemon_v2_locationname_avg_order_by + count: order_by + max: pokemon_v2_locationname_max_order_by + min: pokemon_v2_locationname_min_order_by + stddev: pokemon_v2_locationname_stddev_order_by + stddev_pop: pokemon_v2_locationname_stddev_pop_order_by + stddev_samp: pokemon_v2_locationname_stddev_samp_order_by + sum: pokemon_v2_locationname_sum_order_by + var_pop: pokemon_v2_locationname_var_pop_order_by + var_samp: pokemon_v2_locationname_var_samp_order_by + variance: pokemon_v2_locationname_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_locationname_avg_fields { + id: Float + language_id: Float + location_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_locationname" +""" +input pokemon_v2_locationname_avg_order_by { + id: order_by + language_id: order_by + location_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_locationname". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_locationname_bool_exp { + _and: [pokemon_v2_locationname_bool_exp!] + _not: pokemon_v2_locationname_bool_exp + _or: [pokemon_v2_locationname_bool_exp!] + id: Int_comparison_exp + language_id: Int_comparison_exp + location_id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_location: pokemon_v2_location_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_locationname_max_fields { + id: Int + language_id: Int + location_id: Int + name: String +} + +""" +order by max() on columns of table "pokemon_v2_locationname" +""" +input pokemon_v2_locationname_max_order_by { + id: order_by + language_id: order_by + location_id: order_by + name: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_locationname_min_fields { + id: Int + language_id: Int + location_id: Int + name: String +} + +""" +order by min() on columns of table "pokemon_v2_locationname" +""" +input pokemon_v2_locationname_min_order_by { + id: order_by + language_id: order_by + location_id: order_by + name: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_locationname".""" +input pokemon_v2_locationname_order_by { + id: order_by + language_id: order_by + location_id: order_by + name: order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_location: pokemon_v2_location_order_by +} + +""" +select columns of table "pokemon_v2_locationname" +""" +enum pokemon_v2_locationname_select_column { + """column name""" + id + + """column name""" + language_id + + """column name""" + location_id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_locationname_stddev_fields { + id: Float + language_id: Float + location_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_locationname" +""" +input pokemon_v2_locationname_stddev_order_by { + id: order_by + language_id: order_by + location_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_locationname_stddev_pop_fields { + id: Float + language_id: Float + location_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_locationname" +""" +input pokemon_v2_locationname_stddev_pop_order_by { + id: order_by + language_id: order_by + location_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_locationname_stddev_samp_fields { + id: Float + language_id: Float + location_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_locationname" +""" +input pokemon_v2_locationname_stddev_samp_order_by { + id: order_by + language_id: order_by + location_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_locationname" +""" +input pokemon_v2_locationname_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_locationname_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_locationname_stream_cursor_value_input { + id: Int + language_id: Int + location_id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_locationname_sum_fields { + id: Int + language_id: Int + location_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_locationname" +""" +input pokemon_v2_locationname_sum_order_by { + id: order_by + language_id: order_by + location_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_locationname_var_pop_fields { + id: Float + language_id: Float + location_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_locationname" +""" +input pokemon_v2_locationname_var_pop_order_by { + id: order_by + language_id: order_by + location_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_locationname_var_samp_fields { + id: Float + language_id: Float + location_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_locationname" +""" +input pokemon_v2_locationname_var_samp_order_by { + id: order_by + language_id: order_by + location_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_locationname_variance_fields { + id: Float + language_id: Float + location_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_locationname" +""" +input pokemon_v2_locationname_variance_order_by { + id: order_by + language_id: order_by + location_id: order_by +} + +""" +columns and relationships of "pokemon_v2_machine" +""" +type pokemon_v2_machine { + growth_rate_id: Int + id: Int! + item_id: Int + machine_number: Int! + move_id: Int + + """An object relationship""" + pokemon_v2_growthrate: pokemon_v2_growthrate + + """An object relationship""" + pokemon_v2_item: pokemon_v2_item + + """An object relationship""" + pokemon_v2_move: pokemon_v2_move + + """An object relationship""" + pokemon_v2_versiongroup: pokemon_v2_versiongroup + version_group_id: Int +} + +""" +aggregated selection of "pokemon_v2_machine" +""" +type pokemon_v2_machine_aggregate { + aggregate: pokemon_v2_machine_aggregate_fields + nodes: [pokemon_v2_machine!]! +} + +input pokemon_v2_machine_aggregate_bool_exp { + count: pokemon_v2_machine_aggregate_bool_exp_count +} + +input pokemon_v2_machine_aggregate_bool_exp_count { + arguments: [pokemon_v2_machine_select_column!] + distinct: Boolean + filter: pokemon_v2_machine_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_machine" +""" +type pokemon_v2_machine_aggregate_fields { + avg: pokemon_v2_machine_avg_fields + count(columns: [pokemon_v2_machine_select_column!], distinct: Boolean): Int! + max: pokemon_v2_machine_max_fields + min: pokemon_v2_machine_min_fields + stddev: pokemon_v2_machine_stddev_fields + stddev_pop: pokemon_v2_machine_stddev_pop_fields + stddev_samp: pokemon_v2_machine_stddev_samp_fields + sum: pokemon_v2_machine_sum_fields + var_pop: pokemon_v2_machine_var_pop_fields + var_samp: pokemon_v2_machine_var_samp_fields + variance: pokemon_v2_machine_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_machine" +""" +input pokemon_v2_machine_aggregate_order_by { + avg: pokemon_v2_machine_avg_order_by + count: order_by + max: pokemon_v2_machine_max_order_by + min: pokemon_v2_machine_min_order_by + stddev: pokemon_v2_machine_stddev_order_by + stddev_pop: pokemon_v2_machine_stddev_pop_order_by + stddev_samp: pokemon_v2_machine_stddev_samp_order_by + sum: pokemon_v2_machine_sum_order_by + var_pop: pokemon_v2_machine_var_pop_order_by + var_samp: pokemon_v2_machine_var_samp_order_by + variance: pokemon_v2_machine_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_machine_avg_fields { + growth_rate_id: Float + id: Float + item_id: Float + machine_number: Float + move_id: Float + version_group_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_machine" +""" +input pokemon_v2_machine_avg_order_by { + growth_rate_id: order_by + id: order_by + item_id: order_by + machine_number: order_by + move_id: order_by + version_group_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_machine". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_machine_bool_exp { + _and: [pokemon_v2_machine_bool_exp!] + _not: pokemon_v2_machine_bool_exp + _or: [pokemon_v2_machine_bool_exp!] + growth_rate_id: Int_comparison_exp + id: Int_comparison_exp + item_id: Int_comparison_exp + machine_number: Int_comparison_exp + move_id: Int_comparison_exp + pokemon_v2_growthrate: pokemon_v2_growthrate_bool_exp + pokemon_v2_item: pokemon_v2_item_bool_exp + pokemon_v2_move: pokemon_v2_move_bool_exp + pokemon_v2_versiongroup: pokemon_v2_versiongroup_bool_exp + version_group_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_machine_max_fields { + growth_rate_id: Int + id: Int + item_id: Int + machine_number: Int + move_id: Int + version_group_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_machine" +""" +input pokemon_v2_machine_max_order_by { + growth_rate_id: order_by + id: order_by + item_id: order_by + machine_number: order_by + move_id: order_by + version_group_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_machine_min_fields { + growth_rate_id: Int + id: Int + item_id: Int + machine_number: Int + move_id: Int + version_group_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_machine" +""" +input pokemon_v2_machine_min_order_by { + growth_rate_id: order_by + id: order_by + item_id: order_by + machine_number: order_by + move_id: order_by + version_group_id: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_machine".""" +input pokemon_v2_machine_order_by { + growth_rate_id: order_by + id: order_by + item_id: order_by + machine_number: order_by + move_id: order_by + pokemon_v2_growthrate: pokemon_v2_growthrate_order_by + pokemon_v2_item: pokemon_v2_item_order_by + pokemon_v2_move: pokemon_v2_move_order_by + pokemon_v2_versiongroup: pokemon_v2_versiongroup_order_by + version_group_id: order_by +} + +""" +select columns of table "pokemon_v2_machine" +""" +enum pokemon_v2_machine_select_column { + """column name""" + growth_rate_id + + """column name""" + id + + """column name""" + item_id + + """column name""" + machine_number + + """column name""" + move_id + + """column name""" + version_group_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_machine_stddev_fields { + growth_rate_id: Float + id: Float + item_id: Float + machine_number: Float + move_id: Float + version_group_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_machine" +""" +input pokemon_v2_machine_stddev_order_by { + growth_rate_id: order_by + id: order_by + item_id: order_by + machine_number: order_by + move_id: order_by + version_group_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_machine_stddev_pop_fields { + growth_rate_id: Float + id: Float + item_id: Float + machine_number: Float + move_id: Float + version_group_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_machine" +""" +input pokemon_v2_machine_stddev_pop_order_by { + growth_rate_id: order_by + id: order_by + item_id: order_by + machine_number: order_by + move_id: order_by + version_group_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_machine_stddev_samp_fields { + growth_rate_id: Float + id: Float + item_id: Float + machine_number: Float + move_id: Float + version_group_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_machine" +""" +input pokemon_v2_machine_stddev_samp_order_by { + growth_rate_id: order_by + id: order_by + item_id: order_by + machine_number: order_by + move_id: order_by + version_group_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_machine" +""" +input pokemon_v2_machine_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_machine_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_machine_stream_cursor_value_input { + growth_rate_id: Int + id: Int + item_id: Int + machine_number: Int + move_id: Int + version_group_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_machine_sum_fields { + growth_rate_id: Int + id: Int + item_id: Int + machine_number: Int + move_id: Int + version_group_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_machine" +""" +input pokemon_v2_machine_sum_order_by { + growth_rate_id: order_by + id: order_by + item_id: order_by + machine_number: order_by + move_id: order_by + version_group_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_machine_var_pop_fields { + growth_rate_id: Float + id: Float + item_id: Float + machine_number: Float + move_id: Float + version_group_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_machine" +""" +input pokemon_v2_machine_var_pop_order_by { + growth_rate_id: order_by + id: order_by + item_id: order_by + machine_number: order_by + move_id: order_by + version_group_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_machine_var_samp_fields { + growth_rate_id: Float + id: Float + item_id: Float + machine_number: Float + move_id: Float + version_group_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_machine" +""" +input pokemon_v2_machine_var_samp_order_by { + growth_rate_id: order_by + id: order_by + item_id: order_by + machine_number: order_by + move_id: order_by + version_group_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_machine_variance_fields { + growth_rate_id: Float + id: Float + item_id: Float + machine_number: Float + move_id: Float + version_group_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_machine" +""" +input pokemon_v2_machine_variance_order_by { + growth_rate_id: order_by + id: order_by + item_id: order_by + machine_number: order_by + move_id: order_by + version_group_id: order_by +} + +""" +columns and relationships of "pokemon_v2_move" +""" +type pokemon_v2_move { + accuracy: Int + contest_effect_id: Int + contest_type_id: Int + generation_id: Int + id: Int! + move_damage_class_id: Int + move_effect_chance: Int + move_effect_id: Int + move_target_id: Int + name: String! + + """An array relationship""" + pokemonV2ContestcombosBySecondMoveId( + """distinct select on columns""" + distinct_on: [pokemon_v2_contestcombo_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contestcombo_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contestcombo_bool_exp + ): [pokemon_v2_contestcombo!]! + + """An aggregate relationship""" + pokemonV2ContestcombosBySecondMoveId_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_contestcombo_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contestcombo_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contestcombo_bool_exp + ): pokemon_v2_contestcombo_aggregate! + + """An array relationship""" + pokemonV2SupercontestcombosBySecondMoveId( + """distinct select on columns""" + distinct_on: [pokemon_v2_supercontestcombo_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_supercontestcombo_order_by!] + + """filter the rows returned""" + where: pokemon_v2_supercontestcombo_bool_exp + ): [pokemon_v2_supercontestcombo!]! + + """An aggregate relationship""" + pokemonV2SupercontestcombosBySecondMoveId_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_supercontestcombo_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_supercontestcombo_order_by!] + + """filter the rows returned""" + where: pokemon_v2_supercontestcombo_bool_exp + ): pokemon_v2_supercontestcombo_aggregate! + + """An array relationship""" + pokemon_v2_contestcombos( + """distinct select on columns""" + distinct_on: [pokemon_v2_contestcombo_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contestcombo_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contestcombo_bool_exp + ): [pokemon_v2_contestcombo!]! + + """An aggregate relationship""" + pokemon_v2_contestcombos_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_contestcombo_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contestcombo_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contestcombo_bool_exp + ): pokemon_v2_contestcombo_aggregate! + + """An object relationship""" + pokemon_v2_contesteffect: pokemon_v2_contesteffect + + """An object relationship""" + pokemon_v2_contesttype: pokemon_v2_contesttype + + """An object relationship""" + pokemon_v2_generation: pokemon_v2_generation + + """An array relationship""" + pokemon_v2_machines( + """distinct select on columns""" + distinct_on: [pokemon_v2_machine_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_machine_order_by!] + + """filter the rows returned""" + where: pokemon_v2_machine_bool_exp + ): [pokemon_v2_machine!]! + + """An aggregate relationship""" + pokemon_v2_machines_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_machine_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_machine_order_by!] + + """filter the rows returned""" + where: pokemon_v2_machine_bool_exp + ): pokemon_v2_machine_aggregate! + + """An array relationship""" + pokemon_v2_moveattributemaps( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveattributemap_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveattributemap_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveattributemap_bool_exp + ): [pokemon_v2_moveattributemap!]! + + """An aggregate relationship""" + pokemon_v2_moveattributemaps_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveattributemap_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveattributemap_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveattributemap_bool_exp + ): pokemon_v2_moveattributemap_aggregate! + + """An array relationship""" + pokemon_v2_movechanges( + """distinct select on columns""" + distinct_on: [pokemon_v2_movechange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movechange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movechange_bool_exp + ): [pokemon_v2_movechange!]! + + """An aggregate relationship""" + pokemon_v2_movechanges_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movechange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movechange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movechange_bool_exp + ): pokemon_v2_movechange_aggregate! + + """An object relationship""" + pokemon_v2_movedamageclass: pokemon_v2_movedamageclass + + """An object relationship""" + pokemon_v2_moveeffect: pokemon_v2_moveeffect + + """An array relationship""" + pokemon_v2_moveflavortexts( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveflavortext_bool_exp + ): [pokemon_v2_moveflavortext!]! + + """An aggregate relationship""" + pokemon_v2_moveflavortexts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveflavortext_bool_exp + ): pokemon_v2_moveflavortext_aggregate! + + """An array relationship""" + pokemon_v2_movemeta( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemeta_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemeta_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemeta_bool_exp + ): [pokemon_v2_movemeta!]! + + """An aggregate relationship""" + pokemon_v2_movemeta_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemeta_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemeta_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemeta_bool_exp + ): pokemon_v2_movemeta_aggregate! + + """An array relationship""" + pokemon_v2_movemetastatchanges( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemetastatchange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemetastatchange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemetastatchange_bool_exp + ): [pokemon_v2_movemetastatchange!]! + + """An aggregate relationship""" + pokemon_v2_movemetastatchanges_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemetastatchange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemetastatchange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemetastatchange_bool_exp + ): pokemon_v2_movemetastatchange_aggregate! + + """An object relationship""" + pokemon_v2_movemetum: pokemon_v2_movemeta + + """An array relationship""" + pokemon_v2_movenames( + """distinct select on columns""" + distinct_on: [pokemon_v2_movename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movename_bool_exp + ): [pokemon_v2_movename!]! + + """An aggregate relationship""" + pokemon_v2_movenames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movename_bool_exp + ): pokemon_v2_movename_aggregate! + + """An object relationship""" + pokemon_v2_movetarget: pokemon_v2_movetarget + + """An array relationship""" + pokemon_v2_pokemonevolutions( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonevolution_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonevolution_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonevolution_bool_exp + ): [pokemon_v2_pokemonevolution!]! + + """An aggregate relationship""" + pokemon_v2_pokemonevolutions_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonevolution_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonevolution_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonevolution_bool_exp + ): pokemon_v2_pokemonevolution_aggregate! + + """An array relationship""" + pokemon_v2_pokemonmoves( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonmove_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonmove_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonmove_bool_exp + ): [pokemon_v2_pokemonmove!]! + + """An aggregate relationship""" + pokemon_v2_pokemonmoves_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonmove_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonmove_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonmove_bool_exp + ): pokemon_v2_pokemonmove_aggregate! + + """An array relationship""" + pokemon_v2_supercontestcombos( + """distinct select on columns""" + distinct_on: [pokemon_v2_supercontestcombo_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_supercontestcombo_order_by!] + + """filter the rows returned""" + where: pokemon_v2_supercontestcombo_bool_exp + ): [pokemon_v2_supercontestcombo!]! + + """An aggregate relationship""" + pokemon_v2_supercontestcombos_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_supercontestcombo_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_supercontestcombo_order_by!] + + """filter the rows returned""" + where: pokemon_v2_supercontestcombo_bool_exp + ): pokemon_v2_supercontestcombo_aggregate! + + """An object relationship""" + pokemon_v2_supercontesteffect: pokemon_v2_supercontesteffect + + """An object relationship""" + pokemon_v2_type: pokemon_v2_type + power: Int + pp: Int + priority: Int + super_contest_effect_id: Int + type_id: Int +} + +""" +aggregated selection of "pokemon_v2_move" +""" +type pokemon_v2_move_aggregate { + aggregate: pokemon_v2_move_aggregate_fields + nodes: [pokemon_v2_move!]! +} + +input pokemon_v2_move_aggregate_bool_exp { + count: pokemon_v2_move_aggregate_bool_exp_count +} + +input pokemon_v2_move_aggregate_bool_exp_count { + arguments: [pokemon_v2_move_select_column!] + distinct: Boolean + filter: pokemon_v2_move_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_move" +""" +type pokemon_v2_move_aggregate_fields { + avg: pokemon_v2_move_avg_fields + count(columns: [pokemon_v2_move_select_column!], distinct: Boolean): Int! + max: pokemon_v2_move_max_fields + min: pokemon_v2_move_min_fields + stddev: pokemon_v2_move_stddev_fields + stddev_pop: pokemon_v2_move_stddev_pop_fields + stddev_samp: pokemon_v2_move_stddev_samp_fields + sum: pokemon_v2_move_sum_fields + var_pop: pokemon_v2_move_var_pop_fields + var_samp: pokemon_v2_move_var_samp_fields + variance: pokemon_v2_move_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_move" +""" +input pokemon_v2_move_aggregate_order_by { + avg: pokemon_v2_move_avg_order_by + count: order_by + max: pokemon_v2_move_max_order_by + min: pokemon_v2_move_min_order_by + stddev: pokemon_v2_move_stddev_order_by + stddev_pop: pokemon_v2_move_stddev_pop_order_by + stddev_samp: pokemon_v2_move_stddev_samp_order_by + sum: pokemon_v2_move_sum_order_by + var_pop: pokemon_v2_move_var_pop_order_by + var_samp: pokemon_v2_move_var_samp_order_by + variance: pokemon_v2_move_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_move_avg_fields { + accuracy: Float + contest_effect_id: Float + contest_type_id: Float + generation_id: Float + id: Float + move_damage_class_id: Float + move_effect_chance: Float + move_effect_id: Float + move_target_id: Float + power: Float + pp: Float + priority: Float + super_contest_effect_id: Float + type_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_move" +""" +input pokemon_v2_move_avg_order_by { + accuracy: order_by + contest_effect_id: order_by + contest_type_id: order_by + generation_id: order_by + id: order_by + move_damage_class_id: order_by + move_effect_chance: order_by + move_effect_id: order_by + move_target_id: order_by + power: order_by + pp: order_by + priority: order_by + super_contest_effect_id: order_by + type_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_move". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_move_bool_exp { + _and: [pokemon_v2_move_bool_exp!] + _not: pokemon_v2_move_bool_exp + _or: [pokemon_v2_move_bool_exp!] + accuracy: Int_comparison_exp + contest_effect_id: Int_comparison_exp + contest_type_id: Int_comparison_exp + generation_id: Int_comparison_exp + id: Int_comparison_exp + move_damage_class_id: Int_comparison_exp + move_effect_chance: Int_comparison_exp + move_effect_id: Int_comparison_exp + move_target_id: Int_comparison_exp + name: String_comparison_exp + pokemonV2ContestcombosBySecondMoveId: pokemon_v2_contestcombo_bool_exp + pokemonV2ContestcombosBySecondMoveId_aggregate: pokemon_v2_contestcombo_aggregate_bool_exp + pokemonV2SupercontestcombosBySecondMoveId: pokemon_v2_supercontestcombo_bool_exp + pokemonV2SupercontestcombosBySecondMoveId_aggregate: pokemon_v2_supercontestcombo_aggregate_bool_exp + pokemon_v2_contestcombos: pokemon_v2_contestcombo_bool_exp + pokemon_v2_contestcombos_aggregate: pokemon_v2_contestcombo_aggregate_bool_exp + pokemon_v2_contesteffect: pokemon_v2_contesteffect_bool_exp + pokemon_v2_contesttype: pokemon_v2_contesttype_bool_exp + pokemon_v2_generation: pokemon_v2_generation_bool_exp + pokemon_v2_machines: pokemon_v2_machine_bool_exp + pokemon_v2_machines_aggregate: pokemon_v2_machine_aggregate_bool_exp + pokemon_v2_moveattributemaps: pokemon_v2_moveattributemap_bool_exp + pokemon_v2_moveattributemaps_aggregate: pokemon_v2_moveattributemap_aggregate_bool_exp + pokemon_v2_movechanges: pokemon_v2_movechange_bool_exp + pokemon_v2_movechanges_aggregate: pokemon_v2_movechange_aggregate_bool_exp + pokemon_v2_movedamageclass: pokemon_v2_movedamageclass_bool_exp + pokemon_v2_moveeffect: pokemon_v2_moveeffect_bool_exp + pokemon_v2_moveflavortexts: pokemon_v2_moveflavortext_bool_exp + pokemon_v2_moveflavortexts_aggregate: pokemon_v2_moveflavortext_aggregate_bool_exp + pokemon_v2_movemeta: pokemon_v2_movemeta_bool_exp + pokemon_v2_movemeta_aggregate: pokemon_v2_movemeta_aggregate_bool_exp + pokemon_v2_movemetastatchanges: pokemon_v2_movemetastatchange_bool_exp + pokemon_v2_movemetastatchanges_aggregate: pokemon_v2_movemetastatchange_aggregate_bool_exp + pokemon_v2_movemetum: pokemon_v2_movemeta_bool_exp + pokemon_v2_movenames: pokemon_v2_movename_bool_exp + pokemon_v2_movenames_aggregate: pokemon_v2_movename_aggregate_bool_exp + pokemon_v2_movetarget: pokemon_v2_movetarget_bool_exp + pokemon_v2_pokemonevolutions: pokemon_v2_pokemonevolution_bool_exp + pokemon_v2_pokemonevolutions_aggregate: pokemon_v2_pokemonevolution_aggregate_bool_exp + pokemon_v2_pokemonmoves: pokemon_v2_pokemonmove_bool_exp + pokemon_v2_pokemonmoves_aggregate: pokemon_v2_pokemonmove_aggregate_bool_exp + pokemon_v2_supercontestcombos: pokemon_v2_supercontestcombo_bool_exp + pokemon_v2_supercontestcombos_aggregate: pokemon_v2_supercontestcombo_aggregate_bool_exp + pokemon_v2_supercontesteffect: pokemon_v2_supercontesteffect_bool_exp + pokemon_v2_type: pokemon_v2_type_bool_exp + power: Int_comparison_exp + pp: Int_comparison_exp + priority: Int_comparison_exp + super_contest_effect_id: Int_comparison_exp + type_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_move_max_fields { + accuracy: Int + contest_effect_id: Int + contest_type_id: Int + generation_id: Int + id: Int + move_damage_class_id: Int + move_effect_chance: Int + move_effect_id: Int + move_target_id: Int + name: String + power: Int + pp: Int + priority: Int + super_contest_effect_id: Int + type_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_move" +""" +input pokemon_v2_move_max_order_by { + accuracy: order_by + contest_effect_id: order_by + contest_type_id: order_by + generation_id: order_by + id: order_by + move_damage_class_id: order_by + move_effect_chance: order_by + move_effect_id: order_by + move_target_id: order_by + name: order_by + power: order_by + pp: order_by + priority: order_by + super_contest_effect_id: order_by + type_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_move_min_fields { + accuracy: Int + contest_effect_id: Int + contest_type_id: Int + generation_id: Int + id: Int + move_damage_class_id: Int + move_effect_chance: Int + move_effect_id: Int + move_target_id: Int + name: String + power: Int + pp: Int + priority: Int + super_contest_effect_id: Int + type_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_move" +""" +input pokemon_v2_move_min_order_by { + accuracy: order_by + contest_effect_id: order_by + contest_type_id: order_by + generation_id: order_by + id: order_by + move_damage_class_id: order_by + move_effect_chance: order_by + move_effect_id: order_by + move_target_id: order_by + name: order_by + power: order_by + pp: order_by + priority: order_by + super_contest_effect_id: order_by + type_id: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_move".""" +input pokemon_v2_move_order_by { + accuracy: order_by + contest_effect_id: order_by + contest_type_id: order_by + generation_id: order_by + id: order_by + move_damage_class_id: order_by + move_effect_chance: order_by + move_effect_id: order_by + move_target_id: order_by + name: order_by + pokemonV2ContestcombosBySecondMoveId_aggregate: pokemon_v2_contestcombo_aggregate_order_by + pokemonV2SupercontestcombosBySecondMoveId_aggregate: pokemon_v2_supercontestcombo_aggregate_order_by + pokemon_v2_contestcombos_aggregate: pokemon_v2_contestcombo_aggregate_order_by + pokemon_v2_contesteffect: pokemon_v2_contesteffect_order_by + pokemon_v2_contesttype: pokemon_v2_contesttype_order_by + pokemon_v2_generation: pokemon_v2_generation_order_by + pokemon_v2_machines_aggregate: pokemon_v2_machine_aggregate_order_by + pokemon_v2_moveattributemaps_aggregate: pokemon_v2_moveattributemap_aggregate_order_by + pokemon_v2_movechanges_aggregate: pokemon_v2_movechange_aggregate_order_by + pokemon_v2_movedamageclass: pokemon_v2_movedamageclass_order_by + pokemon_v2_moveeffect: pokemon_v2_moveeffect_order_by + pokemon_v2_moveflavortexts_aggregate: pokemon_v2_moveflavortext_aggregate_order_by + pokemon_v2_movemeta_aggregate: pokemon_v2_movemeta_aggregate_order_by + pokemon_v2_movemetastatchanges_aggregate: pokemon_v2_movemetastatchange_aggregate_order_by + pokemon_v2_movemetum: pokemon_v2_movemeta_order_by + pokemon_v2_movenames_aggregate: pokemon_v2_movename_aggregate_order_by + pokemon_v2_movetarget: pokemon_v2_movetarget_order_by + pokemon_v2_pokemonevolutions_aggregate: pokemon_v2_pokemonevolution_aggregate_order_by + pokemon_v2_pokemonmoves_aggregate: pokemon_v2_pokemonmove_aggregate_order_by + pokemon_v2_supercontestcombos_aggregate: pokemon_v2_supercontestcombo_aggregate_order_by + pokemon_v2_supercontesteffect: pokemon_v2_supercontesteffect_order_by + pokemon_v2_type: pokemon_v2_type_order_by + power: order_by + pp: order_by + priority: order_by + super_contest_effect_id: order_by + type_id: order_by +} + +""" +select columns of table "pokemon_v2_move" +""" +enum pokemon_v2_move_select_column { + """column name""" + accuracy + + """column name""" + contest_effect_id + + """column name""" + contest_type_id + + """column name""" + generation_id + + """column name""" + id + + """column name""" + move_damage_class_id + + """column name""" + move_effect_chance + + """column name""" + move_effect_id + + """column name""" + move_target_id + + """column name""" + name + + """column name""" + power + + """column name""" + pp + + """column name""" + priority + + """column name""" + super_contest_effect_id + + """column name""" + type_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_move_stddev_fields { + accuracy: Float + contest_effect_id: Float + contest_type_id: Float + generation_id: Float + id: Float + move_damage_class_id: Float + move_effect_chance: Float + move_effect_id: Float + move_target_id: Float + power: Float + pp: Float + priority: Float + super_contest_effect_id: Float + type_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_move" +""" +input pokemon_v2_move_stddev_order_by { + accuracy: order_by + contest_effect_id: order_by + contest_type_id: order_by + generation_id: order_by + id: order_by + move_damage_class_id: order_by + move_effect_chance: order_by + move_effect_id: order_by + move_target_id: order_by + power: order_by + pp: order_by + priority: order_by + super_contest_effect_id: order_by + type_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_move_stddev_pop_fields { + accuracy: Float + contest_effect_id: Float + contest_type_id: Float + generation_id: Float + id: Float + move_damage_class_id: Float + move_effect_chance: Float + move_effect_id: Float + move_target_id: Float + power: Float + pp: Float + priority: Float + super_contest_effect_id: Float + type_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_move" +""" +input pokemon_v2_move_stddev_pop_order_by { + accuracy: order_by + contest_effect_id: order_by + contest_type_id: order_by + generation_id: order_by + id: order_by + move_damage_class_id: order_by + move_effect_chance: order_by + move_effect_id: order_by + move_target_id: order_by + power: order_by + pp: order_by + priority: order_by + super_contest_effect_id: order_by + type_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_move_stddev_samp_fields { + accuracy: Float + contest_effect_id: Float + contest_type_id: Float + generation_id: Float + id: Float + move_damage_class_id: Float + move_effect_chance: Float + move_effect_id: Float + move_target_id: Float + power: Float + pp: Float + priority: Float + super_contest_effect_id: Float + type_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_move" +""" +input pokemon_v2_move_stddev_samp_order_by { + accuracy: order_by + contest_effect_id: order_by + contest_type_id: order_by + generation_id: order_by + id: order_by + move_damage_class_id: order_by + move_effect_chance: order_by + move_effect_id: order_by + move_target_id: order_by + power: order_by + pp: order_by + priority: order_by + super_contest_effect_id: order_by + type_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_move" +""" +input pokemon_v2_move_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_move_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_move_stream_cursor_value_input { + accuracy: Int + contest_effect_id: Int + contest_type_id: Int + generation_id: Int + id: Int + move_damage_class_id: Int + move_effect_chance: Int + move_effect_id: Int + move_target_id: Int + name: String + power: Int + pp: Int + priority: Int + super_contest_effect_id: Int + type_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_move_sum_fields { + accuracy: Int + contest_effect_id: Int + contest_type_id: Int + generation_id: Int + id: Int + move_damage_class_id: Int + move_effect_chance: Int + move_effect_id: Int + move_target_id: Int + power: Int + pp: Int + priority: Int + super_contest_effect_id: Int + type_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_move" +""" +input pokemon_v2_move_sum_order_by { + accuracy: order_by + contest_effect_id: order_by + contest_type_id: order_by + generation_id: order_by + id: order_by + move_damage_class_id: order_by + move_effect_chance: order_by + move_effect_id: order_by + move_target_id: order_by + power: order_by + pp: order_by + priority: order_by + super_contest_effect_id: order_by + type_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_move_var_pop_fields { + accuracy: Float + contest_effect_id: Float + contest_type_id: Float + generation_id: Float + id: Float + move_damage_class_id: Float + move_effect_chance: Float + move_effect_id: Float + move_target_id: Float + power: Float + pp: Float + priority: Float + super_contest_effect_id: Float + type_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_move" +""" +input pokemon_v2_move_var_pop_order_by { + accuracy: order_by + contest_effect_id: order_by + contest_type_id: order_by + generation_id: order_by + id: order_by + move_damage_class_id: order_by + move_effect_chance: order_by + move_effect_id: order_by + move_target_id: order_by + power: order_by + pp: order_by + priority: order_by + super_contest_effect_id: order_by + type_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_move_var_samp_fields { + accuracy: Float + contest_effect_id: Float + contest_type_id: Float + generation_id: Float + id: Float + move_damage_class_id: Float + move_effect_chance: Float + move_effect_id: Float + move_target_id: Float + power: Float + pp: Float + priority: Float + super_contest_effect_id: Float + type_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_move" +""" +input pokemon_v2_move_var_samp_order_by { + accuracy: order_by + contest_effect_id: order_by + contest_type_id: order_by + generation_id: order_by + id: order_by + move_damage_class_id: order_by + move_effect_chance: order_by + move_effect_id: order_by + move_target_id: order_by + power: order_by + pp: order_by + priority: order_by + super_contest_effect_id: order_by + type_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_move_variance_fields { + accuracy: Float + contest_effect_id: Float + contest_type_id: Float + generation_id: Float + id: Float + move_damage_class_id: Float + move_effect_chance: Float + move_effect_id: Float + move_target_id: Float + power: Float + pp: Float + priority: Float + super_contest_effect_id: Float + type_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_move" +""" +input pokemon_v2_move_variance_order_by { + accuracy: order_by + contest_effect_id: order_by + contest_type_id: order_by + generation_id: order_by + id: order_by + move_damage_class_id: order_by + move_effect_chance: order_by + move_effect_id: order_by + move_target_id: order_by + power: order_by + pp: order_by + priority: order_by + super_contest_effect_id: order_by + type_id: order_by +} + +""" +columns and relationships of "pokemon_v2_moveattribute" +""" +type pokemon_v2_moveattribute { + id: Int! + name: String! + + """An array relationship""" + pokemon_v2_moveattributedescriptions( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveattributedescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveattributedescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveattributedescription_bool_exp + ): [pokemon_v2_moveattributedescription!]! + + """An aggregate relationship""" + pokemon_v2_moveattributedescriptions_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveattributedescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveattributedescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveattributedescription_bool_exp + ): pokemon_v2_moveattributedescription_aggregate! + + """An array relationship""" + pokemon_v2_moveattributemaps( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveattributemap_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveattributemap_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveattributemap_bool_exp + ): [pokemon_v2_moveattributemap!]! + + """An aggregate relationship""" + pokemon_v2_moveattributemaps_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveattributemap_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveattributemap_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveattributemap_bool_exp + ): pokemon_v2_moveattributemap_aggregate! + + """An array relationship""" + pokemon_v2_moveattributenames( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveattributename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveattributename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveattributename_bool_exp + ): [pokemon_v2_moveattributename!]! + + """An aggregate relationship""" + pokemon_v2_moveattributenames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveattributename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveattributename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveattributename_bool_exp + ): pokemon_v2_moveattributename_aggregate! +} + +""" +aggregated selection of "pokemon_v2_moveattribute" +""" +type pokemon_v2_moveattribute_aggregate { + aggregate: pokemon_v2_moveattribute_aggregate_fields + nodes: [pokemon_v2_moveattribute!]! +} + +""" +aggregate fields of "pokemon_v2_moveattribute" +""" +type pokemon_v2_moveattribute_aggregate_fields { + avg: pokemon_v2_moveattribute_avg_fields + count(columns: [pokemon_v2_moveattribute_select_column!], distinct: Boolean): Int! + max: pokemon_v2_moveattribute_max_fields + min: pokemon_v2_moveattribute_min_fields + stddev: pokemon_v2_moveattribute_stddev_fields + stddev_pop: pokemon_v2_moveattribute_stddev_pop_fields + stddev_samp: pokemon_v2_moveattribute_stddev_samp_fields + sum: pokemon_v2_moveattribute_sum_fields + var_pop: pokemon_v2_moveattribute_var_pop_fields + var_samp: pokemon_v2_moveattribute_var_samp_fields + variance: pokemon_v2_moveattribute_variance_fields +} + +"""aggregate avg on columns""" +type pokemon_v2_moveattribute_avg_fields { + id: Float +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_moveattribute". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_moveattribute_bool_exp { + _and: [pokemon_v2_moveattribute_bool_exp!] + _not: pokemon_v2_moveattribute_bool_exp + _or: [pokemon_v2_moveattribute_bool_exp!] + id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_moveattributedescriptions: pokemon_v2_moveattributedescription_bool_exp + pokemon_v2_moveattributedescriptions_aggregate: pokemon_v2_moveattributedescription_aggregate_bool_exp + pokemon_v2_moveattributemaps: pokemon_v2_moveattributemap_bool_exp + pokemon_v2_moveattributemaps_aggregate: pokemon_v2_moveattributemap_aggregate_bool_exp + pokemon_v2_moveattributenames: pokemon_v2_moveattributename_bool_exp + pokemon_v2_moveattributenames_aggregate: pokemon_v2_moveattributename_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_moveattribute_max_fields { + id: Int + name: String +} + +"""aggregate min on columns""" +type pokemon_v2_moveattribute_min_fields { + id: Int + name: String +} + +"""Ordering options when selecting data from "pokemon_v2_moveattribute".""" +input pokemon_v2_moveattribute_order_by { + id: order_by + name: order_by + pokemon_v2_moveattributedescriptions_aggregate: pokemon_v2_moveattributedescription_aggregate_order_by + pokemon_v2_moveattributemaps_aggregate: pokemon_v2_moveattributemap_aggregate_order_by + pokemon_v2_moveattributenames_aggregate: pokemon_v2_moveattributename_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_moveattribute" +""" +enum pokemon_v2_moveattribute_select_column { + """column name""" + id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_moveattribute_stddev_fields { + id: Float +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_moveattribute_stddev_pop_fields { + id: Float +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_moveattribute_stddev_samp_fields { + id: Float +} + +""" +Streaming cursor of the table "pokemon_v2_moveattribute" +""" +input pokemon_v2_moveattribute_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_moveattribute_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_moveattribute_stream_cursor_value_input { + id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_moveattribute_sum_fields { + id: Int +} + +"""aggregate var_pop on columns""" +type pokemon_v2_moveattribute_var_pop_fields { + id: Float +} + +"""aggregate var_samp on columns""" +type pokemon_v2_moveattribute_var_samp_fields { + id: Float +} + +"""aggregate variance on columns""" +type pokemon_v2_moveattribute_variance_fields { + id: Float +} + +""" +columns and relationships of "pokemon_v2_moveattributedescription" +""" +type pokemon_v2_moveattributedescription { + description: String! + id: Int! + language_id: Int + move_attribute_id: Int + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_moveattribute: pokemon_v2_moveattribute +} + +""" +aggregated selection of "pokemon_v2_moveattributedescription" +""" +type pokemon_v2_moveattributedescription_aggregate { + aggregate: pokemon_v2_moveattributedescription_aggregate_fields + nodes: [pokemon_v2_moveattributedescription!]! +} + +input pokemon_v2_moveattributedescription_aggregate_bool_exp { + count: pokemon_v2_moveattributedescription_aggregate_bool_exp_count +} + +input pokemon_v2_moveattributedescription_aggregate_bool_exp_count { + arguments: [pokemon_v2_moveattributedescription_select_column!] + distinct: Boolean + filter: pokemon_v2_moveattributedescription_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_moveattributedescription" +""" +type pokemon_v2_moveattributedescription_aggregate_fields { + avg: pokemon_v2_moveattributedescription_avg_fields + count(columns: [pokemon_v2_moveattributedescription_select_column!], distinct: Boolean): Int! + max: pokemon_v2_moveattributedescription_max_fields + min: pokemon_v2_moveattributedescription_min_fields + stddev: pokemon_v2_moveattributedescription_stddev_fields + stddev_pop: pokemon_v2_moveattributedescription_stddev_pop_fields + stddev_samp: pokemon_v2_moveattributedescription_stddev_samp_fields + sum: pokemon_v2_moveattributedescription_sum_fields + var_pop: pokemon_v2_moveattributedescription_var_pop_fields + var_samp: pokemon_v2_moveattributedescription_var_samp_fields + variance: pokemon_v2_moveattributedescription_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_moveattributedescription" +""" +input pokemon_v2_moveattributedescription_aggregate_order_by { + avg: pokemon_v2_moveattributedescription_avg_order_by + count: order_by + max: pokemon_v2_moveattributedescription_max_order_by + min: pokemon_v2_moveattributedescription_min_order_by + stddev: pokemon_v2_moveattributedescription_stddev_order_by + stddev_pop: pokemon_v2_moveattributedescription_stddev_pop_order_by + stddev_samp: pokemon_v2_moveattributedescription_stddev_samp_order_by + sum: pokemon_v2_moveattributedescription_sum_order_by + var_pop: pokemon_v2_moveattributedescription_var_pop_order_by + var_samp: pokemon_v2_moveattributedescription_var_samp_order_by + variance: pokemon_v2_moveattributedescription_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_moveattributedescription_avg_fields { + id: Float + language_id: Float + move_attribute_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_moveattributedescription" +""" +input pokemon_v2_moveattributedescription_avg_order_by { + id: order_by + language_id: order_by + move_attribute_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_moveattributedescription". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_moveattributedescription_bool_exp { + _and: [pokemon_v2_moveattributedescription_bool_exp!] + _not: pokemon_v2_moveattributedescription_bool_exp + _or: [pokemon_v2_moveattributedescription_bool_exp!] + description: String_comparison_exp + id: Int_comparison_exp + language_id: Int_comparison_exp + move_attribute_id: Int_comparison_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_moveattribute: pokemon_v2_moveattribute_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_moveattributedescription_max_fields { + description: String + id: Int + language_id: Int + move_attribute_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_moveattributedescription" +""" +input pokemon_v2_moveattributedescription_max_order_by { + description: order_by + id: order_by + language_id: order_by + move_attribute_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_moveattributedescription_min_fields { + description: String + id: Int + language_id: Int + move_attribute_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_moveattributedescription" +""" +input pokemon_v2_moveattributedescription_min_order_by { + description: order_by + id: order_by + language_id: order_by + move_attribute_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_moveattributedescription". +""" +input pokemon_v2_moveattributedescription_order_by { + description: order_by + id: order_by + language_id: order_by + move_attribute_id: order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_moveattribute: pokemon_v2_moveattribute_order_by +} + +""" +select columns of table "pokemon_v2_moveattributedescription" +""" +enum pokemon_v2_moveattributedescription_select_column { + """column name""" + description + + """column name""" + id + + """column name""" + language_id + + """column name""" + move_attribute_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_moveattributedescription_stddev_fields { + id: Float + language_id: Float + move_attribute_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_moveattributedescription" +""" +input pokemon_v2_moveattributedescription_stddev_order_by { + id: order_by + language_id: order_by + move_attribute_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_moveattributedescription_stddev_pop_fields { + id: Float + language_id: Float + move_attribute_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_moveattributedescription" +""" +input pokemon_v2_moveattributedescription_stddev_pop_order_by { + id: order_by + language_id: order_by + move_attribute_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_moveattributedescription_stddev_samp_fields { + id: Float + language_id: Float + move_attribute_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_moveattributedescription" +""" +input pokemon_v2_moveattributedescription_stddev_samp_order_by { + id: order_by + language_id: order_by + move_attribute_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_moveattributedescription" +""" +input pokemon_v2_moveattributedescription_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_moveattributedescription_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_moveattributedescription_stream_cursor_value_input { + description: String + id: Int + language_id: Int + move_attribute_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_moveattributedescription_sum_fields { + id: Int + language_id: Int + move_attribute_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_moveattributedescription" +""" +input pokemon_v2_moveattributedescription_sum_order_by { + id: order_by + language_id: order_by + move_attribute_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_moveattributedescription_var_pop_fields { + id: Float + language_id: Float + move_attribute_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_moveattributedescription" +""" +input pokemon_v2_moveattributedescription_var_pop_order_by { + id: order_by + language_id: order_by + move_attribute_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_moveattributedescription_var_samp_fields { + id: Float + language_id: Float + move_attribute_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_moveattributedescription" +""" +input pokemon_v2_moveattributedescription_var_samp_order_by { + id: order_by + language_id: order_by + move_attribute_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_moveattributedescription_variance_fields { + id: Float + language_id: Float + move_attribute_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_moveattributedescription" +""" +input pokemon_v2_moveattributedescription_variance_order_by { + id: order_by + language_id: order_by + move_attribute_id: order_by +} + +""" +columns and relationships of "pokemon_v2_moveattributemap" +""" +type pokemon_v2_moveattributemap { + id: Int! + move_attribute_id: Int + move_id: Int + + """An object relationship""" + pokemon_v2_move: pokemon_v2_move + + """An object relationship""" + pokemon_v2_moveattribute: pokemon_v2_moveattribute +} + +""" +aggregated selection of "pokemon_v2_moveattributemap" +""" +type pokemon_v2_moveattributemap_aggregate { + aggregate: pokemon_v2_moveattributemap_aggregate_fields + nodes: [pokemon_v2_moveattributemap!]! +} + +input pokemon_v2_moveattributemap_aggregate_bool_exp { + count: pokemon_v2_moveattributemap_aggregate_bool_exp_count +} + +input pokemon_v2_moveattributemap_aggregate_bool_exp_count { + arguments: [pokemon_v2_moveattributemap_select_column!] + distinct: Boolean + filter: pokemon_v2_moveattributemap_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_moveattributemap" +""" +type pokemon_v2_moveattributemap_aggregate_fields { + avg: pokemon_v2_moveattributemap_avg_fields + count(columns: [pokemon_v2_moveattributemap_select_column!], distinct: Boolean): Int! + max: pokemon_v2_moveattributemap_max_fields + min: pokemon_v2_moveattributemap_min_fields + stddev: pokemon_v2_moveattributemap_stddev_fields + stddev_pop: pokemon_v2_moveattributemap_stddev_pop_fields + stddev_samp: pokemon_v2_moveattributemap_stddev_samp_fields + sum: pokemon_v2_moveattributemap_sum_fields + var_pop: pokemon_v2_moveattributemap_var_pop_fields + var_samp: pokemon_v2_moveattributemap_var_samp_fields + variance: pokemon_v2_moveattributemap_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_moveattributemap" +""" +input pokemon_v2_moveattributemap_aggregate_order_by { + avg: pokemon_v2_moveattributemap_avg_order_by + count: order_by + max: pokemon_v2_moveattributemap_max_order_by + min: pokemon_v2_moveattributemap_min_order_by + stddev: pokemon_v2_moveattributemap_stddev_order_by + stddev_pop: pokemon_v2_moveattributemap_stddev_pop_order_by + stddev_samp: pokemon_v2_moveattributemap_stddev_samp_order_by + sum: pokemon_v2_moveattributemap_sum_order_by + var_pop: pokemon_v2_moveattributemap_var_pop_order_by + var_samp: pokemon_v2_moveattributemap_var_samp_order_by + variance: pokemon_v2_moveattributemap_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_moveattributemap_avg_fields { + id: Float + move_attribute_id: Float + move_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_moveattributemap" +""" +input pokemon_v2_moveattributemap_avg_order_by { + id: order_by + move_attribute_id: order_by + move_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_moveattributemap". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_moveattributemap_bool_exp { + _and: [pokemon_v2_moveattributemap_bool_exp!] + _not: pokemon_v2_moveattributemap_bool_exp + _or: [pokemon_v2_moveattributemap_bool_exp!] + id: Int_comparison_exp + move_attribute_id: Int_comparison_exp + move_id: Int_comparison_exp + pokemon_v2_move: pokemon_v2_move_bool_exp + pokemon_v2_moveattribute: pokemon_v2_moveattribute_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_moveattributemap_max_fields { + id: Int + move_attribute_id: Int + move_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_moveattributemap" +""" +input pokemon_v2_moveattributemap_max_order_by { + id: order_by + move_attribute_id: order_by + move_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_moveattributemap_min_fields { + id: Int + move_attribute_id: Int + move_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_moveattributemap" +""" +input pokemon_v2_moveattributemap_min_order_by { + id: order_by + move_attribute_id: order_by + move_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_moveattributemap". +""" +input pokemon_v2_moveattributemap_order_by { + id: order_by + move_attribute_id: order_by + move_id: order_by + pokemon_v2_move: pokemon_v2_move_order_by + pokemon_v2_moveattribute: pokemon_v2_moveattribute_order_by +} + +""" +select columns of table "pokemon_v2_moveattributemap" +""" +enum pokemon_v2_moveattributemap_select_column { + """column name""" + id + + """column name""" + move_attribute_id + + """column name""" + move_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_moveattributemap_stddev_fields { + id: Float + move_attribute_id: Float + move_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_moveattributemap" +""" +input pokemon_v2_moveattributemap_stddev_order_by { + id: order_by + move_attribute_id: order_by + move_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_moveattributemap_stddev_pop_fields { + id: Float + move_attribute_id: Float + move_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_moveattributemap" +""" +input pokemon_v2_moveattributemap_stddev_pop_order_by { + id: order_by + move_attribute_id: order_by + move_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_moveattributemap_stddev_samp_fields { + id: Float + move_attribute_id: Float + move_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_moveattributemap" +""" +input pokemon_v2_moveattributemap_stddev_samp_order_by { + id: order_by + move_attribute_id: order_by + move_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_moveattributemap" +""" +input pokemon_v2_moveattributemap_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_moveattributemap_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_moveattributemap_stream_cursor_value_input { + id: Int + move_attribute_id: Int + move_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_moveattributemap_sum_fields { + id: Int + move_attribute_id: Int + move_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_moveattributemap" +""" +input pokemon_v2_moveattributemap_sum_order_by { + id: order_by + move_attribute_id: order_by + move_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_moveattributemap_var_pop_fields { + id: Float + move_attribute_id: Float + move_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_moveattributemap" +""" +input pokemon_v2_moveattributemap_var_pop_order_by { + id: order_by + move_attribute_id: order_by + move_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_moveattributemap_var_samp_fields { + id: Float + move_attribute_id: Float + move_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_moveattributemap" +""" +input pokemon_v2_moveattributemap_var_samp_order_by { + id: order_by + move_attribute_id: order_by + move_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_moveattributemap_variance_fields { + id: Float + move_attribute_id: Float + move_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_moveattributemap" +""" +input pokemon_v2_moveattributemap_variance_order_by { + id: order_by + move_attribute_id: order_by + move_id: order_by +} + +""" +columns and relationships of "pokemon_v2_moveattributename" +""" +type pokemon_v2_moveattributename { + id: Int! + language_id: Int + move_attribute_id: Int + name: String! + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_moveattribute: pokemon_v2_moveattribute +} + +""" +aggregated selection of "pokemon_v2_moveattributename" +""" +type pokemon_v2_moveattributename_aggregate { + aggregate: pokemon_v2_moveattributename_aggregate_fields + nodes: [pokemon_v2_moveattributename!]! +} + +input pokemon_v2_moveattributename_aggregate_bool_exp { + count: pokemon_v2_moveattributename_aggregate_bool_exp_count +} + +input pokemon_v2_moveattributename_aggregate_bool_exp_count { + arguments: [pokemon_v2_moveattributename_select_column!] + distinct: Boolean + filter: pokemon_v2_moveattributename_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_moveattributename" +""" +type pokemon_v2_moveattributename_aggregate_fields { + avg: pokemon_v2_moveattributename_avg_fields + count(columns: [pokemon_v2_moveattributename_select_column!], distinct: Boolean): Int! + max: pokemon_v2_moveattributename_max_fields + min: pokemon_v2_moveattributename_min_fields + stddev: pokemon_v2_moveattributename_stddev_fields + stddev_pop: pokemon_v2_moveattributename_stddev_pop_fields + stddev_samp: pokemon_v2_moveattributename_stddev_samp_fields + sum: pokemon_v2_moveattributename_sum_fields + var_pop: pokemon_v2_moveattributename_var_pop_fields + var_samp: pokemon_v2_moveattributename_var_samp_fields + variance: pokemon_v2_moveattributename_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_moveattributename" +""" +input pokemon_v2_moveattributename_aggregate_order_by { + avg: pokemon_v2_moveattributename_avg_order_by + count: order_by + max: pokemon_v2_moveattributename_max_order_by + min: pokemon_v2_moveattributename_min_order_by + stddev: pokemon_v2_moveattributename_stddev_order_by + stddev_pop: pokemon_v2_moveattributename_stddev_pop_order_by + stddev_samp: pokemon_v2_moveattributename_stddev_samp_order_by + sum: pokemon_v2_moveattributename_sum_order_by + var_pop: pokemon_v2_moveattributename_var_pop_order_by + var_samp: pokemon_v2_moveattributename_var_samp_order_by + variance: pokemon_v2_moveattributename_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_moveattributename_avg_fields { + id: Float + language_id: Float + move_attribute_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_moveattributename" +""" +input pokemon_v2_moveattributename_avg_order_by { + id: order_by + language_id: order_by + move_attribute_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_moveattributename". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_moveattributename_bool_exp { + _and: [pokemon_v2_moveattributename_bool_exp!] + _not: pokemon_v2_moveattributename_bool_exp + _or: [pokemon_v2_moveattributename_bool_exp!] + id: Int_comparison_exp + language_id: Int_comparison_exp + move_attribute_id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_moveattribute: pokemon_v2_moveattribute_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_moveattributename_max_fields { + id: Int + language_id: Int + move_attribute_id: Int + name: String +} + +""" +order by max() on columns of table "pokemon_v2_moveattributename" +""" +input pokemon_v2_moveattributename_max_order_by { + id: order_by + language_id: order_by + move_attribute_id: order_by + name: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_moveattributename_min_fields { + id: Int + language_id: Int + move_attribute_id: Int + name: String +} + +""" +order by min() on columns of table "pokemon_v2_moveattributename" +""" +input pokemon_v2_moveattributename_min_order_by { + id: order_by + language_id: order_by + move_attribute_id: order_by + name: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_moveattributename". +""" +input pokemon_v2_moveattributename_order_by { + id: order_by + language_id: order_by + move_attribute_id: order_by + name: order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_moveattribute: pokemon_v2_moveattribute_order_by +} + +""" +select columns of table "pokemon_v2_moveattributename" +""" +enum pokemon_v2_moveattributename_select_column { + """column name""" + id + + """column name""" + language_id + + """column name""" + move_attribute_id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_moveattributename_stddev_fields { + id: Float + language_id: Float + move_attribute_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_moveattributename" +""" +input pokemon_v2_moveattributename_stddev_order_by { + id: order_by + language_id: order_by + move_attribute_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_moveattributename_stddev_pop_fields { + id: Float + language_id: Float + move_attribute_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_moveattributename" +""" +input pokemon_v2_moveattributename_stddev_pop_order_by { + id: order_by + language_id: order_by + move_attribute_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_moveattributename_stddev_samp_fields { + id: Float + language_id: Float + move_attribute_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_moveattributename" +""" +input pokemon_v2_moveattributename_stddev_samp_order_by { + id: order_by + language_id: order_by + move_attribute_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_moveattributename" +""" +input pokemon_v2_moveattributename_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_moveattributename_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_moveattributename_stream_cursor_value_input { + id: Int + language_id: Int + move_attribute_id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_moveattributename_sum_fields { + id: Int + language_id: Int + move_attribute_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_moveattributename" +""" +input pokemon_v2_moveattributename_sum_order_by { + id: order_by + language_id: order_by + move_attribute_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_moveattributename_var_pop_fields { + id: Float + language_id: Float + move_attribute_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_moveattributename" +""" +input pokemon_v2_moveattributename_var_pop_order_by { + id: order_by + language_id: order_by + move_attribute_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_moveattributename_var_samp_fields { + id: Float + language_id: Float + move_attribute_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_moveattributename" +""" +input pokemon_v2_moveattributename_var_samp_order_by { + id: order_by + language_id: order_by + move_attribute_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_moveattributename_variance_fields { + id: Float + language_id: Float + move_attribute_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_moveattributename" +""" +input pokemon_v2_moveattributename_variance_order_by { + id: order_by + language_id: order_by + move_attribute_id: order_by +} + +""" +columns and relationships of "pokemon_v2_movebattlestyle" +""" +type pokemon_v2_movebattlestyle { + id: Int! + name: String! + + """An array relationship""" + pokemon_v2_movebattlestylenames( + """distinct select on columns""" + distinct_on: [pokemon_v2_movebattlestylename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movebattlestylename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movebattlestylename_bool_exp + ): [pokemon_v2_movebattlestylename!]! + + """An aggregate relationship""" + pokemon_v2_movebattlestylenames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movebattlestylename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movebattlestylename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movebattlestylename_bool_exp + ): pokemon_v2_movebattlestylename_aggregate! + + """An array relationship""" + pokemon_v2_naturebattlestylepreferences( + """distinct select on columns""" + distinct_on: [pokemon_v2_naturebattlestylepreference_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_naturebattlestylepreference_order_by!] + + """filter the rows returned""" + where: pokemon_v2_naturebattlestylepreference_bool_exp + ): [pokemon_v2_naturebattlestylepreference!]! + + """An aggregate relationship""" + pokemon_v2_naturebattlestylepreferences_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_naturebattlestylepreference_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_naturebattlestylepreference_order_by!] + + """filter the rows returned""" + where: pokemon_v2_naturebattlestylepreference_bool_exp + ): pokemon_v2_naturebattlestylepreference_aggregate! +} + +""" +aggregated selection of "pokemon_v2_movebattlestyle" +""" +type pokemon_v2_movebattlestyle_aggregate { + aggregate: pokemon_v2_movebattlestyle_aggregate_fields + nodes: [pokemon_v2_movebattlestyle!]! +} + +""" +aggregate fields of "pokemon_v2_movebattlestyle" +""" +type pokemon_v2_movebattlestyle_aggregate_fields { + avg: pokemon_v2_movebattlestyle_avg_fields + count(columns: [pokemon_v2_movebattlestyle_select_column!], distinct: Boolean): Int! + max: pokemon_v2_movebattlestyle_max_fields + min: pokemon_v2_movebattlestyle_min_fields + stddev: pokemon_v2_movebattlestyle_stddev_fields + stddev_pop: pokemon_v2_movebattlestyle_stddev_pop_fields + stddev_samp: pokemon_v2_movebattlestyle_stddev_samp_fields + sum: pokemon_v2_movebattlestyle_sum_fields + var_pop: pokemon_v2_movebattlestyle_var_pop_fields + var_samp: pokemon_v2_movebattlestyle_var_samp_fields + variance: pokemon_v2_movebattlestyle_variance_fields +} + +"""aggregate avg on columns""" +type pokemon_v2_movebattlestyle_avg_fields { + id: Float +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_movebattlestyle". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_movebattlestyle_bool_exp { + _and: [pokemon_v2_movebattlestyle_bool_exp!] + _not: pokemon_v2_movebattlestyle_bool_exp + _or: [pokemon_v2_movebattlestyle_bool_exp!] + id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_movebattlestylenames: pokemon_v2_movebattlestylename_bool_exp + pokemon_v2_movebattlestylenames_aggregate: pokemon_v2_movebattlestylename_aggregate_bool_exp + pokemon_v2_naturebattlestylepreferences: pokemon_v2_naturebattlestylepreference_bool_exp + pokemon_v2_naturebattlestylepreferences_aggregate: pokemon_v2_naturebattlestylepreference_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_movebattlestyle_max_fields { + id: Int + name: String +} + +"""aggregate min on columns""" +type pokemon_v2_movebattlestyle_min_fields { + id: Int + name: String +} + +""" +Ordering options when selecting data from "pokemon_v2_movebattlestyle". +""" +input pokemon_v2_movebattlestyle_order_by { + id: order_by + name: order_by + pokemon_v2_movebattlestylenames_aggregate: pokemon_v2_movebattlestylename_aggregate_order_by + pokemon_v2_naturebattlestylepreferences_aggregate: pokemon_v2_naturebattlestylepreference_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_movebattlestyle" +""" +enum pokemon_v2_movebattlestyle_select_column { + """column name""" + id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_movebattlestyle_stddev_fields { + id: Float +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_movebattlestyle_stddev_pop_fields { + id: Float +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_movebattlestyle_stddev_samp_fields { + id: Float +} + +""" +Streaming cursor of the table "pokemon_v2_movebattlestyle" +""" +input pokemon_v2_movebattlestyle_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_movebattlestyle_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_movebattlestyle_stream_cursor_value_input { + id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_movebattlestyle_sum_fields { + id: Int +} + +"""aggregate var_pop on columns""" +type pokemon_v2_movebattlestyle_var_pop_fields { + id: Float +} + +"""aggregate var_samp on columns""" +type pokemon_v2_movebattlestyle_var_samp_fields { + id: Float +} + +"""aggregate variance on columns""" +type pokemon_v2_movebattlestyle_variance_fields { + id: Float +} + +""" +columns and relationships of "pokemon_v2_movebattlestylename" +""" +type pokemon_v2_movebattlestylename { + id: Int! + language_id: Int + move_battle_style_id: Int + name: String! + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_movebattlestyle: pokemon_v2_movebattlestyle +} + +""" +aggregated selection of "pokemon_v2_movebattlestylename" +""" +type pokemon_v2_movebattlestylename_aggregate { + aggregate: pokemon_v2_movebattlestylename_aggregate_fields + nodes: [pokemon_v2_movebattlestylename!]! +} + +input pokemon_v2_movebattlestylename_aggregate_bool_exp { + count: pokemon_v2_movebattlestylename_aggregate_bool_exp_count +} + +input pokemon_v2_movebattlestylename_aggregate_bool_exp_count { + arguments: [pokemon_v2_movebattlestylename_select_column!] + distinct: Boolean + filter: pokemon_v2_movebattlestylename_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_movebattlestylename" +""" +type pokemon_v2_movebattlestylename_aggregate_fields { + avg: pokemon_v2_movebattlestylename_avg_fields + count(columns: [pokemon_v2_movebattlestylename_select_column!], distinct: Boolean): Int! + max: pokemon_v2_movebattlestylename_max_fields + min: pokemon_v2_movebattlestylename_min_fields + stddev: pokemon_v2_movebattlestylename_stddev_fields + stddev_pop: pokemon_v2_movebattlestylename_stddev_pop_fields + stddev_samp: pokemon_v2_movebattlestylename_stddev_samp_fields + sum: pokemon_v2_movebattlestylename_sum_fields + var_pop: pokemon_v2_movebattlestylename_var_pop_fields + var_samp: pokemon_v2_movebattlestylename_var_samp_fields + variance: pokemon_v2_movebattlestylename_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_movebattlestylename" +""" +input pokemon_v2_movebattlestylename_aggregate_order_by { + avg: pokemon_v2_movebattlestylename_avg_order_by + count: order_by + max: pokemon_v2_movebattlestylename_max_order_by + min: pokemon_v2_movebattlestylename_min_order_by + stddev: pokemon_v2_movebattlestylename_stddev_order_by + stddev_pop: pokemon_v2_movebattlestylename_stddev_pop_order_by + stddev_samp: pokemon_v2_movebattlestylename_stddev_samp_order_by + sum: pokemon_v2_movebattlestylename_sum_order_by + var_pop: pokemon_v2_movebattlestylename_var_pop_order_by + var_samp: pokemon_v2_movebattlestylename_var_samp_order_by + variance: pokemon_v2_movebattlestylename_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_movebattlestylename_avg_fields { + id: Float + language_id: Float + move_battle_style_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_movebattlestylename" +""" +input pokemon_v2_movebattlestylename_avg_order_by { + id: order_by + language_id: order_by + move_battle_style_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_movebattlestylename". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_movebattlestylename_bool_exp { + _and: [pokemon_v2_movebattlestylename_bool_exp!] + _not: pokemon_v2_movebattlestylename_bool_exp + _or: [pokemon_v2_movebattlestylename_bool_exp!] + id: Int_comparison_exp + language_id: Int_comparison_exp + move_battle_style_id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_movebattlestyle: pokemon_v2_movebattlestyle_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_movebattlestylename_max_fields { + id: Int + language_id: Int + move_battle_style_id: Int + name: String +} + +""" +order by max() on columns of table "pokemon_v2_movebattlestylename" +""" +input pokemon_v2_movebattlestylename_max_order_by { + id: order_by + language_id: order_by + move_battle_style_id: order_by + name: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_movebattlestylename_min_fields { + id: Int + language_id: Int + move_battle_style_id: Int + name: String +} + +""" +order by min() on columns of table "pokemon_v2_movebattlestylename" +""" +input pokemon_v2_movebattlestylename_min_order_by { + id: order_by + language_id: order_by + move_battle_style_id: order_by + name: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_movebattlestylename". +""" +input pokemon_v2_movebattlestylename_order_by { + id: order_by + language_id: order_by + move_battle_style_id: order_by + name: order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_movebattlestyle: pokemon_v2_movebattlestyle_order_by +} + +""" +select columns of table "pokemon_v2_movebattlestylename" +""" +enum pokemon_v2_movebattlestylename_select_column { + """column name""" + id + + """column name""" + language_id + + """column name""" + move_battle_style_id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_movebattlestylename_stddev_fields { + id: Float + language_id: Float + move_battle_style_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_movebattlestylename" +""" +input pokemon_v2_movebattlestylename_stddev_order_by { + id: order_by + language_id: order_by + move_battle_style_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_movebattlestylename_stddev_pop_fields { + id: Float + language_id: Float + move_battle_style_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_movebattlestylename" +""" +input pokemon_v2_movebattlestylename_stddev_pop_order_by { + id: order_by + language_id: order_by + move_battle_style_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_movebattlestylename_stddev_samp_fields { + id: Float + language_id: Float + move_battle_style_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_movebattlestylename" +""" +input pokemon_v2_movebattlestylename_stddev_samp_order_by { + id: order_by + language_id: order_by + move_battle_style_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_movebattlestylename" +""" +input pokemon_v2_movebattlestylename_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_movebattlestylename_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_movebattlestylename_stream_cursor_value_input { + id: Int + language_id: Int + move_battle_style_id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_movebattlestylename_sum_fields { + id: Int + language_id: Int + move_battle_style_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_movebattlestylename" +""" +input pokemon_v2_movebattlestylename_sum_order_by { + id: order_by + language_id: order_by + move_battle_style_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_movebattlestylename_var_pop_fields { + id: Float + language_id: Float + move_battle_style_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_movebattlestylename" +""" +input pokemon_v2_movebattlestylename_var_pop_order_by { + id: order_by + language_id: order_by + move_battle_style_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_movebattlestylename_var_samp_fields { + id: Float + language_id: Float + move_battle_style_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_movebattlestylename" +""" +input pokemon_v2_movebattlestylename_var_samp_order_by { + id: order_by + language_id: order_by + move_battle_style_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_movebattlestylename_variance_fields { + id: Float + language_id: Float + move_battle_style_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_movebattlestylename" +""" +input pokemon_v2_movebattlestylename_variance_order_by { + id: order_by + language_id: order_by + move_battle_style_id: order_by +} + +""" +columns and relationships of "pokemon_v2_movechange" +""" +type pokemon_v2_movechange { + accuracy: Int + id: Int! + move_effect_chance: Int + move_effect_id: Int + move_id: Int + + """An object relationship""" + pokemon_v2_move: pokemon_v2_move + + """An object relationship""" + pokemon_v2_moveeffect: pokemon_v2_moveeffect + + """An object relationship""" + pokemon_v2_type: pokemon_v2_type + + """An object relationship""" + pokemon_v2_versiongroup: pokemon_v2_versiongroup + power: Int + pp: Int + type_id: Int + version_group_id: Int +} + +""" +aggregated selection of "pokemon_v2_movechange" +""" +type pokemon_v2_movechange_aggregate { + aggregate: pokemon_v2_movechange_aggregate_fields + nodes: [pokemon_v2_movechange!]! +} + +input pokemon_v2_movechange_aggregate_bool_exp { + count: pokemon_v2_movechange_aggregate_bool_exp_count +} + +input pokemon_v2_movechange_aggregate_bool_exp_count { + arguments: [pokemon_v2_movechange_select_column!] + distinct: Boolean + filter: pokemon_v2_movechange_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_movechange" +""" +type pokemon_v2_movechange_aggregate_fields { + avg: pokemon_v2_movechange_avg_fields + count(columns: [pokemon_v2_movechange_select_column!], distinct: Boolean): Int! + max: pokemon_v2_movechange_max_fields + min: pokemon_v2_movechange_min_fields + stddev: pokemon_v2_movechange_stddev_fields + stddev_pop: pokemon_v2_movechange_stddev_pop_fields + stddev_samp: pokemon_v2_movechange_stddev_samp_fields + sum: pokemon_v2_movechange_sum_fields + var_pop: pokemon_v2_movechange_var_pop_fields + var_samp: pokemon_v2_movechange_var_samp_fields + variance: pokemon_v2_movechange_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_movechange" +""" +input pokemon_v2_movechange_aggregate_order_by { + avg: pokemon_v2_movechange_avg_order_by + count: order_by + max: pokemon_v2_movechange_max_order_by + min: pokemon_v2_movechange_min_order_by + stddev: pokemon_v2_movechange_stddev_order_by + stddev_pop: pokemon_v2_movechange_stddev_pop_order_by + stddev_samp: pokemon_v2_movechange_stddev_samp_order_by + sum: pokemon_v2_movechange_sum_order_by + var_pop: pokemon_v2_movechange_var_pop_order_by + var_samp: pokemon_v2_movechange_var_samp_order_by + variance: pokemon_v2_movechange_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_movechange_avg_fields { + accuracy: Float + id: Float + move_effect_chance: Float + move_effect_id: Float + move_id: Float + power: Float + pp: Float + type_id: Float + version_group_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_movechange" +""" +input pokemon_v2_movechange_avg_order_by { + accuracy: order_by + id: order_by + move_effect_chance: order_by + move_effect_id: order_by + move_id: order_by + power: order_by + pp: order_by + type_id: order_by + version_group_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_movechange". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_movechange_bool_exp { + _and: [pokemon_v2_movechange_bool_exp!] + _not: pokemon_v2_movechange_bool_exp + _or: [pokemon_v2_movechange_bool_exp!] + accuracy: Int_comparison_exp + id: Int_comparison_exp + move_effect_chance: Int_comparison_exp + move_effect_id: Int_comparison_exp + move_id: Int_comparison_exp + pokemon_v2_move: pokemon_v2_move_bool_exp + pokemon_v2_moveeffect: pokemon_v2_moveeffect_bool_exp + pokemon_v2_type: pokemon_v2_type_bool_exp + pokemon_v2_versiongroup: pokemon_v2_versiongroup_bool_exp + power: Int_comparison_exp + pp: Int_comparison_exp + type_id: Int_comparison_exp + version_group_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_movechange_max_fields { + accuracy: Int + id: Int + move_effect_chance: Int + move_effect_id: Int + move_id: Int + power: Int + pp: Int + type_id: Int + version_group_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_movechange" +""" +input pokemon_v2_movechange_max_order_by { + accuracy: order_by + id: order_by + move_effect_chance: order_by + move_effect_id: order_by + move_id: order_by + power: order_by + pp: order_by + type_id: order_by + version_group_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_movechange_min_fields { + accuracy: Int + id: Int + move_effect_chance: Int + move_effect_id: Int + move_id: Int + power: Int + pp: Int + type_id: Int + version_group_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_movechange" +""" +input pokemon_v2_movechange_min_order_by { + accuracy: order_by + id: order_by + move_effect_chance: order_by + move_effect_id: order_by + move_id: order_by + power: order_by + pp: order_by + type_id: order_by + version_group_id: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_movechange".""" +input pokemon_v2_movechange_order_by { + accuracy: order_by + id: order_by + move_effect_chance: order_by + move_effect_id: order_by + move_id: order_by + pokemon_v2_move: pokemon_v2_move_order_by + pokemon_v2_moveeffect: pokemon_v2_moveeffect_order_by + pokemon_v2_type: pokemon_v2_type_order_by + pokemon_v2_versiongroup: pokemon_v2_versiongroup_order_by + power: order_by + pp: order_by + type_id: order_by + version_group_id: order_by +} + +""" +select columns of table "pokemon_v2_movechange" +""" +enum pokemon_v2_movechange_select_column { + """column name""" + accuracy + + """column name""" + id + + """column name""" + move_effect_chance + + """column name""" + move_effect_id + + """column name""" + move_id + + """column name""" + power + + """column name""" + pp + + """column name""" + type_id + + """column name""" + version_group_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_movechange_stddev_fields { + accuracy: Float + id: Float + move_effect_chance: Float + move_effect_id: Float + move_id: Float + power: Float + pp: Float + type_id: Float + version_group_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_movechange" +""" +input pokemon_v2_movechange_stddev_order_by { + accuracy: order_by + id: order_by + move_effect_chance: order_by + move_effect_id: order_by + move_id: order_by + power: order_by + pp: order_by + type_id: order_by + version_group_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_movechange_stddev_pop_fields { + accuracy: Float + id: Float + move_effect_chance: Float + move_effect_id: Float + move_id: Float + power: Float + pp: Float + type_id: Float + version_group_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_movechange" +""" +input pokemon_v2_movechange_stddev_pop_order_by { + accuracy: order_by + id: order_by + move_effect_chance: order_by + move_effect_id: order_by + move_id: order_by + power: order_by + pp: order_by + type_id: order_by + version_group_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_movechange_stddev_samp_fields { + accuracy: Float + id: Float + move_effect_chance: Float + move_effect_id: Float + move_id: Float + power: Float + pp: Float + type_id: Float + version_group_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_movechange" +""" +input pokemon_v2_movechange_stddev_samp_order_by { + accuracy: order_by + id: order_by + move_effect_chance: order_by + move_effect_id: order_by + move_id: order_by + power: order_by + pp: order_by + type_id: order_by + version_group_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_movechange" +""" +input pokemon_v2_movechange_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_movechange_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_movechange_stream_cursor_value_input { + accuracy: Int + id: Int + move_effect_chance: Int + move_effect_id: Int + move_id: Int + power: Int + pp: Int + type_id: Int + version_group_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_movechange_sum_fields { + accuracy: Int + id: Int + move_effect_chance: Int + move_effect_id: Int + move_id: Int + power: Int + pp: Int + type_id: Int + version_group_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_movechange" +""" +input pokemon_v2_movechange_sum_order_by { + accuracy: order_by + id: order_by + move_effect_chance: order_by + move_effect_id: order_by + move_id: order_by + power: order_by + pp: order_by + type_id: order_by + version_group_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_movechange_var_pop_fields { + accuracy: Float + id: Float + move_effect_chance: Float + move_effect_id: Float + move_id: Float + power: Float + pp: Float + type_id: Float + version_group_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_movechange" +""" +input pokemon_v2_movechange_var_pop_order_by { + accuracy: order_by + id: order_by + move_effect_chance: order_by + move_effect_id: order_by + move_id: order_by + power: order_by + pp: order_by + type_id: order_by + version_group_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_movechange_var_samp_fields { + accuracy: Float + id: Float + move_effect_chance: Float + move_effect_id: Float + move_id: Float + power: Float + pp: Float + type_id: Float + version_group_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_movechange" +""" +input pokemon_v2_movechange_var_samp_order_by { + accuracy: order_by + id: order_by + move_effect_chance: order_by + move_effect_id: order_by + move_id: order_by + power: order_by + pp: order_by + type_id: order_by + version_group_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_movechange_variance_fields { + accuracy: Float + id: Float + move_effect_chance: Float + move_effect_id: Float + move_id: Float + power: Float + pp: Float + type_id: Float + version_group_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_movechange" +""" +input pokemon_v2_movechange_variance_order_by { + accuracy: order_by + id: order_by + move_effect_chance: order_by + move_effect_id: order_by + move_id: order_by + power: order_by + pp: order_by + type_id: order_by + version_group_id: order_by +} + +""" +columns and relationships of "pokemon_v2_movedamageclass" +""" +type pokemon_v2_movedamageclass { + id: Int! + name: String! + + """An array relationship""" + pokemon_v2_movedamageclassdescriptions( + """distinct select on columns""" + distinct_on: [pokemon_v2_movedamageclassdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movedamageclassdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movedamageclassdescription_bool_exp + ): [pokemon_v2_movedamageclassdescription!]! + + """An aggregate relationship""" + pokemon_v2_movedamageclassdescriptions_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movedamageclassdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movedamageclassdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movedamageclassdescription_bool_exp + ): pokemon_v2_movedamageclassdescription_aggregate! + + """An array relationship""" + pokemon_v2_movedamageclassnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_movedamageclassname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movedamageclassname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movedamageclassname_bool_exp + ): [pokemon_v2_movedamageclassname!]! + + """An aggregate relationship""" + pokemon_v2_movedamageclassnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movedamageclassname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movedamageclassname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movedamageclassname_bool_exp + ): pokemon_v2_movedamageclassname_aggregate! + + """An array relationship""" + pokemon_v2_moves( + """distinct select on columns""" + distinct_on: [pokemon_v2_move_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_move_order_by!] + + """filter the rows returned""" + where: pokemon_v2_move_bool_exp + ): [pokemon_v2_move!]! + + """An aggregate relationship""" + pokemon_v2_moves_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_move_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_move_order_by!] + + """filter the rows returned""" + where: pokemon_v2_move_bool_exp + ): pokemon_v2_move_aggregate! + + """An array relationship""" + pokemon_v2_stats( + """distinct select on columns""" + distinct_on: [pokemon_v2_stat_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_stat_order_by!] + + """filter the rows returned""" + where: pokemon_v2_stat_bool_exp + ): [pokemon_v2_stat!]! + + """An aggregate relationship""" + pokemon_v2_stats_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_stat_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_stat_order_by!] + + """filter the rows returned""" + where: pokemon_v2_stat_bool_exp + ): pokemon_v2_stat_aggregate! + + """An array relationship""" + pokemon_v2_types( + """distinct select on columns""" + distinct_on: [pokemon_v2_type_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_type_order_by!] + + """filter the rows returned""" + where: pokemon_v2_type_bool_exp + ): [pokemon_v2_type!]! + + """An aggregate relationship""" + pokemon_v2_types_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_type_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_type_order_by!] + + """filter the rows returned""" + where: pokemon_v2_type_bool_exp + ): pokemon_v2_type_aggregate! +} + +""" +aggregated selection of "pokemon_v2_movedamageclass" +""" +type pokemon_v2_movedamageclass_aggregate { + aggregate: pokemon_v2_movedamageclass_aggregate_fields + nodes: [pokemon_v2_movedamageclass!]! +} + +""" +aggregate fields of "pokemon_v2_movedamageclass" +""" +type pokemon_v2_movedamageclass_aggregate_fields { + avg: pokemon_v2_movedamageclass_avg_fields + count(columns: [pokemon_v2_movedamageclass_select_column!], distinct: Boolean): Int! + max: pokemon_v2_movedamageclass_max_fields + min: pokemon_v2_movedamageclass_min_fields + stddev: pokemon_v2_movedamageclass_stddev_fields + stddev_pop: pokemon_v2_movedamageclass_stddev_pop_fields + stddev_samp: pokemon_v2_movedamageclass_stddev_samp_fields + sum: pokemon_v2_movedamageclass_sum_fields + var_pop: pokemon_v2_movedamageclass_var_pop_fields + var_samp: pokemon_v2_movedamageclass_var_samp_fields + variance: pokemon_v2_movedamageclass_variance_fields +} + +"""aggregate avg on columns""" +type pokemon_v2_movedamageclass_avg_fields { + id: Float +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_movedamageclass". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_movedamageclass_bool_exp { + _and: [pokemon_v2_movedamageclass_bool_exp!] + _not: pokemon_v2_movedamageclass_bool_exp + _or: [pokemon_v2_movedamageclass_bool_exp!] + id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_movedamageclassdescriptions: pokemon_v2_movedamageclassdescription_bool_exp + pokemon_v2_movedamageclassdescriptions_aggregate: pokemon_v2_movedamageclassdescription_aggregate_bool_exp + pokemon_v2_movedamageclassnames: pokemon_v2_movedamageclassname_bool_exp + pokemon_v2_movedamageclassnames_aggregate: pokemon_v2_movedamageclassname_aggregate_bool_exp + pokemon_v2_moves: pokemon_v2_move_bool_exp + pokemon_v2_moves_aggregate: pokemon_v2_move_aggregate_bool_exp + pokemon_v2_stats: pokemon_v2_stat_bool_exp + pokemon_v2_stats_aggregate: pokemon_v2_stat_aggregate_bool_exp + pokemon_v2_types: pokemon_v2_type_bool_exp + pokemon_v2_types_aggregate: pokemon_v2_type_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_movedamageclass_max_fields { + id: Int + name: String +} + +"""aggregate min on columns""" +type pokemon_v2_movedamageclass_min_fields { + id: Int + name: String +} + +""" +Ordering options when selecting data from "pokemon_v2_movedamageclass". +""" +input pokemon_v2_movedamageclass_order_by { + id: order_by + name: order_by + pokemon_v2_movedamageclassdescriptions_aggregate: pokemon_v2_movedamageclassdescription_aggregate_order_by + pokemon_v2_movedamageclassnames_aggregate: pokemon_v2_movedamageclassname_aggregate_order_by + pokemon_v2_moves_aggregate: pokemon_v2_move_aggregate_order_by + pokemon_v2_stats_aggregate: pokemon_v2_stat_aggregate_order_by + pokemon_v2_types_aggregate: pokemon_v2_type_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_movedamageclass" +""" +enum pokemon_v2_movedamageclass_select_column { + """column name""" + id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_movedamageclass_stddev_fields { + id: Float +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_movedamageclass_stddev_pop_fields { + id: Float +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_movedamageclass_stddev_samp_fields { + id: Float +} + +""" +Streaming cursor of the table "pokemon_v2_movedamageclass" +""" +input pokemon_v2_movedamageclass_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_movedamageclass_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_movedamageclass_stream_cursor_value_input { + id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_movedamageclass_sum_fields { + id: Int +} + +"""aggregate var_pop on columns""" +type pokemon_v2_movedamageclass_var_pop_fields { + id: Float +} + +"""aggregate var_samp on columns""" +type pokemon_v2_movedamageclass_var_samp_fields { + id: Float +} + +"""aggregate variance on columns""" +type pokemon_v2_movedamageclass_variance_fields { + id: Float +} + +""" +columns and relationships of "pokemon_v2_movedamageclassdescription" +""" +type pokemon_v2_movedamageclassdescription { + description: String! + id: Int! + language_id: Int + move_damage_class_id: Int + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_movedamageclass: pokemon_v2_movedamageclass +} + +""" +aggregated selection of "pokemon_v2_movedamageclassdescription" +""" +type pokemon_v2_movedamageclassdescription_aggregate { + aggregate: pokemon_v2_movedamageclassdescription_aggregate_fields + nodes: [pokemon_v2_movedamageclassdescription!]! +} + +input pokemon_v2_movedamageclassdescription_aggregate_bool_exp { + count: pokemon_v2_movedamageclassdescription_aggregate_bool_exp_count +} + +input pokemon_v2_movedamageclassdescription_aggregate_bool_exp_count { + arguments: [pokemon_v2_movedamageclassdescription_select_column!] + distinct: Boolean + filter: pokemon_v2_movedamageclassdescription_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_movedamageclassdescription" +""" +type pokemon_v2_movedamageclassdescription_aggregate_fields { + avg: pokemon_v2_movedamageclassdescription_avg_fields + count(columns: [pokemon_v2_movedamageclassdescription_select_column!], distinct: Boolean): Int! + max: pokemon_v2_movedamageclassdescription_max_fields + min: pokemon_v2_movedamageclassdescription_min_fields + stddev: pokemon_v2_movedamageclassdescription_stddev_fields + stddev_pop: pokemon_v2_movedamageclassdescription_stddev_pop_fields + stddev_samp: pokemon_v2_movedamageclassdescription_stddev_samp_fields + sum: pokemon_v2_movedamageclassdescription_sum_fields + var_pop: pokemon_v2_movedamageclassdescription_var_pop_fields + var_samp: pokemon_v2_movedamageclassdescription_var_samp_fields + variance: pokemon_v2_movedamageclassdescription_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_movedamageclassdescription" +""" +input pokemon_v2_movedamageclassdescription_aggregate_order_by { + avg: pokemon_v2_movedamageclassdescription_avg_order_by + count: order_by + max: pokemon_v2_movedamageclassdescription_max_order_by + min: pokemon_v2_movedamageclassdescription_min_order_by + stddev: pokemon_v2_movedamageclassdescription_stddev_order_by + stddev_pop: pokemon_v2_movedamageclassdescription_stddev_pop_order_by + stddev_samp: pokemon_v2_movedamageclassdescription_stddev_samp_order_by + sum: pokemon_v2_movedamageclassdescription_sum_order_by + var_pop: pokemon_v2_movedamageclassdescription_var_pop_order_by + var_samp: pokemon_v2_movedamageclassdescription_var_samp_order_by + variance: pokemon_v2_movedamageclassdescription_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_movedamageclassdescription_avg_fields { + id: Float + language_id: Float + move_damage_class_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_movedamageclassdescription" +""" +input pokemon_v2_movedamageclassdescription_avg_order_by { + id: order_by + language_id: order_by + move_damage_class_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_movedamageclassdescription". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_movedamageclassdescription_bool_exp { + _and: [pokemon_v2_movedamageclassdescription_bool_exp!] + _not: pokemon_v2_movedamageclassdescription_bool_exp + _or: [pokemon_v2_movedamageclassdescription_bool_exp!] + description: String_comparison_exp + id: Int_comparison_exp + language_id: Int_comparison_exp + move_damage_class_id: Int_comparison_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_movedamageclass: pokemon_v2_movedamageclass_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_movedamageclassdescription_max_fields { + description: String + id: Int + language_id: Int + move_damage_class_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_movedamageclassdescription" +""" +input pokemon_v2_movedamageclassdescription_max_order_by { + description: order_by + id: order_by + language_id: order_by + move_damage_class_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_movedamageclassdescription_min_fields { + description: String + id: Int + language_id: Int + move_damage_class_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_movedamageclassdescription" +""" +input pokemon_v2_movedamageclassdescription_min_order_by { + description: order_by + id: order_by + language_id: order_by + move_damage_class_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_movedamageclassdescription". +""" +input pokemon_v2_movedamageclassdescription_order_by { + description: order_by + id: order_by + language_id: order_by + move_damage_class_id: order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_movedamageclass: pokemon_v2_movedamageclass_order_by +} + +""" +select columns of table "pokemon_v2_movedamageclassdescription" +""" +enum pokemon_v2_movedamageclassdescription_select_column { + """column name""" + description + + """column name""" + id + + """column name""" + language_id + + """column name""" + move_damage_class_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_movedamageclassdescription_stddev_fields { + id: Float + language_id: Float + move_damage_class_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_movedamageclassdescription" +""" +input pokemon_v2_movedamageclassdescription_stddev_order_by { + id: order_by + language_id: order_by + move_damage_class_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_movedamageclassdescription_stddev_pop_fields { + id: Float + language_id: Float + move_damage_class_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_movedamageclassdescription" +""" +input pokemon_v2_movedamageclassdescription_stddev_pop_order_by { + id: order_by + language_id: order_by + move_damage_class_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_movedamageclassdescription_stddev_samp_fields { + id: Float + language_id: Float + move_damage_class_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_movedamageclassdescription" +""" +input pokemon_v2_movedamageclassdescription_stddev_samp_order_by { + id: order_by + language_id: order_by + move_damage_class_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_movedamageclassdescription" +""" +input pokemon_v2_movedamageclassdescription_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_movedamageclassdescription_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_movedamageclassdescription_stream_cursor_value_input { + description: String + id: Int + language_id: Int + move_damage_class_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_movedamageclassdescription_sum_fields { + id: Int + language_id: Int + move_damage_class_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_movedamageclassdescription" +""" +input pokemon_v2_movedamageclassdescription_sum_order_by { + id: order_by + language_id: order_by + move_damage_class_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_movedamageclassdescription_var_pop_fields { + id: Float + language_id: Float + move_damage_class_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_movedamageclassdescription" +""" +input pokemon_v2_movedamageclassdescription_var_pop_order_by { + id: order_by + language_id: order_by + move_damage_class_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_movedamageclassdescription_var_samp_fields { + id: Float + language_id: Float + move_damage_class_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_movedamageclassdescription" +""" +input pokemon_v2_movedamageclassdescription_var_samp_order_by { + id: order_by + language_id: order_by + move_damage_class_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_movedamageclassdescription_variance_fields { + id: Float + language_id: Float + move_damage_class_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_movedamageclassdescription" +""" +input pokemon_v2_movedamageclassdescription_variance_order_by { + id: order_by + language_id: order_by + move_damage_class_id: order_by +} + +""" +columns and relationships of "pokemon_v2_movedamageclassname" +""" +type pokemon_v2_movedamageclassname { + id: Int! + language_id: Int + move_damage_class_id: Int + name: String! + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_movedamageclass: pokemon_v2_movedamageclass +} + +""" +aggregated selection of "pokemon_v2_movedamageclassname" +""" +type pokemon_v2_movedamageclassname_aggregate { + aggregate: pokemon_v2_movedamageclassname_aggregate_fields + nodes: [pokemon_v2_movedamageclassname!]! +} + +input pokemon_v2_movedamageclassname_aggregate_bool_exp { + count: pokemon_v2_movedamageclassname_aggregate_bool_exp_count +} + +input pokemon_v2_movedamageclassname_aggregate_bool_exp_count { + arguments: [pokemon_v2_movedamageclassname_select_column!] + distinct: Boolean + filter: pokemon_v2_movedamageclassname_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_movedamageclassname" +""" +type pokemon_v2_movedamageclassname_aggregate_fields { + avg: pokemon_v2_movedamageclassname_avg_fields + count(columns: [pokemon_v2_movedamageclassname_select_column!], distinct: Boolean): Int! + max: pokemon_v2_movedamageclassname_max_fields + min: pokemon_v2_movedamageclassname_min_fields + stddev: pokemon_v2_movedamageclassname_stddev_fields + stddev_pop: pokemon_v2_movedamageclassname_stddev_pop_fields + stddev_samp: pokemon_v2_movedamageclassname_stddev_samp_fields + sum: pokemon_v2_movedamageclassname_sum_fields + var_pop: pokemon_v2_movedamageclassname_var_pop_fields + var_samp: pokemon_v2_movedamageclassname_var_samp_fields + variance: pokemon_v2_movedamageclassname_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_movedamageclassname" +""" +input pokemon_v2_movedamageclassname_aggregate_order_by { + avg: pokemon_v2_movedamageclassname_avg_order_by + count: order_by + max: pokemon_v2_movedamageclassname_max_order_by + min: pokemon_v2_movedamageclassname_min_order_by + stddev: pokemon_v2_movedamageclassname_stddev_order_by + stddev_pop: pokemon_v2_movedamageclassname_stddev_pop_order_by + stddev_samp: pokemon_v2_movedamageclassname_stddev_samp_order_by + sum: pokemon_v2_movedamageclassname_sum_order_by + var_pop: pokemon_v2_movedamageclassname_var_pop_order_by + var_samp: pokemon_v2_movedamageclassname_var_samp_order_by + variance: pokemon_v2_movedamageclassname_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_movedamageclassname_avg_fields { + id: Float + language_id: Float + move_damage_class_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_movedamageclassname" +""" +input pokemon_v2_movedamageclassname_avg_order_by { + id: order_by + language_id: order_by + move_damage_class_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_movedamageclassname". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_movedamageclassname_bool_exp { + _and: [pokemon_v2_movedamageclassname_bool_exp!] + _not: pokemon_v2_movedamageclassname_bool_exp + _or: [pokemon_v2_movedamageclassname_bool_exp!] + id: Int_comparison_exp + language_id: Int_comparison_exp + move_damage_class_id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_movedamageclass: pokemon_v2_movedamageclass_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_movedamageclassname_max_fields { + id: Int + language_id: Int + move_damage_class_id: Int + name: String +} + +""" +order by max() on columns of table "pokemon_v2_movedamageclassname" +""" +input pokemon_v2_movedamageclassname_max_order_by { + id: order_by + language_id: order_by + move_damage_class_id: order_by + name: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_movedamageclassname_min_fields { + id: Int + language_id: Int + move_damage_class_id: Int + name: String +} + +""" +order by min() on columns of table "pokemon_v2_movedamageclassname" +""" +input pokemon_v2_movedamageclassname_min_order_by { + id: order_by + language_id: order_by + move_damage_class_id: order_by + name: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_movedamageclassname". +""" +input pokemon_v2_movedamageclassname_order_by { + id: order_by + language_id: order_by + move_damage_class_id: order_by + name: order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_movedamageclass: pokemon_v2_movedamageclass_order_by +} + +""" +select columns of table "pokemon_v2_movedamageclassname" +""" +enum pokemon_v2_movedamageclassname_select_column { + """column name""" + id + + """column name""" + language_id + + """column name""" + move_damage_class_id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_movedamageclassname_stddev_fields { + id: Float + language_id: Float + move_damage_class_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_movedamageclassname" +""" +input pokemon_v2_movedamageclassname_stddev_order_by { + id: order_by + language_id: order_by + move_damage_class_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_movedamageclassname_stddev_pop_fields { + id: Float + language_id: Float + move_damage_class_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_movedamageclassname" +""" +input pokemon_v2_movedamageclassname_stddev_pop_order_by { + id: order_by + language_id: order_by + move_damage_class_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_movedamageclassname_stddev_samp_fields { + id: Float + language_id: Float + move_damage_class_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_movedamageclassname" +""" +input pokemon_v2_movedamageclassname_stddev_samp_order_by { + id: order_by + language_id: order_by + move_damage_class_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_movedamageclassname" +""" +input pokemon_v2_movedamageclassname_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_movedamageclassname_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_movedamageclassname_stream_cursor_value_input { + id: Int + language_id: Int + move_damage_class_id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_movedamageclassname_sum_fields { + id: Int + language_id: Int + move_damage_class_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_movedamageclassname" +""" +input pokemon_v2_movedamageclassname_sum_order_by { + id: order_by + language_id: order_by + move_damage_class_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_movedamageclassname_var_pop_fields { + id: Float + language_id: Float + move_damage_class_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_movedamageclassname" +""" +input pokemon_v2_movedamageclassname_var_pop_order_by { + id: order_by + language_id: order_by + move_damage_class_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_movedamageclassname_var_samp_fields { + id: Float + language_id: Float + move_damage_class_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_movedamageclassname" +""" +input pokemon_v2_movedamageclassname_var_samp_order_by { + id: order_by + language_id: order_by + move_damage_class_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_movedamageclassname_variance_fields { + id: Float + language_id: Float + move_damage_class_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_movedamageclassname" +""" +input pokemon_v2_movedamageclassname_variance_order_by { + id: order_by + language_id: order_by + move_damage_class_id: order_by +} + +""" +columns and relationships of "pokemon_v2_moveeffect" +""" +type pokemon_v2_moveeffect { + id: Int! + + """An array relationship""" + pokemon_v2_movechanges( + """distinct select on columns""" + distinct_on: [pokemon_v2_movechange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movechange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movechange_bool_exp + ): [pokemon_v2_movechange!]! + + """An aggregate relationship""" + pokemon_v2_movechanges_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movechange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movechange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movechange_bool_exp + ): pokemon_v2_movechange_aggregate! + + """An array relationship""" + pokemon_v2_moveeffectchanges( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveeffectchange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveeffectchange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveeffectchange_bool_exp + ): [pokemon_v2_moveeffectchange!]! + + """An aggregate relationship""" + pokemon_v2_moveeffectchanges_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveeffectchange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveeffectchange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveeffectchange_bool_exp + ): pokemon_v2_moveeffectchange_aggregate! + + """An array relationship""" + pokemon_v2_moveeffecteffecttexts( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveeffecteffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveeffecteffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveeffecteffecttext_bool_exp + ): [pokemon_v2_moveeffecteffecttext!]! + + """An aggregate relationship""" + pokemon_v2_moveeffecteffecttexts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveeffecteffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveeffecteffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveeffecteffecttext_bool_exp + ): pokemon_v2_moveeffecteffecttext_aggregate! + + """An array relationship""" + pokemon_v2_moves( + """distinct select on columns""" + distinct_on: [pokemon_v2_move_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_move_order_by!] + + """filter the rows returned""" + where: pokemon_v2_move_bool_exp + ): [pokemon_v2_move!]! + + """An aggregate relationship""" + pokemon_v2_moves_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_move_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_move_order_by!] + + """filter the rows returned""" + where: pokemon_v2_move_bool_exp + ): pokemon_v2_move_aggregate! +} + +""" +aggregated selection of "pokemon_v2_moveeffect" +""" +type pokemon_v2_moveeffect_aggregate { + aggregate: pokemon_v2_moveeffect_aggregate_fields + nodes: [pokemon_v2_moveeffect!]! +} + +""" +aggregate fields of "pokemon_v2_moveeffect" +""" +type pokemon_v2_moveeffect_aggregate_fields { + avg: pokemon_v2_moveeffect_avg_fields + count(columns: [pokemon_v2_moveeffect_select_column!], distinct: Boolean): Int! + max: pokemon_v2_moveeffect_max_fields + min: pokemon_v2_moveeffect_min_fields + stddev: pokemon_v2_moveeffect_stddev_fields + stddev_pop: pokemon_v2_moveeffect_stddev_pop_fields + stddev_samp: pokemon_v2_moveeffect_stddev_samp_fields + sum: pokemon_v2_moveeffect_sum_fields + var_pop: pokemon_v2_moveeffect_var_pop_fields + var_samp: pokemon_v2_moveeffect_var_samp_fields + variance: pokemon_v2_moveeffect_variance_fields +} + +"""aggregate avg on columns""" +type pokemon_v2_moveeffect_avg_fields { + id: Float +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_moveeffect". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_moveeffect_bool_exp { + _and: [pokemon_v2_moveeffect_bool_exp!] + _not: pokemon_v2_moveeffect_bool_exp + _or: [pokemon_v2_moveeffect_bool_exp!] + id: Int_comparison_exp + pokemon_v2_movechanges: pokemon_v2_movechange_bool_exp + pokemon_v2_movechanges_aggregate: pokemon_v2_movechange_aggregate_bool_exp + pokemon_v2_moveeffectchanges: pokemon_v2_moveeffectchange_bool_exp + pokemon_v2_moveeffectchanges_aggregate: pokemon_v2_moveeffectchange_aggregate_bool_exp + pokemon_v2_moveeffecteffecttexts: pokemon_v2_moveeffecteffecttext_bool_exp + pokemon_v2_moveeffecteffecttexts_aggregate: pokemon_v2_moveeffecteffecttext_aggregate_bool_exp + pokemon_v2_moves: pokemon_v2_move_bool_exp + pokemon_v2_moves_aggregate: pokemon_v2_move_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_moveeffect_max_fields { + id: Int +} + +"""aggregate min on columns""" +type pokemon_v2_moveeffect_min_fields { + id: Int +} + +"""Ordering options when selecting data from "pokemon_v2_moveeffect".""" +input pokemon_v2_moveeffect_order_by { + id: order_by + pokemon_v2_movechanges_aggregate: pokemon_v2_movechange_aggregate_order_by + pokemon_v2_moveeffectchanges_aggregate: pokemon_v2_moveeffectchange_aggregate_order_by + pokemon_v2_moveeffecteffecttexts_aggregate: pokemon_v2_moveeffecteffecttext_aggregate_order_by + pokemon_v2_moves_aggregate: pokemon_v2_move_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_moveeffect" +""" +enum pokemon_v2_moveeffect_select_column { + """column name""" + id +} + +"""aggregate stddev on columns""" +type pokemon_v2_moveeffect_stddev_fields { + id: Float +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_moveeffect_stddev_pop_fields { + id: Float +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_moveeffect_stddev_samp_fields { + id: Float +} + +""" +Streaming cursor of the table "pokemon_v2_moveeffect" +""" +input pokemon_v2_moveeffect_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_moveeffect_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_moveeffect_stream_cursor_value_input { + id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_moveeffect_sum_fields { + id: Int +} + +"""aggregate var_pop on columns""" +type pokemon_v2_moveeffect_var_pop_fields { + id: Float +} + +"""aggregate var_samp on columns""" +type pokemon_v2_moveeffect_var_samp_fields { + id: Float +} + +"""aggregate variance on columns""" +type pokemon_v2_moveeffect_variance_fields { + id: Float +} + +""" +columns and relationships of "pokemon_v2_moveeffectchange" +""" +type pokemon_v2_moveeffectchange { + id: Int! + move_effect_id: Int + + """An object relationship""" + pokemon_v2_moveeffect: pokemon_v2_moveeffect + + """An array relationship""" + pokemon_v2_moveeffectchangeeffecttexts( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveeffectchangeeffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveeffectchangeeffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveeffectchangeeffecttext_bool_exp + ): [pokemon_v2_moveeffectchangeeffecttext!]! + + """An aggregate relationship""" + pokemon_v2_moveeffectchangeeffecttexts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveeffectchangeeffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveeffectchangeeffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveeffectchangeeffecttext_bool_exp + ): pokemon_v2_moveeffectchangeeffecttext_aggregate! + + """An object relationship""" + pokemon_v2_versiongroup: pokemon_v2_versiongroup + version_group_id: Int +} + +""" +aggregated selection of "pokemon_v2_moveeffectchange" +""" +type pokemon_v2_moveeffectchange_aggregate { + aggregate: pokemon_v2_moveeffectchange_aggregate_fields + nodes: [pokemon_v2_moveeffectchange!]! +} + +input pokemon_v2_moveeffectchange_aggregate_bool_exp { + count: pokemon_v2_moveeffectchange_aggregate_bool_exp_count +} + +input pokemon_v2_moveeffectchange_aggregate_bool_exp_count { + arguments: [pokemon_v2_moveeffectchange_select_column!] + distinct: Boolean + filter: pokemon_v2_moveeffectchange_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_moveeffectchange" +""" +type pokemon_v2_moveeffectchange_aggregate_fields { + avg: pokemon_v2_moveeffectchange_avg_fields + count(columns: [pokemon_v2_moveeffectchange_select_column!], distinct: Boolean): Int! + max: pokemon_v2_moveeffectchange_max_fields + min: pokemon_v2_moveeffectchange_min_fields + stddev: pokemon_v2_moveeffectchange_stddev_fields + stddev_pop: pokemon_v2_moveeffectchange_stddev_pop_fields + stddev_samp: pokemon_v2_moveeffectchange_stddev_samp_fields + sum: pokemon_v2_moveeffectchange_sum_fields + var_pop: pokemon_v2_moveeffectchange_var_pop_fields + var_samp: pokemon_v2_moveeffectchange_var_samp_fields + variance: pokemon_v2_moveeffectchange_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_moveeffectchange" +""" +input pokemon_v2_moveeffectchange_aggregate_order_by { + avg: pokemon_v2_moveeffectchange_avg_order_by + count: order_by + max: pokemon_v2_moveeffectchange_max_order_by + min: pokemon_v2_moveeffectchange_min_order_by + stddev: pokemon_v2_moveeffectchange_stddev_order_by + stddev_pop: pokemon_v2_moveeffectchange_stddev_pop_order_by + stddev_samp: pokemon_v2_moveeffectchange_stddev_samp_order_by + sum: pokemon_v2_moveeffectchange_sum_order_by + var_pop: pokemon_v2_moveeffectchange_var_pop_order_by + var_samp: pokemon_v2_moveeffectchange_var_samp_order_by + variance: pokemon_v2_moveeffectchange_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_moveeffectchange_avg_fields { + id: Float + move_effect_id: Float + version_group_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_moveeffectchange" +""" +input pokemon_v2_moveeffectchange_avg_order_by { + id: order_by + move_effect_id: order_by + version_group_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_moveeffectchange". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_moveeffectchange_bool_exp { + _and: [pokemon_v2_moveeffectchange_bool_exp!] + _not: pokemon_v2_moveeffectchange_bool_exp + _or: [pokemon_v2_moveeffectchange_bool_exp!] + id: Int_comparison_exp + move_effect_id: Int_comparison_exp + pokemon_v2_moveeffect: pokemon_v2_moveeffect_bool_exp + pokemon_v2_moveeffectchangeeffecttexts: pokemon_v2_moveeffectchangeeffecttext_bool_exp + pokemon_v2_moveeffectchangeeffecttexts_aggregate: pokemon_v2_moveeffectchangeeffecttext_aggregate_bool_exp + pokemon_v2_versiongroup: pokemon_v2_versiongroup_bool_exp + version_group_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_moveeffectchange_max_fields { + id: Int + move_effect_id: Int + version_group_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_moveeffectchange" +""" +input pokemon_v2_moveeffectchange_max_order_by { + id: order_by + move_effect_id: order_by + version_group_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_moveeffectchange_min_fields { + id: Int + move_effect_id: Int + version_group_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_moveeffectchange" +""" +input pokemon_v2_moveeffectchange_min_order_by { + id: order_by + move_effect_id: order_by + version_group_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_moveeffectchange". +""" +input pokemon_v2_moveeffectchange_order_by { + id: order_by + move_effect_id: order_by + pokemon_v2_moveeffect: pokemon_v2_moveeffect_order_by + pokemon_v2_moveeffectchangeeffecttexts_aggregate: pokemon_v2_moveeffectchangeeffecttext_aggregate_order_by + pokemon_v2_versiongroup: pokemon_v2_versiongroup_order_by + version_group_id: order_by +} + +""" +select columns of table "pokemon_v2_moveeffectchange" +""" +enum pokemon_v2_moveeffectchange_select_column { + """column name""" + id + + """column name""" + move_effect_id + + """column name""" + version_group_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_moveeffectchange_stddev_fields { + id: Float + move_effect_id: Float + version_group_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_moveeffectchange" +""" +input pokemon_v2_moveeffectchange_stddev_order_by { + id: order_by + move_effect_id: order_by + version_group_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_moveeffectchange_stddev_pop_fields { + id: Float + move_effect_id: Float + version_group_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_moveeffectchange" +""" +input pokemon_v2_moveeffectchange_stddev_pop_order_by { + id: order_by + move_effect_id: order_by + version_group_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_moveeffectchange_stddev_samp_fields { + id: Float + move_effect_id: Float + version_group_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_moveeffectchange" +""" +input pokemon_v2_moveeffectchange_stddev_samp_order_by { + id: order_by + move_effect_id: order_by + version_group_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_moveeffectchange" +""" +input pokemon_v2_moveeffectchange_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_moveeffectchange_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_moveeffectchange_stream_cursor_value_input { + id: Int + move_effect_id: Int + version_group_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_moveeffectchange_sum_fields { + id: Int + move_effect_id: Int + version_group_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_moveeffectchange" +""" +input pokemon_v2_moveeffectchange_sum_order_by { + id: order_by + move_effect_id: order_by + version_group_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_moveeffectchange_var_pop_fields { + id: Float + move_effect_id: Float + version_group_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_moveeffectchange" +""" +input pokemon_v2_moveeffectchange_var_pop_order_by { + id: order_by + move_effect_id: order_by + version_group_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_moveeffectchange_var_samp_fields { + id: Float + move_effect_id: Float + version_group_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_moveeffectchange" +""" +input pokemon_v2_moveeffectchange_var_samp_order_by { + id: order_by + move_effect_id: order_by + version_group_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_moveeffectchange_variance_fields { + id: Float + move_effect_id: Float + version_group_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_moveeffectchange" +""" +input pokemon_v2_moveeffectchange_variance_order_by { + id: order_by + move_effect_id: order_by + version_group_id: order_by +} + +""" +columns and relationships of "pokemon_v2_moveeffectchangeeffecttext" +""" +type pokemon_v2_moveeffectchangeeffecttext { + effect: String! + id: Int! + language_id: Int + move_effect_change_id: Int + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_moveeffectchange: pokemon_v2_moveeffectchange +} + +""" +aggregated selection of "pokemon_v2_moveeffectchangeeffecttext" +""" +type pokemon_v2_moveeffectchangeeffecttext_aggregate { + aggregate: pokemon_v2_moveeffectchangeeffecttext_aggregate_fields + nodes: [pokemon_v2_moveeffectchangeeffecttext!]! +} + +input pokemon_v2_moveeffectchangeeffecttext_aggregate_bool_exp { + count: pokemon_v2_moveeffectchangeeffecttext_aggregate_bool_exp_count +} + +input pokemon_v2_moveeffectchangeeffecttext_aggregate_bool_exp_count { + arguments: [pokemon_v2_moveeffectchangeeffecttext_select_column!] + distinct: Boolean + filter: pokemon_v2_moveeffectchangeeffecttext_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_moveeffectchangeeffecttext" +""" +type pokemon_v2_moveeffectchangeeffecttext_aggregate_fields { + avg: pokemon_v2_moveeffectchangeeffecttext_avg_fields + count(columns: [pokemon_v2_moveeffectchangeeffecttext_select_column!], distinct: Boolean): Int! + max: pokemon_v2_moveeffectchangeeffecttext_max_fields + min: pokemon_v2_moveeffectchangeeffecttext_min_fields + stddev: pokemon_v2_moveeffectchangeeffecttext_stddev_fields + stddev_pop: pokemon_v2_moveeffectchangeeffecttext_stddev_pop_fields + stddev_samp: pokemon_v2_moveeffectchangeeffecttext_stddev_samp_fields + sum: pokemon_v2_moveeffectchangeeffecttext_sum_fields + var_pop: pokemon_v2_moveeffectchangeeffecttext_var_pop_fields + var_samp: pokemon_v2_moveeffectchangeeffecttext_var_samp_fields + variance: pokemon_v2_moveeffectchangeeffecttext_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_moveeffectchangeeffecttext" +""" +input pokemon_v2_moveeffectchangeeffecttext_aggregate_order_by { + avg: pokemon_v2_moveeffectchangeeffecttext_avg_order_by + count: order_by + max: pokemon_v2_moveeffectchangeeffecttext_max_order_by + min: pokemon_v2_moveeffectchangeeffecttext_min_order_by + stddev: pokemon_v2_moveeffectchangeeffecttext_stddev_order_by + stddev_pop: pokemon_v2_moveeffectchangeeffecttext_stddev_pop_order_by + stddev_samp: pokemon_v2_moveeffectchangeeffecttext_stddev_samp_order_by + sum: pokemon_v2_moveeffectchangeeffecttext_sum_order_by + var_pop: pokemon_v2_moveeffectchangeeffecttext_var_pop_order_by + var_samp: pokemon_v2_moveeffectchangeeffecttext_var_samp_order_by + variance: pokemon_v2_moveeffectchangeeffecttext_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_moveeffectchangeeffecttext_avg_fields { + id: Float + language_id: Float + move_effect_change_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_moveeffectchangeeffecttext" +""" +input pokemon_v2_moveeffectchangeeffecttext_avg_order_by { + id: order_by + language_id: order_by + move_effect_change_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_moveeffectchangeeffecttext". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_moveeffectchangeeffecttext_bool_exp { + _and: [pokemon_v2_moveeffectchangeeffecttext_bool_exp!] + _not: pokemon_v2_moveeffectchangeeffecttext_bool_exp + _or: [pokemon_v2_moveeffectchangeeffecttext_bool_exp!] + effect: String_comparison_exp + id: Int_comparison_exp + language_id: Int_comparison_exp + move_effect_change_id: Int_comparison_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_moveeffectchange: pokemon_v2_moveeffectchange_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_moveeffectchangeeffecttext_max_fields { + effect: String + id: Int + language_id: Int + move_effect_change_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_moveeffectchangeeffecttext" +""" +input pokemon_v2_moveeffectchangeeffecttext_max_order_by { + effect: order_by + id: order_by + language_id: order_by + move_effect_change_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_moveeffectchangeeffecttext_min_fields { + effect: String + id: Int + language_id: Int + move_effect_change_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_moveeffectchangeeffecttext" +""" +input pokemon_v2_moveeffectchangeeffecttext_min_order_by { + effect: order_by + id: order_by + language_id: order_by + move_effect_change_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_moveeffectchangeeffecttext". +""" +input pokemon_v2_moveeffectchangeeffecttext_order_by { + effect: order_by + id: order_by + language_id: order_by + move_effect_change_id: order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_moveeffectchange: pokemon_v2_moveeffectchange_order_by +} + +""" +select columns of table "pokemon_v2_moveeffectchangeeffecttext" +""" +enum pokemon_v2_moveeffectchangeeffecttext_select_column { + """column name""" + effect + + """column name""" + id + + """column name""" + language_id + + """column name""" + move_effect_change_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_moveeffectchangeeffecttext_stddev_fields { + id: Float + language_id: Float + move_effect_change_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_moveeffectchangeeffecttext" +""" +input pokemon_v2_moveeffectchangeeffecttext_stddev_order_by { + id: order_by + language_id: order_by + move_effect_change_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_moveeffectchangeeffecttext_stddev_pop_fields { + id: Float + language_id: Float + move_effect_change_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_moveeffectchangeeffecttext" +""" +input pokemon_v2_moveeffectchangeeffecttext_stddev_pop_order_by { + id: order_by + language_id: order_by + move_effect_change_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_moveeffectchangeeffecttext_stddev_samp_fields { + id: Float + language_id: Float + move_effect_change_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_moveeffectchangeeffecttext" +""" +input pokemon_v2_moveeffectchangeeffecttext_stddev_samp_order_by { + id: order_by + language_id: order_by + move_effect_change_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_moveeffectchangeeffecttext" +""" +input pokemon_v2_moveeffectchangeeffecttext_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_moveeffectchangeeffecttext_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_moveeffectchangeeffecttext_stream_cursor_value_input { + effect: String + id: Int + language_id: Int + move_effect_change_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_moveeffectchangeeffecttext_sum_fields { + id: Int + language_id: Int + move_effect_change_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_moveeffectchangeeffecttext" +""" +input pokemon_v2_moveeffectchangeeffecttext_sum_order_by { + id: order_by + language_id: order_by + move_effect_change_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_moveeffectchangeeffecttext_var_pop_fields { + id: Float + language_id: Float + move_effect_change_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_moveeffectchangeeffecttext" +""" +input pokemon_v2_moveeffectchangeeffecttext_var_pop_order_by { + id: order_by + language_id: order_by + move_effect_change_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_moveeffectchangeeffecttext_var_samp_fields { + id: Float + language_id: Float + move_effect_change_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_moveeffectchangeeffecttext" +""" +input pokemon_v2_moveeffectchangeeffecttext_var_samp_order_by { + id: order_by + language_id: order_by + move_effect_change_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_moveeffectchangeeffecttext_variance_fields { + id: Float + language_id: Float + move_effect_change_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_moveeffectchangeeffecttext" +""" +input pokemon_v2_moveeffectchangeeffecttext_variance_order_by { + id: order_by + language_id: order_by + move_effect_change_id: order_by +} + +""" +columns and relationships of "pokemon_v2_moveeffecteffecttext" +""" +type pokemon_v2_moveeffecteffecttext { + effect: String! + id: Int! + language_id: Int + move_effect_id: Int + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_moveeffect: pokemon_v2_moveeffect + short_effect: String! +} + +""" +aggregated selection of "pokemon_v2_moveeffecteffecttext" +""" +type pokemon_v2_moveeffecteffecttext_aggregate { + aggregate: pokemon_v2_moveeffecteffecttext_aggregate_fields + nodes: [pokemon_v2_moveeffecteffecttext!]! +} + +input pokemon_v2_moveeffecteffecttext_aggregate_bool_exp { + count: pokemon_v2_moveeffecteffecttext_aggregate_bool_exp_count +} + +input pokemon_v2_moveeffecteffecttext_aggregate_bool_exp_count { + arguments: [pokemon_v2_moveeffecteffecttext_select_column!] + distinct: Boolean + filter: pokemon_v2_moveeffecteffecttext_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_moveeffecteffecttext" +""" +type pokemon_v2_moveeffecteffecttext_aggregate_fields { + avg: pokemon_v2_moveeffecteffecttext_avg_fields + count(columns: [pokemon_v2_moveeffecteffecttext_select_column!], distinct: Boolean): Int! + max: pokemon_v2_moveeffecteffecttext_max_fields + min: pokemon_v2_moveeffecteffecttext_min_fields + stddev: pokemon_v2_moveeffecteffecttext_stddev_fields + stddev_pop: pokemon_v2_moveeffecteffecttext_stddev_pop_fields + stddev_samp: pokemon_v2_moveeffecteffecttext_stddev_samp_fields + sum: pokemon_v2_moveeffecteffecttext_sum_fields + var_pop: pokemon_v2_moveeffecteffecttext_var_pop_fields + var_samp: pokemon_v2_moveeffecteffecttext_var_samp_fields + variance: pokemon_v2_moveeffecteffecttext_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_moveeffecteffecttext" +""" +input pokemon_v2_moveeffecteffecttext_aggregate_order_by { + avg: pokemon_v2_moveeffecteffecttext_avg_order_by + count: order_by + max: pokemon_v2_moveeffecteffecttext_max_order_by + min: pokemon_v2_moveeffecteffecttext_min_order_by + stddev: pokemon_v2_moveeffecteffecttext_stddev_order_by + stddev_pop: pokemon_v2_moveeffecteffecttext_stddev_pop_order_by + stddev_samp: pokemon_v2_moveeffecteffecttext_stddev_samp_order_by + sum: pokemon_v2_moveeffecteffecttext_sum_order_by + var_pop: pokemon_v2_moveeffecteffecttext_var_pop_order_by + var_samp: pokemon_v2_moveeffecteffecttext_var_samp_order_by + variance: pokemon_v2_moveeffecteffecttext_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_moveeffecteffecttext_avg_fields { + id: Float + language_id: Float + move_effect_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_moveeffecteffecttext" +""" +input pokemon_v2_moveeffecteffecttext_avg_order_by { + id: order_by + language_id: order_by + move_effect_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_moveeffecteffecttext". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_moveeffecteffecttext_bool_exp { + _and: [pokemon_v2_moveeffecteffecttext_bool_exp!] + _not: pokemon_v2_moveeffecteffecttext_bool_exp + _or: [pokemon_v2_moveeffecteffecttext_bool_exp!] + effect: String_comparison_exp + id: Int_comparison_exp + language_id: Int_comparison_exp + move_effect_id: Int_comparison_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_moveeffect: pokemon_v2_moveeffect_bool_exp + short_effect: String_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_moveeffecteffecttext_max_fields { + effect: String + id: Int + language_id: Int + move_effect_id: Int + short_effect: String +} + +""" +order by max() on columns of table "pokemon_v2_moveeffecteffecttext" +""" +input pokemon_v2_moveeffecteffecttext_max_order_by { + effect: order_by + id: order_by + language_id: order_by + move_effect_id: order_by + short_effect: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_moveeffecteffecttext_min_fields { + effect: String + id: Int + language_id: Int + move_effect_id: Int + short_effect: String +} + +""" +order by min() on columns of table "pokemon_v2_moveeffecteffecttext" +""" +input pokemon_v2_moveeffecteffecttext_min_order_by { + effect: order_by + id: order_by + language_id: order_by + move_effect_id: order_by + short_effect: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_moveeffecteffecttext". +""" +input pokemon_v2_moveeffecteffecttext_order_by { + effect: order_by + id: order_by + language_id: order_by + move_effect_id: order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_moveeffect: pokemon_v2_moveeffect_order_by + short_effect: order_by +} + +""" +select columns of table "pokemon_v2_moveeffecteffecttext" +""" +enum pokemon_v2_moveeffecteffecttext_select_column { + """column name""" + effect + + """column name""" + id + + """column name""" + language_id + + """column name""" + move_effect_id + + """column name""" + short_effect +} + +"""aggregate stddev on columns""" +type pokemon_v2_moveeffecteffecttext_stddev_fields { + id: Float + language_id: Float + move_effect_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_moveeffecteffecttext" +""" +input pokemon_v2_moveeffecteffecttext_stddev_order_by { + id: order_by + language_id: order_by + move_effect_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_moveeffecteffecttext_stddev_pop_fields { + id: Float + language_id: Float + move_effect_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_moveeffecteffecttext" +""" +input pokemon_v2_moveeffecteffecttext_stddev_pop_order_by { + id: order_by + language_id: order_by + move_effect_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_moveeffecteffecttext_stddev_samp_fields { + id: Float + language_id: Float + move_effect_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_moveeffecteffecttext" +""" +input pokemon_v2_moveeffecteffecttext_stddev_samp_order_by { + id: order_by + language_id: order_by + move_effect_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_moveeffecteffecttext" +""" +input pokemon_v2_moveeffecteffecttext_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_moveeffecteffecttext_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_moveeffecteffecttext_stream_cursor_value_input { + effect: String + id: Int + language_id: Int + move_effect_id: Int + short_effect: String +} + +"""aggregate sum on columns""" +type pokemon_v2_moveeffecteffecttext_sum_fields { + id: Int + language_id: Int + move_effect_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_moveeffecteffecttext" +""" +input pokemon_v2_moveeffecteffecttext_sum_order_by { + id: order_by + language_id: order_by + move_effect_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_moveeffecteffecttext_var_pop_fields { + id: Float + language_id: Float + move_effect_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_moveeffecteffecttext" +""" +input pokemon_v2_moveeffecteffecttext_var_pop_order_by { + id: order_by + language_id: order_by + move_effect_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_moveeffecteffecttext_var_samp_fields { + id: Float + language_id: Float + move_effect_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_moveeffecteffecttext" +""" +input pokemon_v2_moveeffecteffecttext_var_samp_order_by { + id: order_by + language_id: order_by + move_effect_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_moveeffecteffecttext_variance_fields { + id: Float + language_id: Float + move_effect_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_moveeffecteffecttext" +""" +input pokemon_v2_moveeffecteffecttext_variance_order_by { + id: order_by + language_id: order_by + move_effect_id: order_by +} + +""" +columns and relationships of "pokemon_v2_moveflavortext" +""" +type pokemon_v2_moveflavortext { + flavor_text: String! + id: Int! + language_id: Int + move_id: Int + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_move: pokemon_v2_move + + """An object relationship""" + pokemon_v2_versiongroup: pokemon_v2_versiongroup + version_group_id: Int +} + +""" +aggregated selection of "pokemon_v2_moveflavortext" +""" +type pokemon_v2_moveflavortext_aggregate { + aggregate: pokemon_v2_moveflavortext_aggregate_fields + nodes: [pokemon_v2_moveflavortext!]! +} + +input pokemon_v2_moveflavortext_aggregate_bool_exp { + count: pokemon_v2_moveflavortext_aggregate_bool_exp_count +} + +input pokemon_v2_moveflavortext_aggregate_bool_exp_count { + arguments: [pokemon_v2_moveflavortext_select_column!] + distinct: Boolean + filter: pokemon_v2_moveflavortext_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_moveflavortext" +""" +type pokemon_v2_moveflavortext_aggregate_fields { + avg: pokemon_v2_moveflavortext_avg_fields + count(columns: [pokemon_v2_moveflavortext_select_column!], distinct: Boolean): Int! + max: pokemon_v2_moveflavortext_max_fields + min: pokemon_v2_moveflavortext_min_fields + stddev: pokemon_v2_moveflavortext_stddev_fields + stddev_pop: pokemon_v2_moveflavortext_stddev_pop_fields + stddev_samp: pokemon_v2_moveflavortext_stddev_samp_fields + sum: pokemon_v2_moveflavortext_sum_fields + var_pop: pokemon_v2_moveflavortext_var_pop_fields + var_samp: pokemon_v2_moveflavortext_var_samp_fields + variance: pokemon_v2_moveflavortext_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_moveflavortext" +""" +input pokemon_v2_moveflavortext_aggregate_order_by { + avg: pokemon_v2_moveflavortext_avg_order_by + count: order_by + max: pokemon_v2_moveflavortext_max_order_by + min: pokemon_v2_moveflavortext_min_order_by + stddev: pokemon_v2_moveflavortext_stddev_order_by + stddev_pop: pokemon_v2_moveflavortext_stddev_pop_order_by + stddev_samp: pokemon_v2_moveflavortext_stddev_samp_order_by + sum: pokemon_v2_moveflavortext_sum_order_by + var_pop: pokemon_v2_moveflavortext_var_pop_order_by + var_samp: pokemon_v2_moveflavortext_var_samp_order_by + variance: pokemon_v2_moveflavortext_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_moveflavortext_avg_fields { + id: Float + language_id: Float + move_id: Float + version_group_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_moveflavortext" +""" +input pokemon_v2_moveflavortext_avg_order_by { + id: order_by + language_id: order_by + move_id: order_by + version_group_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_moveflavortext". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_moveflavortext_bool_exp { + _and: [pokemon_v2_moveflavortext_bool_exp!] + _not: pokemon_v2_moveflavortext_bool_exp + _or: [pokemon_v2_moveflavortext_bool_exp!] + flavor_text: String_comparison_exp + id: Int_comparison_exp + language_id: Int_comparison_exp + move_id: Int_comparison_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_move: pokemon_v2_move_bool_exp + pokemon_v2_versiongroup: pokemon_v2_versiongroup_bool_exp + version_group_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_moveflavortext_max_fields { + flavor_text: String + id: Int + language_id: Int + move_id: Int + version_group_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_moveflavortext" +""" +input pokemon_v2_moveflavortext_max_order_by { + flavor_text: order_by + id: order_by + language_id: order_by + move_id: order_by + version_group_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_moveflavortext_min_fields { + flavor_text: String + id: Int + language_id: Int + move_id: Int + version_group_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_moveflavortext" +""" +input pokemon_v2_moveflavortext_min_order_by { + flavor_text: order_by + id: order_by + language_id: order_by + move_id: order_by + version_group_id: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_moveflavortext".""" +input pokemon_v2_moveflavortext_order_by { + flavor_text: order_by + id: order_by + language_id: order_by + move_id: order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_move: pokemon_v2_move_order_by + pokemon_v2_versiongroup: pokemon_v2_versiongroup_order_by + version_group_id: order_by +} + +""" +select columns of table "pokemon_v2_moveflavortext" +""" +enum pokemon_v2_moveflavortext_select_column { + """column name""" + flavor_text + + """column name""" + id + + """column name""" + language_id + + """column name""" + move_id + + """column name""" + version_group_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_moveflavortext_stddev_fields { + id: Float + language_id: Float + move_id: Float + version_group_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_moveflavortext" +""" +input pokemon_v2_moveflavortext_stddev_order_by { + id: order_by + language_id: order_by + move_id: order_by + version_group_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_moveflavortext_stddev_pop_fields { + id: Float + language_id: Float + move_id: Float + version_group_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_moveflavortext" +""" +input pokemon_v2_moveflavortext_stddev_pop_order_by { + id: order_by + language_id: order_by + move_id: order_by + version_group_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_moveflavortext_stddev_samp_fields { + id: Float + language_id: Float + move_id: Float + version_group_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_moveflavortext" +""" +input pokemon_v2_moveflavortext_stddev_samp_order_by { + id: order_by + language_id: order_by + move_id: order_by + version_group_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_moveflavortext" +""" +input pokemon_v2_moveflavortext_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_moveflavortext_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_moveflavortext_stream_cursor_value_input { + flavor_text: String + id: Int + language_id: Int + move_id: Int + version_group_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_moveflavortext_sum_fields { + id: Int + language_id: Int + move_id: Int + version_group_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_moveflavortext" +""" +input pokemon_v2_moveflavortext_sum_order_by { + id: order_by + language_id: order_by + move_id: order_by + version_group_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_moveflavortext_var_pop_fields { + id: Float + language_id: Float + move_id: Float + version_group_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_moveflavortext" +""" +input pokemon_v2_moveflavortext_var_pop_order_by { + id: order_by + language_id: order_by + move_id: order_by + version_group_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_moveflavortext_var_samp_fields { + id: Float + language_id: Float + move_id: Float + version_group_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_moveflavortext" +""" +input pokemon_v2_moveflavortext_var_samp_order_by { + id: order_by + language_id: order_by + move_id: order_by + version_group_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_moveflavortext_variance_fields { + id: Float + language_id: Float + move_id: Float + version_group_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_moveflavortext" +""" +input pokemon_v2_moveflavortext_variance_order_by { + id: order_by + language_id: order_by + move_id: order_by + version_group_id: order_by +} + +""" +columns and relationships of "pokemon_v2_movelearnmethod" +""" +type pokemon_v2_movelearnmethod { + id: Int! + name: String! + + """An array relationship""" + pokemon_v2_movelearnmethoddescriptions( + """distinct select on columns""" + distinct_on: [pokemon_v2_movelearnmethoddescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movelearnmethoddescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movelearnmethoddescription_bool_exp + ): [pokemon_v2_movelearnmethoddescription!]! + + """An aggregate relationship""" + pokemon_v2_movelearnmethoddescriptions_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movelearnmethoddescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movelearnmethoddescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movelearnmethoddescription_bool_exp + ): pokemon_v2_movelearnmethoddescription_aggregate! + + """An array relationship""" + pokemon_v2_movelearnmethodnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_movelearnmethodname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movelearnmethodname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movelearnmethodname_bool_exp + ): [pokemon_v2_movelearnmethodname!]! + + """An aggregate relationship""" + pokemon_v2_movelearnmethodnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movelearnmethodname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movelearnmethodname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movelearnmethodname_bool_exp + ): pokemon_v2_movelearnmethodname_aggregate! + + """An array relationship""" + pokemon_v2_pokemonmoves( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonmove_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonmove_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonmove_bool_exp + ): [pokemon_v2_pokemonmove!]! + + """An aggregate relationship""" + pokemon_v2_pokemonmoves_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonmove_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonmove_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonmove_bool_exp + ): pokemon_v2_pokemonmove_aggregate! + + """An array relationship""" + pokemon_v2_versiongroupmovelearnmethods( + """distinct select on columns""" + distinct_on: [pokemon_v2_versiongroupmovelearnmethod_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_versiongroupmovelearnmethod_order_by!] + + """filter the rows returned""" + where: pokemon_v2_versiongroupmovelearnmethod_bool_exp + ): [pokemon_v2_versiongroupmovelearnmethod!]! + + """An aggregate relationship""" + pokemon_v2_versiongroupmovelearnmethods_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_versiongroupmovelearnmethod_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_versiongroupmovelearnmethod_order_by!] + + """filter the rows returned""" + where: pokemon_v2_versiongroupmovelearnmethod_bool_exp + ): pokemon_v2_versiongroupmovelearnmethod_aggregate! +} + +""" +aggregated selection of "pokemon_v2_movelearnmethod" +""" +type pokemon_v2_movelearnmethod_aggregate { + aggregate: pokemon_v2_movelearnmethod_aggregate_fields + nodes: [pokemon_v2_movelearnmethod!]! +} + +""" +aggregate fields of "pokemon_v2_movelearnmethod" +""" +type pokemon_v2_movelearnmethod_aggregate_fields { + avg: pokemon_v2_movelearnmethod_avg_fields + count(columns: [pokemon_v2_movelearnmethod_select_column!], distinct: Boolean): Int! + max: pokemon_v2_movelearnmethod_max_fields + min: pokemon_v2_movelearnmethod_min_fields + stddev: pokemon_v2_movelearnmethod_stddev_fields + stddev_pop: pokemon_v2_movelearnmethod_stddev_pop_fields + stddev_samp: pokemon_v2_movelearnmethod_stddev_samp_fields + sum: pokemon_v2_movelearnmethod_sum_fields + var_pop: pokemon_v2_movelearnmethod_var_pop_fields + var_samp: pokemon_v2_movelearnmethod_var_samp_fields + variance: pokemon_v2_movelearnmethod_variance_fields +} + +"""aggregate avg on columns""" +type pokemon_v2_movelearnmethod_avg_fields { + id: Float +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_movelearnmethod". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_movelearnmethod_bool_exp { + _and: [pokemon_v2_movelearnmethod_bool_exp!] + _not: pokemon_v2_movelearnmethod_bool_exp + _or: [pokemon_v2_movelearnmethod_bool_exp!] + id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_movelearnmethoddescriptions: pokemon_v2_movelearnmethoddescription_bool_exp + pokemon_v2_movelearnmethoddescriptions_aggregate: pokemon_v2_movelearnmethoddescription_aggregate_bool_exp + pokemon_v2_movelearnmethodnames: pokemon_v2_movelearnmethodname_bool_exp + pokemon_v2_movelearnmethodnames_aggregate: pokemon_v2_movelearnmethodname_aggregate_bool_exp + pokemon_v2_pokemonmoves: pokemon_v2_pokemonmove_bool_exp + pokemon_v2_pokemonmoves_aggregate: pokemon_v2_pokemonmove_aggregate_bool_exp + pokemon_v2_versiongroupmovelearnmethods: pokemon_v2_versiongroupmovelearnmethod_bool_exp + pokemon_v2_versiongroupmovelearnmethods_aggregate: pokemon_v2_versiongroupmovelearnmethod_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_movelearnmethod_max_fields { + id: Int + name: String +} + +"""aggregate min on columns""" +type pokemon_v2_movelearnmethod_min_fields { + id: Int + name: String +} + +""" +Ordering options when selecting data from "pokemon_v2_movelearnmethod". +""" +input pokemon_v2_movelearnmethod_order_by { + id: order_by + name: order_by + pokemon_v2_movelearnmethoddescriptions_aggregate: pokemon_v2_movelearnmethoddescription_aggregate_order_by + pokemon_v2_movelearnmethodnames_aggregate: pokemon_v2_movelearnmethodname_aggregate_order_by + pokemon_v2_pokemonmoves_aggregate: pokemon_v2_pokemonmove_aggregate_order_by + pokemon_v2_versiongroupmovelearnmethods_aggregate: pokemon_v2_versiongroupmovelearnmethod_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_movelearnmethod" +""" +enum pokemon_v2_movelearnmethod_select_column { + """column name""" + id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_movelearnmethod_stddev_fields { + id: Float +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_movelearnmethod_stddev_pop_fields { + id: Float +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_movelearnmethod_stddev_samp_fields { + id: Float +} + +""" +Streaming cursor of the table "pokemon_v2_movelearnmethod" +""" +input pokemon_v2_movelearnmethod_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_movelearnmethod_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_movelearnmethod_stream_cursor_value_input { + id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_movelearnmethod_sum_fields { + id: Int +} + +"""aggregate var_pop on columns""" +type pokemon_v2_movelearnmethod_var_pop_fields { + id: Float +} + +"""aggregate var_samp on columns""" +type pokemon_v2_movelearnmethod_var_samp_fields { + id: Float +} + +"""aggregate variance on columns""" +type pokemon_v2_movelearnmethod_variance_fields { + id: Float +} + +""" +columns and relationships of "pokemon_v2_movelearnmethoddescription" +""" +type pokemon_v2_movelearnmethoddescription { + description: String! + id: Int! + language_id: Int + move_learn_method_id: Int + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_movelearnmethod: pokemon_v2_movelearnmethod +} + +""" +aggregated selection of "pokemon_v2_movelearnmethoddescription" +""" +type pokemon_v2_movelearnmethoddescription_aggregate { + aggregate: pokemon_v2_movelearnmethoddescription_aggregate_fields + nodes: [pokemon_v2_movelearnmethoddescription!]! +} + +input pokemon_v2_movelearnmethoddescription_aggregate_bool_exp { + count: pokemon_v2_movelearnmethoddescription_aggregate_bool_exp_count +} + +input pokemon_v2_movelearnmethoddescription_aggregate_bool_exp_count { + arguments: [pokemon_v2_movelearnmethoddescription_select_column!] + distinct: Boolean + filter: pokemon_v2_movelearnmethoddescription_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_movelearnmethoddescription" +""" +type pokemon_v2_movelearnmethoddescription_aggregate_fields { + avg: pokemon_v2_movelearnmethoddescription_avg_fields + count(columns: [pokemon_v2_movelearnmethoddescription_select_column!], distinct: Boolean): Int! + max: pokemon_v2_movelearnmethoddescription_max_fields + min: pokemon_v2_movelearnmethoddescription_min_fields + stddev: pokemon_v2_movelearnmethoddescription_stddev_fields + stddev_pop: pokemon_v2_movelearnmethoddescription_stddev_pop_fields + stddev_samp: pokemon_v2_movelearnmethoddescription_stddev_samp_fields + sum: pokemon_v2_movelearnmethoddescription_sum_fields + var_pop: pokemon_v2_movelearnmethoddescription_var_pop_fields + var_samp: pokemon_v2_movelearnmethoddescription_var_samp_fields + variance: pokemon_v2_movelearnmethoddescription_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_movelearnmethoddescription" +""" +input pokemon_v2_movelearnmethoddescription_aggregate_order_by { + avg: pokemon_v2_movelearnmethoddescription_avg_order_by + count: order_by + max: pokemon_v2_movelearnmethoddescription_max_order_by + min: pokemon_v2_movelearnmethoddescription_min_order_by + stddev: pokemon_v2_movelearnmethoddescription_stddev_order_by + stddev_pop: pokemon_v2_movelearnmethoddescription_stddev_pop_order_by + stddev_samp: pokemon_v2_movelearnmethoddescription_stddev_samp_order_by + sum: pokemon_v2_movelearnmethoddescription_sum_order_by + var_pop: pokemon_v2_movelearnmethoddescription_var_pop_order_by + var_samp: pokemon_v2_movelearnmethoddescription_var_samp_order_by + variance: pokemon_v2_movelearnmethoddescription_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_movelearnmethoddescription_avg_fields { + id: Float + language_id: Float + move_learn_method_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_movelearnmethoddescription" +""" +input pokemon_v2_movelearnmethoddescription_avg_order_by { + id: order_by + language_id: order_by + move_learn_method_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_movelearnmethoddescription". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_movelearnmethoddescription_bool_exp { + _and: [pokemon_v2_movelearnmethoddescription_bool_exp!] + _not: pokemon_v2_movelearnmethoddescription_bool_exp + _or: [pokemon_v2_movelearnmethoddescription_bool_exp!] + description: String_comparison_exp + id: Int_comparison_exp + language_id: Int_comparison_exp + move_learn_method_id: Int_comparison_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_movelearnmethod: pokemon_v2_movelearnmethod_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_movelearnmethoddescription_max_fields { + description: String + id: Int + language_id: Int + move_learn_method_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_movelearnmethoddescription" +""" +input pokemon_v2_movelearnmethoddescription_max_order_by { + description: order_by + id: order_by + language_id: order_by + move_learn_method_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_movelearnmethoddescription_min_fields { + description: String + id: Int + language_id: Int + move_learn_method_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_movelearnmethoddescription" +""" +input pokemon_v2_movelearnmethoddescription_min_order_by { + description: order_by + id: order_by + language_id: order_by + move_learn_method_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_movelearnmethoddescription". +""" +input pokemon_v2_movelearnmethoddescription_order_by { + description: order_by + id: order_by + language_id: order_by + move_learn_method_id: order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_movelearnmethod: pokemon_v2_movelearnmethod_order_by +} + +""" +select columns of table "pokemon_v2_movelearnmethoddescription" +""" +enum pokemon_v2_movelearnmethoddescription_select_column { + """column name""" + description + + """column name""" + id + + """column name""" + language_id + + """column name""" + move_learn_method_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_movelearnmethoddescription_stddev_fields { + id: Float + language_id: Float + move_learn_method_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_movelearnmethoddescription" +""" +input pokemon_v2_movelearnmethoddescription_stddev_order_by { + id: order_by + language_id: order_by + move_learn_method_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_movelearnmethoddescription_stddev_pop_fields { + id: Float + language_id: Float + move_learn_method_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_movelearnmethoddescription" +""" +input pokemon_v2_movelearnmethoddescription_stddev_pop_order_by { + id: order_by + language_id: order_by + move_learn_method_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_movelearnmethoddescription_stddev_samp_fields { + id: Float + language_id: Float + move_learn_method_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_movelearnmethoddescription" +""" +input pokemon_v2_movelearnmethoddescription_stddev_samp_order_by { + id: order_by + language_id: order_by + move_learn_method_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_movelearnmethoddescription" +""" +input pokemon_v2_movelearnmethoddescription_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_movelearnmethoddescription_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_movelearnmethoddescription_stream_cursor_value_input { + description: String + id: Int + language_id: Int + move_learn_method_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_movelearnmethoddescription_sum_fields { + id: Int + language_id: Int + move_learn_method_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_movelearnmethoddescription" +""" +input pokemon_v2_movelearnmethoddescription_sum_order_by { + id: order_by + language_id: order_by + move_learn_method_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_movelearnmethoddescription_var_pop_fields { + id: Float + language_id: Float + move_learn_method_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_movelearnmethoddescription" +""" +input pokemon_v2_movelearnmethoddescription_var_pop_order_by { + id: order_by + language_id: order_by + move_learn_method_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_movelearnmethoddescription_var_samp_fields { + id: Float + language_id: Float + move_learn_method_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_movelearnmethoddescription" +""" +input pokemon_v2_movelearnmethoddescription_var_samp_order_by { + id: order_by + language_id: order_by + move_learn_method_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_movelearnmethoddescription_variance_fields { + id: Float + language_id: Float + move_learn_method_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_movelearnmethoddescription" +""" +input pokemon_v2_movelearnmethoddescription_variance_order_by { + id: order_by + language_id: order_by + move_learn_method_id: order_by +} + +""" +columns and relationships of "pokemon_v2_movelearnmethodname" +""" +type pokemon_v2_movelearnmethodname { + id: Int! + language_id: Int + move_learn_method_id: Int + name: String! + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_movelearnmethod: pokemon_v2_movelearnmethod +} + +""" +aggregated selection of "pokemon_v2_movelearnmethodname" +""" +type pokemon_v2_movelearnmethodname_aggregate { + aggregate: pokemon_v2_movelearnmethodname_aggregate_fields + nodes: [pokemon_v2_movelearnmethodname!]! +} + +input pokemon_v2_movelearnmethodname_aggregate_bool_exp { + count: pokemon_v2_movelearnmethodname_aggregate_bool_exp_count +} + +input pokemon_v2_movelearnmethodname_aggregate_bool_exp_count { + arguments: [pokemon_v2_movelearnmethodname_select_column!] + distinct: Boolean + filter: pokemon_v2_movelearnmethodname_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_movelearnmethodname" +""" +type pokemon_v2_movelearnmethodname_aggregate_fields { + avg: pokemon_v2_movelearnmethodname_avg_fields + count(columns: [pokemon_v2_movelearnmethodname_select_column!], distinct: Boolean): Int! + max: pokemon_v2_movelearnmethodname_max_fields + min: pokemon_v2_movelearnmethodname_min_fields + stddev: pokemon_v2_movelearnmethodname_stddev_fields + stddev_pop: pokemon_v2_movelearnmethodname_stddev_pop_fields + stddev_samp: pokemon_v2_movelearnmethodname_stddev_samp_fields + sum: pokemon_v2_movelearnmethodname_sum_fields + var_pop: pokemon_v2_movelearnmethodname_var_pop_fields + var_samp: pokemon_v2_movelearnmethodname_var_samp_fields + variance: pokemon_v2_movelearnmethodname_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_movelearnmethodname" +""" +input pokemon_v2_movelearnmethodname_aggregate_order_by { + avg: pokemon_v2_movelearnmethodname_avg_order_by + count: order_by + max: pokemon_v2_movelearnmethodname_max_order_by + min: pokemon_v2_movelearnmethodname_min_order_by + stddev: pokemon_v2_movelearnmethodname_stddev_order_by + stddev_pop: pokemon_v2_movelearnmethodname_stddev_pop_order_by + stddev_samp: pokemon_v2_movelearnmethodname_stddev_samp_order_by + sum: pokemon_v2_movelearnmethodname_sum_order_by + var_pop: pokemon_v2_movelearnmethodname_var_pop_order_by + var_samp: pokemon_v2_movelearnmethodname_var_samp_order_by + variance: pokemon_v2_movelearnmethodname_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_movelearnmethodname_avg_fields { + id: Float + language_id: Float + move_learn_method_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_movelearnmethodname" +""" +input pokemon_v2_movelearnmethodname_avg_order_by { + id: order_by + language_id: order_by + move_learn_method_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_movelearnmethodname". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_movelearnmethodname_bool_exp { + _and: [pokemon_v2_movelearnmethodname_bool_exp!] + _not: pokemon_v2_movelearnmethodname_bool_exp + _or: [pokemon_v2_movelearnmethodname_bool_exp!] + id: Int_comparison_exp + language_id: Int_comparison_exp + move_learn_method_id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_movelearnmethod: pokemon_v2_movelearnmethod_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_movelearnmethodname_max_fields { + id: Int + language_id: Int + move_learn_method_id: Int + name: String +} + +""" +order by max() on columns of table "pokemon_v2_movelearnmethodname" +""" +input pokemon_v2_movelearnmethodname_max_order_by { + id: order_by + language_id: order_by + move_learn_method_id: order_by + name: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_movelearnmethodname_min_fields { + id: Int + language_id: Int + move_learn_method_id: Int + name: String +} + +""" +order by min() on columns of table "pokemon_v2_movelearnmethodname" +""" +input pokemon_v2_movelearnmethodname_min_order_by { + id: order_by + language_id: order_by + move_learn_method_id: order_by + name: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_movelearnmethodname". +""" +input pokemon_v2_movelearnmethodname_order_by { + id: order_by + language_id: order_by + move_learn_method_id: order_by + name: order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_movelearnmethod: pokemon_v2_movelearnmethod_order_by +} + +""" +select columns of table "pokemon_v2_movelearnmethodname" +""" +enum pokemon_v2_movelearnmethodname_select_column { + """column name""" + id + + """column name""" + language_id + + """column name""" + move_learn_method_id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_movelearnmethodname_stddev_fields { + id: Float + language_id: Float + move_learn_method_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_movelearnmethodname" +""" +input pokemon_v2_movelearnmethodname_stddev_order_by { + id: order_by + language_id: order_by + move_learn_method_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_movelearnmethodname_stddev_pop_fields { + id: Float + language_id: Float + move_learn_method_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_movelearnmethodname" +""" +input pokemon_v2_movelearnmethodname_stddev_pop_order_by { + id: order_by + language_id: order_by + move_learn_method_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_movelearnmethodname_stddev_samp_fields { + id: Float + language_id: Float + move_learn_method_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_movelearnmethodname" +""" +input pokemon_v2_movelearnmethodname_stddev_samp_order_by { + id: order_by + language_id: order_by + move_learn_method_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_movelearnmethodname" +""" +input pokemon_v2_movelearnmethodname_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_movelearnmethodname_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_movelearnmethodname_stream_cursor_value_input { + id: Int + language_id: Int + move_learn_method_id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_movelearnmethodname_sum_fields { + id: Int + language_id: Int + move_learn_method_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_movelearnmethodname" +""" +input pokemon_v2_movelearnmethodname_sum_order_by { + id: order_by + language_id: order_by + move_learn_method_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_movelearnmethodname_var_pop_fields { + id: Float + language_id: Float + move_learn_method_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_movelearnmethodname" +""" +input pokemon_v2_movelearnmethodname_var_pop_order_by { + id: order_by + language_id: order_by + move_learn_method_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_movelearnmethodname_var_samp_fields { + id: Float + language_id: Float + move_learn_method_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_movelearnmethodname" +""" +input pokemon_v2_movelearnmethodname_var_samp_order_by { + id: order_by + language_id: order_by + move_learn_method_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_movelearnmethodname_variance_fields { + id: Float + language_id: Float + move_learn_method_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_movelearnmethodname" +""" +input pokemon_v2_movelearnmethodname_variance_order_by { + id: order_by + language_id: order_by + move_learn_method_id: order_by +} + +""" +columns and relationships of "pokemon_v2_movemeta" +""" +type pokemon_v2_movemeta { + ailment_chance: Int + crit_rate: Int + drain: Int + flinch_chance: Int + healing: Int + id: Int! + max_hits: Int + max_turns: Int + min_hits: Int + min_turns: Int + move_id: Int! + move_meta_ailment_id: Int + move_meta_category_id: Int + + """An object relationship""" + pokemon_v2_move: pokemon_v2_move! + + """An object relationship""" + pokemon_v2_movemetaailment: pokemon_v2_movemetaailment + + """An object relationship""" + pokemon_v2_movemetacategory: pokemon_v2_movemetacategory + stat_chance: Int +} + +""" +aggregated selection of "pokemon_v2_movemeta" +""" +type pokemon_v2_movemeta_aggregate { + aggregate: pokemon_v2_movemeta_aggregate_fields + nodes: [pokemon_v2_movemeta!]! +} + +input pokemon_v2_movemeta_aggregate_bool_exp { + count: pokemon_v2_movemeta_aggregate_bool_exp_count +} + +input pokemon_v2_movemeta_aggregate_bool_exp_count { + arguments: [pokemon_v2_movemeta_select_column!] + distinct: Boolean + filter: pokemon_v2_movemeta_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_movemeta" +""" +type pokemon_v2_movemeta_aggregate_fields { + avg: pokemon_v2_movemeta_avg_fields + count(columns: [pokemon_v2_movemeta_select_column!], distinct: Boolean): Int! + max: pokemon_v2_movemeta_max_fields + min: pokemon_v2_movemeta_min_fields + stddev: pokemon_v2_movemeta_stddev_fields + stddev_pop: pokemon_v2_movemeta_stddev_pop_fields + stddev_samp: pokemon_v2_movemeta_stddev_samp_fields + sum: pokemon_v2_movemeta_sum_fields + var_pop: pokemon_v2_movemeta_var_pop_fields + var_samp: pokemon_v2_movemeta_var_samp_fields + variance: pokemon_v2_movemeta_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_movemeta" +""" +input pokemon_v2_movemeta_aggregate_order_by { + avg: pokemon_v2_movemeta_avg_order_by + count: order_by + max: pokemon_v2_movemeta_max_order_by + min: pokemon_v2_movemeta_min_order_by + stddev: pokemon_v2_movemeta_stddev_order_by + stddev_pop: pokemon_v2_movemeta_stddev_pop_order_by + stddev_samp: pokemon_v2_movemeta_stddev_samp_order_by + sum: pokemon_v2_movemeta_sum_order_by + var_pop: pokemon_v2_movemeta_var_pop_order_by + var_samp: pokemon_v2_movemeta_var_samp_order_by + variance: pokemon_v2_movemeta_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_movemeta_avg_fields { + ailment_chance: Float + crit_rate: Float + drain: Float + flinch_chance: Float + healing: Float + id: Float + max_hits: Float + max_turns: Float + min_hits: Float + min_turns: Float + move_id: Float + move_meta_ailment_id: Float + move_meta_category_id: Float + stat_chance: Float +} + +""" +order by avg() on columns of table "pokemon_v2_movemeta" +""" +input pokemon_v2_movemeta_avg_order_by { + ailment_chance: order_by + crit_rate: order_by + drain: order_by + flinch_chance: order_by + healing: order_by + id: order_by + max_hits: order_by + max_turns: order_by + min_hits: order_by + min_turns: order_by + move_id: order_by + move_meta_ailment_id: order_by + move_meta_category_id: order_by + stat_chance: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_movemeta". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_movemeta_bool_exp { + _and: [pokemon_v2_movemeta_bool_exp!] + _not: pokemon_v2_movemeta_bool_exp + _or: [pokemon_v2_movemeta_bool_exp!] + ailment_chance: Int_comparison_exp + crit_rate: Int_comparison_exp + drain: Int_comparison_exp + flinch_chance: Int_comparison_exp + healing: Int_comparison_exp + id: Int_comparison_exp + max_hits: Int_comparison_exp + max_turns: Int_comparison_exp + min_hits: Int_comparison_exp + min_turns: Int_comparison_exp + move_id: Int_comparison_exp + move_meta_ailment_id: Int_comparison_exp + move_meta_category_id: Int_comparison_exp + pokemon_v2_move: pokemon_v2_move_bool_exp + pokemon_v2_movemetaailment: pokemon_v2_movemetaailment_bool_exp + pokemon_v2_movemetacategory: pokemon_v2_movemetacategory_bool_exp + stat_chance: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_movemeta_max_fields { + ailment_chance: Int + crit_rate: Int + drain: Int + flinch_chance: Int + healing: Int + id: Int + max_hits: Int + max_turns: Int + min_hits: Int + min_turns: Int + move_id: Int + move_meta_ailment_id: Int + move_meta_category_id: Int + stat_chance: Int +} + +""" +order by max() on columns of table "pokemon_v2_movemeta" +""" +input pokemon_v2_movemeta_max_order_by { + ailment_chance: order_by + crit_rate: order_by + drain: order_by + flinch_chance: order_by + healing: order_by + id: order_by + max_hits: order_by + max_turns: order_by + min_hits: order_by + min_turns: order_by + move_id: order_by + move_meta_ailment_id: order_by + move_meta_category_id: order_by + stat_chance: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_movemeta_min_fields { + ailment_chance: Int + crit_rate: Int + drain: Int + flinch_chance: Int + healing: Int + id: Int + max_hits: Int + max_turns: Int + min_hits: Int + min_turns: Int + move_id: Int + move_meta_ailment_id: Int + move_meta_category_id: Int + stat_chance: Int +} + +""" +order by min() on columns of table "pokemon_v2_movemeta" +""" +input pokemon_v2_movemeta_min_order_by { + ailment_chance: order_by + crit_rate: order_by + drain: order_by + flinch_chance: order_by + healing: order_by + id: order_by + max_hits: order_by + max_turns: order_by + min_hits: order_by + min_turns: order_by + move_id: order_by + move_meta_ailment_id: order_by + move_meta_category_id: order_by + stat_chance: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_movemeta".""" +input pokemon_v2_movemeta_order_by { + ailment_chance: order_by + crit_rate: order_by + drain: order_by + flinch_chance: order_by + healing: order_by + id: order_by + max_hits: order_by + max_turns: order_by + min_hits: order_by + min_turns: order_by + move_id: order_by + move_meta_ailment_id: order_by + move_meta_category_id: order_by + pokemon_v2_move: pokemon_v2_move_order_by + pokemon_v2_movemetaailment: pokemon_v2_movemetaailment_order_by + pokemon_v2_movemetacategory: pokemon_v2_movemetacategory_order_by + stat_chance: order_by +} + +""" +select columns of table "pokemon_v2_movemeta" +""" +enum pokemon_v2_movemeta_select_column { + """column name""" + ailment_chance + + """column name""" + crit_rate + + """column name""" + drain + + """column name""" + flinch_chance + + """column name""" + healing + + """column name""" + id + + """column name""" + max_hits + + """column name""" + max_turns + + """column name""" + min_hits + + """column name""" + min_turns + + """column name""" + move_id + + """column name""" + move_meta_ailment_id + + """column name""" + move_meta_category_id + + """column name""" + stat_chance +} + +"""aggregate stddev on columns""" +type pokemon_v2_movemeta_stddev_fields { + ailment_chance: Float + crit_rate: Float + drain: Float + flinch_chance: Float + healing: Float + id: Float + max_hits: Float + max_turns: Float + min_hits: Float + min_turns: Float + move_id: Float + move_meta_ailment_id: Float + move_meta_category_id: Float + stat_chance: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_movemeta" +""" +input pokemon_v2_movemeta_stddev_order_by { + ailment_chance: order_by + crit_rate: order_by + drain: order_by + flinch_chance: order_by + healing: order_by + id: order_by + max_hits: order_by + max_turns: order_by + min_hits: order_by + min_turns: order_by + move_id: order_by + move_meta_ailment_id: order_by + move_meta_category_id: order_by + stat_chance: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_movemeta_stddev_pop_fields { + ailment_chance: Float + crit_rate: Float + drain: Float + flinch_chance: Float + healing: Float + id: Float + max_hits: Float + max_turns: Float + min_hits: Float + min_turns: Float + move_id: Float + move_meta_ailment_id: Float + move_meta_category_id: Float + stat_chance: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_movemeta" +""" +input pokemon_v2_movemeta_stddev_pop_order_by { + ailment_chance: order_by + crit_rate: order_by + drain: order_by + flinch_chance: order_by + healing: order_by + id: order_by + max_hits: order_by + max_turns: order_by + min_hits: order_by + min_turns: order_by + move_id: order_by + move_meta_ailment_id: order_by + move_meta_category_id: order_by + stat_chance: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_movemeta_stddev_samp_fields { + ailment_chance: Float + crit_rate: Float + drain: Float + flinch_chance: Float + healing: Float + id: Float + max_hits: Float + max_turns: Float + min_hits: Float + min_turns: Float + move_id: Float + move_meta_ailment_id: Float + move_meta_category_id: Float + stat_chance: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_movemeta" +""" +input pokemon_v2_movemeta_stddev_samp_order_by { + ailment_chance: order_by + crit_rate: order_by + drain: order_by + flinch_chance: order_by + healing: order_by + id: order_by + max_hits: order_by + max_turns: order_by + min_hits: order_by + min_turns: order_by + move_id: order_by + move_meta_ailment_id: order_by + move_meta_category_id: order_by + stat_chance: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_movemeta" +""" +input pokemon_v2_movemeta_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_movemeta_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_movemeta_stream_cursor_value_input { + ailment_chance: Int + crit_rate: Int + drain: Int + flinch_chance: Int + healing: Int + id: Int + max_hits: Int + max_turns: Int + min_hits: Int + min_turns: Int + move_id: Int + move_meta_ailment_id: Int + move_meta_category_id: Int + stat_chance: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_movemeta_sum_fields { + ailment_chance: Int + crit_rate: Int + drain: Int + flinch_chance: Int + healing: Int + id: Int + max_hits: Int + max_turns: Int + min_hits: Int + min_turns: Int + move_id: Int + move_meta_ailment_id: Int + move_meta_category_id: Int + stat_chance: Int +} + +""" +order by sum() on columns of table "pokemon_v2_movemeta" +""" +input pokemon_v2_movemeta_sum_order_by { + ailment_chance: order_by + crit_rate: order_by + drain: order_by + flinch_chance: order_by + healing: order_by + id: order_by + max_hits: order_by + max_turns: order_by + min_hits: order_by + min_turns: order_by + move_id: order_by + move_meta_ailment_id: order_by + move_meta_category_id: order_by + stat_chance: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_movemeta_var_pop_fields { + ailment_chance: Float + crit_rate: Float + drain: Float + flinch_chance: Float + healing: Float + id: Float + max_hits: Float + max_turns: Float + min_hits: Float + min_turns: Float + move_id: Float + move_meta_ailment_id: Float + move_meta_category_id: Float + stat_chance: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_movemeta" +""" +input pokemon_v2_movemeta_var_pop_order_by { + ailment_chance: order_by + crit_rate: order_by + drain: order_by + flinch_chance: order_by + healing: order_by + id: order_by + max_hits: order_by + max_turns: order_by + min_hits: order_by + min_turns: order_by + move_id: order_by + move_meta_ailment_id: order_by + move_meta_category_id: order_by + stat_chance: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_movemeta_var_samp_fields { + ailment_chance: Float + crit_rate: Float + drain: Float + flinch_chance: Float + healing: Float + id: Float + max_hits: Float + max_turns: Float + min_hits: Float + min_turns: Float + move_id: Float + move_meta_ailment_id: Float + move_meta_category_id: Float + stat_chance: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_movemeta" +""" +input pokemon_v2_movemeta_var_samp_order_by { + ailment_chance: order_by + crit_rate: order_by + drain: order_by + flinch_chance: order_by + healing: order_by + id: order_by + max_hits: order_by + max_turns: order_by + min_hits: order_by + min_turns: order_by + move_id: order_by + move_meta_ailment_id: order_by + move_meta_category_id: order_by + stat_chance: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_movemeta_variance_fields { + ailment_chance: Float + crit_rate: Float + drain: Float + flinch_chance: Float + healing: Float + id: Float + max_hits: Float + max_turns: Float + min_hits: Float + min_turns: Float + move_id: Float + move_meta_ailment_id: Float + move_meta_category_id: Float + stat_chance: Float +} + +""" +order by variance() on columns of table "pokemon_v2_movemeta" +""" +input pokemon_v2_movemeta_variance_order_by { + ailment_chance: order_by + crit_rate: order_by + drain: order_by + flinch_chance: order_by + healing: order_by + id: order_by + max_hits: order_by + max_turns: order_by + min_hits: order_by + min_turns: order_by + move_id: order_by + move_meta_ailment_id: order_by + move_meta_category_id: order_by + stat_chance: order_by +} + +""" +columns and relationships of "pokemon_v2_movemetaailment" +""" +type pokemon_v2_movemetaailment { + id: Int! + name: String! + + """An array relationship""" + pokemon_v2_movemeta( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemeta_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemeta_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemeta_bool_exp + ): [pokemon_v2_movemeta!]! + + """An aggregate relationship""" + pokemon_v2_movemeta_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemeta_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemeta_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemeta_bool_exp + ): pokemon_v2_movemeta_aggregate! + + """An array relationship""" + pokemon_v2_movemetaailmentnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemetaailmentname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemetaailmentname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemetaailmentname_bool_exp + ): [pokemon_v2_movemetaailmentname!]! + + """An aggregate relationship""" + pokemon_v2_movemetaailmentnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemetaailmentname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemetaailmentname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemetaailmentname_bool_exp + ): pokemon_v2_movemetaailmentname_aggregate! +} + +""" +aggregated selection of "pokemon_v2_movemetaailment" +""" +type pokemon_v2_movemetaailment_aggregate { + aggregate: pokemon_v2_movemetaailment_aggregate_fields + nodes: [pokemon_v2_movemetaailment!]! +} + +""" +aggregate fields of "pokemon_v2_movemetaailment" +""" +type pokemon_v2_movemetaailment_aggregate_fields { + avg: pokemon_v2_movemetaailment_avg_fields + count(columns: [pokemon_v2_movemetaailment_select_column!], distinct: Boolean): Int! + max: pokemon_v2_movemetaailment_max_fields + min: pokemon_v2_movemetaailment_min_fields + stddev: pokemon_v2_movemetaailment_stddev_fields + stddev_pop: pokemon_v2_movemetaailment_stddev_pop_fields + stddev_samp: pokemon_v2_movemetaailment_stddev_samp_fields + sum: pokemon_v2_movemetaailment_sum_fields + var_pop: pokemon_v2_movemetaailment_var_pop_fields + var_samp: pokemon_v2_movemetaailment_var_samp_fields + variance: pokemon_v2_movemetaailment_variance_fields +} + +"""aggregate avg on columns""" +type pokemon_v2_movemetaailment_avg_fields { + id: Float +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_movemetaailment". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_movemetaailment_bool_exp { + _and: [pokemon_v2_movemetaailment_bool_exp!] + _not: pokemon_v2_movemetaailment_bool_exp + _or: [pokemon_v2_movemetaailment_bool_exp!] + id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_movemeta: pokemon_v2_movemeta_bool_exp + pokemon_v2_movemeta_aggregate: pokemon_v2_movemeta_aggregate_bool_exp + pokemon_v2_movemetaailmentnames: pokemon_v2_movemetaailmentname_bool_exp + pokemon_v2_movemetaailmentnames_aggregate: pokemon_v2_movemetaailmentname_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_movemetaailment_max_fields { + id: Int + name: String +} + +"""aggregate min on columns""" +type pokemon_v2_movemetaailment_min_fields { + id: Int + name: String +} + +""" +Ordering options when selecting data from "pokemon_v2_movemetaailment". +""" +input pokemon_v2_movemetaailment_order_by { + id: order_by + name: order_by + pokemon_v2_movemeta_aggregate: pokemon_v2_movemeta_aggregate_order_by + pokemon_v2_movemetaailmentnames_aggregate: pokemon_v2_movemetaailmentname_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_movemetaailment" +""" +enum pokemon_v2_movemetaailment_select_column { + """column name""" + id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_movemetaailment_stddev_fields { + id: Float +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_movemetaailment_stddev_pop_fields { + id: Float +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_movemetaailment_stddev_samp_fields { + id: Float +} + +""" +Streaming cursor of the table "pokemon_v2_movemetaailment" +""" +input pokemon_v2_movemetaailment_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_movemetaailment_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_movemetaailment_stream_cursor_value_input { + id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_movemetaailment_sum_fields { + id: Int +} + +"""aggregate var_pop on columns""" +type pokemon_v2_movemetaailment_var_pop_fields { + id: Float +} + +"""aggregate var_samp on columns""" +type pokemon_v2_movemetaailment_var_samp_fields { + id: Float +} + +"""aggregate variance on columns""" +type pokemon_v2_movemetaailment_variance_fields { + id: Float +} + +""" +columns and relationships of "pokemon_v2_movemetaailmentname" +""" +type pokemon_v2_movemetaailmentname { + id: Int! + language_id: Int + move_meta_ailment_id: Int + name: String! + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_movemetaailment: pokemon_v2_movemetaailment +} + +""" +aggregated selection of "pokemon_v2_movemetaailmentname" +""" +type pokemon_v2_movemetaailmentname_aggregate { + aggregate: pokemon_v2_movemetaailmentname_aggregate_fields + nodes: [pokemon_v2_movemetaailmentname!]! +} + +input pokemon_v2_movemetaailmentname_aggregate_bool_exp { + count: pokemon_v2_movemetaailmentname_aggregate_bool_exp_count +} + +input pokemon_v2_movemetaailmentname_aggregate_bool_exp_count { + arguments: [pokemon_v2_movemetaailmentname_select_column!] + distinct: Boolean + filter: pokemon_v2_movemetaailmentname_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_movemetaailmentname" +""" +type pokemon_v2_movemetaailmentname_aggregate_fields { + avg: pokemon_v2_movemetaailmentname_avg_fields + count(columns: [pokemon_v2_movemetaailmentname_select_column!], distinct: Boolean): Int! + max: pokemon_v2_movemetaailmentname_max_fields + min: pokemon_v2_movemetaailmentname_min_fields + stddev: pokemon_v2_movemetaailmentname_stddev_fields + stddev_pop: pokemon_v2_movemetaailmentname_stddev_pop_fields + stddev_samp: pokemon_v2_movemetaailmentname_stddev_samp_fields + sum: pokemon_v2_movemetaailmentname_sum_fields + var_pop: pokemon_v2_movemetaailmentname_var_pop_fields + var_samp: pokemon_v2_movemetaailmentname_var_samp_fields + variance: pokemon_v2_movemetaailmentname_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_movemetaailmentname" +""" +input pokemon_v2_movemetaailmentname_aggregate_order_by { + avg: pokemon_v2_movemetaailmentname_avg_order_by + count: order_by + max: pokemon_v2_movemetaailmentname_max_order_by + min: pokemon_v2_movemetaailmentname_min_order_by + stddev: pokemon_v2_movemetaailmentname_stddev_order_by + stddev_pop: pokemon_v2_movemetaailmentname_stddev_pop_order_by + stddev_samp: pokemon_v2_movemetaailmentname_stddev_samp_order_by + sum: pokemon_v2_movemetaailmentname_sum_order_by + var_pop: pokemon_v2_movemetaailmentname_var_pop_order_by + var_samp: pokemon_v2_movemetaailmentname_var_samp_order_by + variance: pokemon_v2_movemetaailmentname_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_movemetaailmentname_avg_fields { + id: Float + language_id: Float + move_meta_ailment_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_movemetaailmentname" +""" +input pokemon_v2_movemetaailmentname_avg_order_by { + id: order_by + language_id: order_by + move_meta_ailment_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_movemetaailmentname". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_movemetaailmentname_bool_exp { + _and: [pokemon_v2_movemetaailmentname_bool_exp!] + _not: pokemon_v2_movemetaailmentname_bool_exp + _or: [pokemon_v2_movemetaailmentname_bool_exp!] + id: Int_comparison_exp + language_id: Int_comparison_exp + move_meta_ailment_id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_movemetaailment: pokemon_v2_movemetaailment_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_movemetaailmentname_max_fields { + id: Int + language_id: Int + move_meta_ailment_id: Int + name: String +} + +""" +order by max() on columns of table "pokemon_v2_movemetaailmentname" +""" +input pokemon_v2_movemetaailmentname_max_order_by { + id: order_by + language_id: order_by + move_meta_ailment_id: order_by + name: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_movemetaailmentname_min_fields { + id: Int + language_id: Int + move_meta_ailment_id: Int + name: String +} + +""" +order by min() on columns of table "pokemon_v2_movemetaailmentname" +""" +input pokemon_v2_movemetaailmentname_min_order_by { + id: order_by + language_id: order_by + move_meta_ailment_id: order_by + name: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_movemetaailmentname". +""" +input pokemon_v2_movemetaailmentname_order_by { + id: order_by + language_id: order_by + move_meta_ailment_id: order_by + name: order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_movemetaailment: pokemon_v2_movemetaailment_order_by +} + +""" +select columns of table "pokemon_v2_movemetaailmentname" +""" +enum pokemon_v2_movemetaailmentname_select_column { + """column name""" + id + + """column name""" + language_id + + """column name""" + move_meta_ailment_id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_movemetaailmentname_stddev_fields { + id: Float + language_id: Float + move_meta_ailment_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_movemetaailmentname" +""" +input pokemon_v2_movemetaailmentname_stddev_order_by { + id: order_by + language_id: order_by + move_meta_ailment_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_movemetaailmentname_stddev_pop_fields { + id: Float + language_id: Float + move_meta_ailment_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_movemetaailmentname" +""" +input pokemon_v2_movemetaailmentname_stddev_pop_order_by { + id: order_by + language_id: order_by + move_meta_ailment_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_movemetaailmentname_stddev_samp_fields { + id: Float + language_id: Float + move_meta_ailment_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_movemetaailmentname" +""" +input pokemon_v2_movemetaailmentname_stddev_samp_order_by { + id: order_by + language_id: order_by + move_meta_ailment_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_movemetaailmentname" +""" +input pokemon_v2_movemetaailmentname_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_movemetaailmentname_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_movemetaailmentname_stream_cursor_value_input { + id: Int + language_id: Int + move_meta_ailment_id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_movemetaailmentname_sum_fields { + id: Int + language_id: Int + move_meta_ailment_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_movemetaailmentname" +""" +input pokemon_v2_movemetaailmentname_sum_order_by { + id: order_by + language_id: order_by + move_meta_ailment_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_movemetaailmentname_var_pop_fields { + id: Float + language_id: Float + move_meta_ailment_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_movemetaailmentname" +""" +input pokemon_v2_movemetaailmentname_var_pop_order_by { + id: order_by + language_id: order_by + move_meta_ailment_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_movemetaailmentname_var_samp_fields { + id: Float + language_id: Float + move_meta_ailment_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_movemetaailmentname" +""" +input pokemon_v2_movemetaailmentname_var_samp_order_by { + id: order_by + language_id: order_by + move_meta_ailment_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_movemetaailmentname_variance_fields { + id: Float + language_id: Float + move_meta_ailment_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_movemetaailmentname" +""" +input pokemon_v2_movemetaailmentname_variance_order_by { + id: order_by + language_id: order_by + move_meta_ailment_id: order_by +} + +""" +columns and relationships of "pokemon_v2_movemetacategory" +""" +type pokemon_v2_movemetacategory { + id: Int! + name: String! + + """An array relationship""" + pokemon_v2_movemeta( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemeta_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemeta_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemeta_bool_exp + ): [pokemon_v2_movemeta!]! + + """An aggregate relationship""" + pokemon_v2_movemeta_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemeta_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemeta_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemeta_bool_exp + ): pokemon_v2_movemeta_aggregate! + + """An array relationship""" + pokemon_v2_movemetacategorydescriptions( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemetacategorydescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemetacategorydescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemetacategorydescription_bool_exp + ): [pokemon_v2_movemetacategorydescription!]! + + """An aggregate relationship""" + pokemon_v2_movemetacategorydescriptions_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemetacategorydescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemetacategorydescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemetacategorydescription_bool_exp + ): pokemon_v2_movemetacategorydescription_aggregate! +} + +""" +aggregated selection of "pokemon_v2_movemetacategory" +""" +type pokemon_v2_movemetacategory_aggregate { + aggregate: pokemon_v2_movemetacategory_aggregate_fields + nodes: [pokemon_v2_movemetacategory!]! +} + +""" +aggregate fields of "pokemon_v2_movemetacategory" +""" +type pokemon_v2_movemetacategory_aggregate_fields { + avg: pokemon_v2_movemetacategory_avg_fields + count(columns: [pokemon_v2_movemetacategory_select_column!], distinct: Boolean): Int! + max: pokemon_v2_movemetacategory_max_fields + min: pokemon_v2_movemetacategory_min_fields + stddev: pokemon_v2_movemetacategory_stddev_fields + stddev_pop: pokemon_v2_movemetacategory_stddev_pop_fields + stddev_samp: pokemon_v2_movemetacategory_stddev_samp_fields + sum: pokemon_v2_movemetacategory_sum_fields + var_pop: pokemon_v2_movemetacategory_var_pop_fields + var_samp: pokemon_v2_movemetacategory_var_samp_fields + variance: pokemon_v2_movemetacategory_variance_fields +} + +"""aggregate avg on columns""" +type pokemon_v2_movemetacategory_avg_fields { + id: Float +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_movemetacategory". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_movemetacategory_bool_exp { + _and: [pokemon_v2_movemetacategory_bool_exp!] + _not: pokemon_v2_movemetacategory_bool_exp + _or: [pokemon_v2_movemetacategory_bool_exp!] + id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_movemeta: pokemon_v2_movemeta_bool_exp + pokemon_v2_movemeta_aggregate: pokemon_v2_movemeta_aggregate_bool_exp + pokemon_v2_movemetacategorydescriptions: pokemon_v2_movemetacategorydescription_bool_exp + pokemon_v2_movemetacategorydescriptions_aggregate: pokemon_v2_movemetacategorydescription_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_movemetacategory_max_fields { + id: Int + name: String +} + +"""aggregate min on columns""" +type pokemon_v2_movemetacategory_min_fields { + id: Int + name: String +} + +""" +Ordering options when selecting data from "pokemon_v2_movemetacategory". +""" +input pokemon_v2_movemetacategory_order_by { + id: order_by + name: order_by + pokemon_v2_movemeta_aggregate: pokemon_v2_movemeta_aggregate_order_by + pokemon_v2_movemetacategorydescriptions_aggregate: pokemon_v2_movemetacategorydescription_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_movemetacategory" +""" +enum pokemon_v2_movemetacategory_select_column { + """column name""" + id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_movemetacategory_stddev_fields { + id: Float +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_movemetacategory_stddev_pop_fields { + id: Float +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_movemetacategory_stddev_samp_fields { + id: Float +} + +""" +Streaming cursor of the table "pokemon_v2_movemetacategory" +""" +input pokemon_v2_movemetacategory_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_movemetacategory_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_movemetacategory_stream_cursor_value_input { + id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_movemetacategory_sum_fields { + id: Int +} + +"""aggregate var_pop on columns""" +type pokemon_v2_movemetacategory_var_pop_fields { + id: Float +} + +"""aggregate var_samp on columns""" +type pokemon_v2_movemetacategory_var_samp_fields { + id: Float +} + +"""aggregate variance on columns""" +type pokemon_v2_movemetacategory_variance_fields { + id: Float +} + +""" +columns and relationships of "pokemon_v2_movemetacategorydescription" +""" +type pokemon_v2_movemetacategorydescription { + description: String! + id: Int! + language_id: Int + move_meta_category_id: Int + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_movemetacategory: pokemon_v2_movemetacategory +} + +""" +aggregated selection of "pokemon_v2_movemetacategorydescription" +""" +type pokemon_v2_movemetacategorydescription_aggregate { + aggregate: pokemon_v2_movemetacategorydescription_aggregate_fields + nodes: [pokemon_v2_movemetacategorydescription!]! +} + +input pokemon_v2_movemetacategorydescription_aggregate_bool_exp { + count: pokemon_v2_movemetacategorydescription_aggregate_bool_exp_count +} + +input pokemon_v2_movemetacategorydescription_aggregate_bool_exp_count { + arguments: [pokemon_v2_movemetacategorydescription_select_column!] + distinct: Boolean + filter: pokemon_v2_movemetacategorydescription_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_movemetacategorydescription" +""" +type pokemon_v2_movemetacategorydescription_aggregate_fields { + avg: pokemon_v2_movemetacategorydescription_avg_fields + count(columns: [pokemon_v2_movemetacategorydescription_select_column!], distinct: Boolean): Int! + max: pokemon_v2_movemetacategorydescription_max_fields + min: pokemon_v2_movemetacategorydescription_min_fields + stddev: pokemon_v2_movemetacategorydescription_stddev_fields + stddev_pop: pokemon_v2_movemetacategorydescription_stddev_pop_fields + stddev_samp: pokemon_v2_movemetacategorydescription_stddev_samp_fields + sum: pokemon_v2_movemetacategorydescription_sum_fields + var_pop: pokemon_v2_movemetacategorydescription_var_pop_fields + var_samp: pokemon_v2_movemetacategorydescription_var_samp_fields + variance: pokemon_v2_movemetacategorydescription_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_movemetacategorydescription" +""" +input pokemon_v2_movemetacategorydescription_aggregate_order_by { + avg: pokemon_v2_movemetacategorydescription_avg_order_by + count: order_by + max: pokemon_v2_movemetacategorydescription_max_order_by + min: pokemon_v2_movemetacategorydescription_min_order_by + stddev: pokemon_v2_movemetacategorydescription_stddev_order_by + stddev_pop: pokemon_v2_movemetacategorydescription_stddev_pop_order_by + stddev_samp: pokemon_v2_movemetacategorydescription_stddev_samp_order_by + sum: pokemon_v2_movemetacategorydescription_sum_order_by + var_pop: pokemon_v2_movemetacategorydescription_var_pop_order_by + var_samp: pokemon_v2_movemetacategorydescription_var_samp_order_by + variance: pokemon_v2_movemetacategorydescription_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_movemetacategorydescription_avg_fields { + id: Float + language_id: Float + move_meta_category_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_movemetacategorydescription" +""" +input pokemon_v2_movemetacategorydescription_avg_order_by { + id: order_by + language_id: order_by + move_meta_category_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_movemetacategorydescription". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_movemetacategorydescription_bool_exp { + _and: [pokemon_v2_movemetacategorydescription_bool_exp!] + _not: pokemon_v2_movemetacategorydescription_bool_exp + _or: [pokemon_v2_movemetacategorydescription_bool_exp!] + description: String_comparison_exp + id: Int_comparison_exp + language_id: Int_comparison_exp + move_meta_category_id: Int_comparison_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_movemetacategory: pokemon_v2_movemetacategory_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_movemetacategorydescription_max_fields { + description: String + id: Int + language_id: Int + move_meta_category_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_movemetacategorydescription" +""" +input pokemon_v2_movemetacategorydescription_max_order_by { + description: order_by + id: order_by + language_id: order_by + move_meta_category_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_movemetacategorydescription_min_fields { + description: String + id: Int + language_id: Int + move_meta_category_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_movemetacategorydescription" +""" +input pokemon_v2_movemetacategorydescription_min_order_by { + description: order_by + id: order_by + language_id: order_by + move_meta_category_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_movemetacategorydescription". +""" +input pokemon_v2_movemetacategorydescription_order_by { + description: order_by + id: order_by + language_id: order_by + move_meta_category_id: order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_movemetacategory: pokemon_v2_movemetacategory_order_by +} + +""" +select columns of table "pokemon_v2_movemetacategorydescription" +""" +enum pokemon_v2_movemetacategorydescription_select_column { + """column name""" + description + + """column name""" + id + + """column name""" + language_id + + """column name""" + move_meta_category_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_movemetacategorydescription_stddev_fields { + id: Float + language_id: Float + move_meta_category_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_movemetacategorydescription" +""" +input pokemon_v2_movemetacategorydescription_stddev_order_by { + id: order_by + language_id: order_by + move_meta_category_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_movemetacategorydescription_stddev_pop_fields { + id: Float + language_id: Float + move_meta_category_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_movemetacategorydescription" +""" +input pokemon_v2_movemetacategorydescription_stddev_pop_order_by { + id: order_by + language_id: order_by + move_meta_category_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_movemetacategorydescription_stddev_samp_fields { + id: Float + language_id: Float + move_meta_category_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_movemetacategorydescription" +""" +input pokemon_v2_movemetacategorydescription_stddev_samp_order_by { + id: order_by + language_id: order_by + move_meta_category_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_movemetacategorydescription" +""" +input pokemon_v2_movemetacategorydescription_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_movemetacategorydescription_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_movemetacategorydescription_stream_cursor_value_input { + description: String + id: Int + language_id: Int + move_meta_category_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_movemetacategorydescription_sum_fields { + id: Int + language_id: Int + move_meta_category_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_movemetacategorydescription" +""" +input pokemon_v2_movemetacategorydescription_sum_order_by { + id: order_by + language_id: order_by + move_meta_category_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_movemetacategorydescription_var_pop_fields { + id: Float + language_id: Float + move_meta_category_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_movemetacategorydescription" +""" +input pokemon_v2_movemetacategorydescription_var_pop_order_by { + id: order_by + language_id: order_by + move_meta_category_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_movemetacategorydescription_var_samp_fields { + id: Float + language_id: Float + move_meta_category_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_movemetacategorydescription" +""" +input pokemon_v2_movemetacategorydescription_var_samp_order_by { + id: order_by + language_id: order_by + move_meta_category_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_movemetacategorydescription_variance_fields { + id: Float + language_id: Float + move_meta_category_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_movemetacategorydescription" +""" +input pokemon_v2_movemetacategorydescription_variance_order_by { + id: order_by + language_id: order_by + move_meta_category_id: order_by +} + +""" +columns and relationships of "pokemon_v2_movemetastatchange" +""" +type pokemon_v2_movemetastatchange { + change: Int! + id: Int! + move_id: Int + + """An object relationship""" + pokemon_v2_move: pokemon_v2_move + + """An object relationship""" + pokemon_v2_stat: pokemon_v2_stat + stat_id: Int +} + +""" +aggregated selection of "pokemon_v2_movemetastatchange" +""" +type pokemon_v2_movemetastatchange_aggregate { + aggregate: pokemon_v2_movemetastatchange_aggregate_fields + nodes: [pokemon_v2_movemetastatchange!]! +} + +input pokemon_v2_movemetastatchange_aggregate_bool_exp { + count: pokemon_v2_movemetastatchange_aggregate_bool_exp_count +} + +input pokemon_v2_movemetastatchange_aggregate_bool_exp_count { + arguments: [pokemon_v2_movemetastatchange_select_column!] + distinct: Boolean + filter: pokemon_v2_movemetastatchange_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_movemetastatchange" +""" +type pokemon_v2_movemetastatchange_aggregate_fields { + avg: pokemon_v2_movemetastatchange_avg_fields + count(columns: [pokemon_v2_movemetastatchange_select_column!], distinct: Boolean): Int! + max: pokemon_v2_movemetastatchange_max_fields + min: pokemon_v2_movemetastatchange_min_fields + stddev: pokemon_v2_movemetastatchange_stddev_fields + stddev_pop: pokemon_v2_movemetastatchange_stddev_pop_fields + stddev_samp: pokemon_v2_movemetastatchange_stddev_samp_fields + sum: pokemon_v2_movemetastatchange_sum_fields + var_pop: pokemon_v2_movemetastatchange_var_pop_fields + var_samp: pokemon_v2_movemetastatchange_var_samp_fields + variance: pokemon_v2_movemetastatchange_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_movemetastatchange" +""" +input pokemon_v2_movemetastatchange_aggregate_order_by { + avg: pokemon_v2_movemetastatchange_avg_order_by + count: order_by + max: pokemon_v2_movemetastatchange_max_order_by + min: pokemon_v2_movemetastatchange_min_order_by + stddev: pokemon_v2_movemetastatchange_stddev_order_by + stddev_pop: pokemon_v2_movemetastatchange_stddev_pop_order_by + stddev_samp: pokemon_v2_movemetastatchange_stddev_samp_order_by + sum: pokemon_v2_movemetastatchange_sum_order_by + var_pop: pokemon_v2_movemetastatchange_var_pop_order_by + var_samp: pokemon_v2_movemetastatchange_var_samp_order_by + variance: pokemon_v2_movemetastatchange_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_movemetastatchange_avg_fields { + change: Float + id: Float + move_id: Float + stat_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_movemetastatchange" +""" +input pokemon_v2_movemetastatchange_avg_order_by { + change: order_by + id: order_by + move_id: order_by + stat_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_movemetastatchange". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_movemetastatchange_bool_exp { + _and: [pokemon_v2_movemetastatchange_bool_exp!] + _not: pokemon_v2_movemetastatchange_bool_exp + _or: [pokemon_v2_movemetastatchange_bool_exp!] + change: Int_comparison_exp + id: Int_comparison_exp + move_id: Int_comparison_exp + pokemon_v2_move: pokemon_v2_move_bool_exp + pokemon_v2_stat: pokemon_v2_stat_bool_exp + stat_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_movemetastatchange_max_fields { + change: Int + id: Int + move_id: Int + stat_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_movemetastatchange" +""" +input pokemon_v2_movemetastatchange_max_order_by { + change: order_by + id: order_by + move_id: order_by + stat_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_movemetastatchange_min_fields { + change: Int + id: Int + move_id: Int + stat_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_movemetastatchange" +""" +input pokemon_v2_movemetastatchange_min_order_by { + change: order_by + id: order_by + move_id: order_by + stat_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_movemetastatchange". +""" +input pokemon_v2_movemetastatchange_order_by { + change: order_by + id: order_by + move_id: order_by + pokemon_v2_move: pokemon_v2_move_order_by + pokemon_v2_stat: pokemon_v2_stat_order_by + stat_id: order_by +} + +""" +select columns of table "pokemon_v2_movemetastatchange" +""" +enum pokemon_v2_movemetastatchange_select_column { + """column name""" + change + + """column name""" + id + + """column name""" + move_id + + """column name""" + stat_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_movemetastatchange_stddev_fields { + change: Float + id: Float + move_id: Float + stat_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_movemetastatchange" +""" +input pokemon_v2_movemetastatchange_stddev_order_by { + change: order_by + id: order_by + move_id: order_by + stat_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_movemetastatchange_stddev_pop_fields { + change: Float + id: Float + move_id: Float + stat_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_movemetastatchange" +""" +input pokemon_v2_movemetastatchange_stddev_pop_order_by { + change: order_by + id: order_by + move_id: order_by + stat_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_movemetastatchange_stddev_samp_fields { + change: Float + id: Float + move_id: Float + stat_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_movemetastatchange" +""" +input pokemon_v2_movemetastatchange_stddev_samp_order_by { + change: order_by + id: order_by + move_id: order_by + stat_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_movemetastatchange" +""" +input pokemon_v2_movemetastatchange_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_movemetastatchange_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_movemetastatchange_stream_cursor_value_input { + change: Int + id: Int + move_id: Int + stat_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_movemetastatchange_sum_fields { + change: Int + id: Int + move_id: Int + stat_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_movemetastatchange" +""" +input pokemon_v2_movemetastatchange_sum_order_by { + change: order_by + id: order_by + move_id: order_by + stat_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_movemetastatchange_var_pop_fields { + change: Float + id: Float + move_id: Float + stat_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_movemetastatchange" +""" +input pokemon_v2_movemetastatchange_var_pop_order_by { + change: order_by + id: order_by + move_id: order_by + stat_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_movemetastatchange_var_samp_fields { + change: Float + id: Float + move_id: Float + stat_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_movemetastatchange" +""" +input pokemon_v2_movemetastatchange_var_samp_order_by { + change: order_by + id: order_by + move_id: order_by + stat_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_movemetastatchange_variance_fields { + change: Float + id: Float + move_id: Float + stat_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_movemetastatchange" +""" +input pokemon_v2_movemetastatchange_variance_order_by { + change: order_by + id: order_by + move_id: order_by + stat_id: order_by +} + +""" +columns and relationships of "pokemon_v2_movename" +""" +type pokemon_v2_movename { + id: Int! + language_id: Int + move_id: Int + name: String! + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_move: pokemon_v2_move +} + +""" +aggregated selection of "pokemon_v2_movename" +""" +type pokemon_v2_movename_aggregate { + aggregate: pokemon_v2_movename_aggregate_fields + nodes: [pokemon_v2_movename!]! +} + +input pokemon_v2_movename_aggregate_bool_exp { + count: pokemon_v2_movename_aggregate_bool_exp_count +} + +input pokemon_v2_movename_aggregate_bool_exp_count { + arguments: [pokemon_v2_movename_select_column!] + distinct: Boolean + filter: pokemon_v2_movename_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_movename" +""" +type pokemon_v2_movename_aggregate_fields { + avg: pokemon_v2_movename_avg_fields + count(columns: [pokemon_v2_movename_select_column!], distinct: Boolean): Int! + max: pokemon_v2_movename_max_fields + min: pokemon_v2_movename_min_fields + stddev: pokemon_v2_movename_stddev_fields + stddev_pop: pokemon_v2_movename_stddev_pop_fields + stddev_samp: pokemon_v2_movename_stddev_samp_fields + sum: pokemon_v2_movename_sum_fields + var_pop: pokemon_v2_movename_var_pop_fields + var_samp: pokemon_v2_movename_var_samp_fields + variance: pokemon_v2_movename_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_movename" +""" +input pokemon_v2_movename_aggregate_order_by { + avg: pokemon_v2_movename_avg_order_by + count: order_by + max: pokemon_v2_movename_max_order_by + min: pokemon_v2_movename_min_order_by + stddev: pokemon_v2_movename_stddev_order_by + stddev_pop: pokemon_v2_movename_stddev_pop_order_by + stddev_samp: pokemon_v2_movename_stddev_samp_order_by + sum: pokemon_v2_movename_sum_order_by + var_pop: pokemon_v2_movename_var_pop_order_by + var_samp: pokemon_v2_movename_var_samp_order_by + variance: pokemon_v2_movename_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_movename_avg_fields { + id: Float + language_id: Float + move_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_movename" +""" +input pokemon_v2_movename_avg_order_by { + id: order_by + language_id: order_by + move_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_movename". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_movename_bool_exp { + _and: [pokemon_v2_movename_bool_exp!] + _not: pokemon_v2_movename_bool_exp + _or: [pokemon_v2_movename_bool_exp!] + id: Int_comparison_exp + language_id: Int_comparison_exp + move_id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_move: pokemon_v2_move_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_movename_max_fields { + id: Int + language_id: Int + move_id: Int + name: String +} + +""" +order by max() on columns of table "pokemon_v2_movename" +""" +input pokemon_v2_movename_max_order_by { + id: order_by + language_id: order_by + move_id: order_by + name: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_movename_min_fields { + id: Int + language_id: Int + move_id: Int + name: String +} + +""" +order by min() on columns of table "pokemon_v2_movename" +""" +input pokemon_v2_movename_min_order_by { + id: order_by + language_id: order_by + move_id: order_by + name: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_movename".""" +input pokemon_v2_movename_order_by { + id: order_by + language_id: order_by + move_id: order_by + name: order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_move: pokemon_v2_move_order_by +} + +""" +select columns of table "pokemon_v2_movename" +""" +enum pokemon_v2_movename_select_column { + """column name""" + id + + """column name""" + language_id + + """column name""" + move_id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_movename_stddev_fields { + id: Float + language_id: Float + move_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_movename" +""" +input pokemon_v2_movename_stddev_order_by { + id: order_by + language_id: order_by + move_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_movename_stddev_pop_fields { + id: Float + language_id: Float + move_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_movename" +""" +input pokemon_v2_movename_stddev_pop_order_by { + id: order_by + language_id: order_by + move_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_movename_stddev_samp_fields { + id: Float + language_id: Float + move_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_movename" +""" +input pokemon_v2_movename_stddev_samp_order_by { + id: order_by + language_id: order_by + move_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_movename" +""" +input pokemon_v2_movename_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_movename_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_movename_stream_cursor_value_input { + id: Int + language_id: Int + move_id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_movename_sum_fields { + id: Int + language_id: Int + move_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_movename" +""" +input pokemon_v2_movename_sum_order_by { + id: order_by + language_id: order_by + move_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_movename_var_pop_fields { + id: Float + language_id: Float + move_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_movename" +""" +input pokemon_v2_movename_var_pop_order_by { + id: order_by + language_id: order_by + move_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_movename_var_samp_fields { + id: Float + language_id: Float + move_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_movename" +""" +input pokemon_v2_movename_var_samp_order_by { + id: order_by + language_id: order_by + move_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_movename_variance_fields { + id: Float + language_id: Float + move_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_movename" +""" +input pokemon_v2_movename_variance_order_by { + id: order_by + language_id: order_by + move_id: order_by +} + +""" +columns and relationships of "pokemon_v2_movetarget" +""" +type pokemon_v2_movetarget { + id: Int! + name: String! + + """An array relationship""" + pokemon_v2_moves( + """distinct select on columns""" + distinct_on: [pokemon_v2_move_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_move_order_by!] + + """filter the rows returned""" + where: pokemon_v2_move_bool_exp + ): [pokemon_v2_move!]! + + """An aggregate relationship""" + pokemon_v2_moves_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_move_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_move_order_by!] + + """filter the rows returned""" + where: pokemon_v2_move_bool_exp + ): pokemon_v2_move_aggregate! + + """An array relationship""" + pokemon_v2_movetargetdescriptions( + """distinct select on columns""" + distinct_on: [pokemon_v2_movetargetdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movetargetdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movetargetdescription_bool_exp + ): [pokemon_v2_movetargetdescription!]! + + """An aggregate relationship""" + pokemon_v2_movetargetdescriptions_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movetargetdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movetargetdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movetargetdescription_bool_exp + ): pokemon_v2_movetargetdescription_aggregate! + + """An array relationship""" + pokemon_v2_movetargetnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_movetargetname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movetargetname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movetargetname_bool_exp + ): [pokemon_v2_movetargetname!]! + + """An aggregate relationship""" + pokemon_v2_movetargetnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movetargetname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movetargetname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movetargetname_bool_exp + ): pokemon_v2_movetargetname_aggregate! +} + +""" +aggregated selection of "pokemon_v2_movetarget" +""" +type pokemon_v2_movetarget_aggregate { + aggregate: pokemon_v2_movetarget_aggregate_fields + nodes: [pokemon_v2_movetarget!]! +} + +""" +aggregate fields of "pokemon_v2_movetarget" +""" +type pokemon_v2_movetarget_aggregate_fields { + avg: pokemon_v2_movetarget_avg_fields + count(columns: [pokemon_v2_movetarget_select_column!], distinct: Boolean): Int! + max: pokemon_v2_movetarget_max_fields + min: pokemon_v2_movetarget_min_fields + stddev: pokemon_v2_movetarget_stddev_fields + stddev_pop: pokemon_v2_movetarget_stddev_pop_fields + stddev_samp: pokemon_v2_movetarget_stddev_samp_fields + sum: pokemon_v2_movetarget_sum_fields + var_pop: pokemon_v2_movetarget_var_pop_fields + var_samp: pokemon_v2_movetarget_var_samp_fields + variance: pokemon_v2_movetarget_variance_fields +} + +"""aggregate avg on columns""" +type pokemon_v2_movetarget_avg_fields { + id: Float +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_movetarget". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_movetarget_bool_exp { + _and: [pokemon_v2_movetarget_bool_exp!] + _not: pokemon_v2_movetarget_bool_exp + _or: [pokemon_v2_movetarget_bool_exp!] + id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_moves: pokemon_v2_move_bool_exp + pokemon_v2_moves_aggregate: pokemon_v2_move_aggregate_bool_exp + pokemon_v2_movetargetdescriptions: pokemon_v2_movetargetdescription_bool_exp + pokemon_v2_movetargetdescriptions_aggregate: pokemon_v2_movetargetdescription_aggregate_bool_exp + pokemon_v2_movetargetnames: pokemon_v2_movetargetname_bool_exp + pokemon_v2_movetargetnames_aggregate: pokemon_v2_movetargetname_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_movetarget_max_fields { + id: Int + name: String +} + +"""aggregate min on columns""" +type pokemon_v2_movetarget_min_fields { + id: Int + name: String +} + +"""Ordering options when selecting data from "pokemon_v2_movetarget".""" +input pokemon_v2_movetarget_order_by { + id: order_by + name: order_by + pokemon_v2_moves_aggregate: pokemon_v2_move_aggregate_order_by + pokemon_v2_movetargetdescriptions_aggregate: pokemon_v2_movetargetdescription_aggregate_order_by + pokemon_v2_movetargetnames_aggregate: pokemon_v2_movetargetname_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_movetarget" +""" +enum pokemon_v2_movetarget_select_column { + """column name""" + id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_movetarget_stddev_fields { + id: Float +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_movetarget_stddev_pop_fields { + id: Float +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_movetarget_stddev_samp_fields { + id: Float +} + +""" +Streaming cursor of the table "pokemon_v2_movetarget" +""" +input pokemon_v2_movetarget_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_movetarget_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_movetarget_stream_cursor_value_input { + id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_movetarget_sum_fields { + id: Int +} + +"""aggregate var_pop on columns""" +type pokemon_v2_movetarget_var_pop_fields { + id: Float +} + +"""aggregate var_samp on columns""" +type pokemon_v2_movetarget_var_samp_fields { + id: Float +} + +"""aggregate variance on columns""" +type pokemon_v2_movetarget_variance_fields { + id: Float +} + +""" +columns and relationships of "pokemon_v2_movetargetdescription" +""" +type pokemon_v2_movetargetdescription { + description: String! + id: Int! + language_id: Int + move_target_id: Int + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_movetarget: pokemon_v2_movetarget +} + +""" +aggregated selection of "pokemon_v2_movetargetdescription" +""" +type pokemon_v2_movetargetdescription_aggregate { + aggregate: pokemon_v2_movetargetdescription_aggregate_fields + nodes: [pokemon_v2_movetargetdescription!]! +} + +input pokemon_v2_movetargetdescription_aggregate_bool_exp { + count: pokemon_v2_movetargetdescription_aggregate_bool_exp_count +} + +input pokemon_v2_movetargetdescription_aggregate_bool_exp_count { + arguments: [pokemon_v2_movetargetdescription_select_column!] + distinct: Boolean + filter: pokemon_v2_movetargetdescription_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_movetargetdescription" +""" +type pokemon_v2_movetargetdescription_aggregate_fields { + avg: pokemon_v2_movetargetdescription_avg_fields + count(columns: [pokemon_v2_movetargetdescription_select_column!], distinct: Boolean): Int! + max: pokemon_v2_movetargetdescription_max_fields + min: pokemon_v2_movetargetdescription_min_fields + stddev: pokemon_v2_movetargetdescription_stddev_fields + stddev_pop: pokemon_v2_movetargetdescription_stddev_pop_fields + stddev_samp: pokemon_v2_movetargetdescription_stddev_samp_fields + sum: pokemon_v2_movetargetdescription_sum_fields + var_pop: pokemon_v2_movetargetdescription_var_pop_fields + var_samp: pokemon_v2_movetargetdescription_var_samp_fields + variance: pokemon_v2_movetargetdescription_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_movetargetdescription" +""" +input pokemon_v2_movetargetdescription_aggregate_order_by { + avg: pokemon_v2_movetargetdescription_avg_order_by + count: order_by + max: pokemon_v2_movetargetdescription_max_order_by + min: pokemon_v2_movetargetdescription_min_order_by + stddev: pokemon_v2_movetargetdescription_stddev_order_by + stddev_pop: pokemon_v2_movetargetdescription_stddev_pop_order_by + stddev_samp: pokemon_v2_movetargetdescription_stddev_samp_order_by + sum: pokemon_v2_movetargetdescription_sum_order_by + var_pop: pokemon_v2_movetargetdescription_var_pop_order_by + var_samp: pokemon_v2_movetargetdescription_var_samp_order_by + variance: pokemon_v2_movetargetdescription_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_movetargetdescription_avg_fields { + id: Float + language_id: Float + move_target_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_movetargetdescription" +""" +input pokemon_v2_movetargetdescription_avg_order_by { + id: order_by + language_id: order_by + move_target_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_movetargetdescription". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_movetargetdescription_bool_exp { + _and: [pokemon_v2_movetargetdescription_bool_exp!] + _not: pokemon_v2_movetargetdescription_bool_exp + _or: [pokemon_v2_movetargetdescription_bool_exp!] + description: String_comparison_exp + id: Int_comparison_exp + language_id: Int_comparison_exp + move_target_id: Int_comparison_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_movetarget: pokemon_v2_movetarget_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_movetargetdescription_max_fields { + description: String + id: Int + language_id: Int + move_target_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_movetargetdescription" +""" +input pokemon_v2_movetargetdescription_max_order_by { + description: order_by + id: order_by + language_id: order_by + move_target_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_movetargetdescription_min_fields { + description: String + id: Int + language_id: Int + move_target_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_movetargetdescription" +""" +input pokemon_v2_movetargetdescription_min_order_by { + description: order_by + id: order_by + language_id: order_by + move_target_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_movetargetdescription". +""" +input pokemon_v2_movetargetdescription_order_by { + description: order_by + id: order_by + language_id: order_by + move_target_id: order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_movetarget: pokemon_v2_movetarget_order_by +} + +""" +select columns of table "pokemon_v2_movetargetdescription" +""" +enum pokemon_v2_movetargetdescription_select_column { + """column name""" + description + + """column name""" + id + + """column name""" + language_id + + """column name""" + move_target_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_movetargetdescription_stddev_fields { + id: Float + language_id: Float + move_target_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_movetargetdescription" +""" +input pokemon_v2_movetargetdescription_stddev_order_by { + id: order_by + language_id: order_by + move_target_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_movetargetdescription_stddev_pop_fields { + id: Float + language_id: Float + move_target_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_movetargetdescription" +""" +input pokemon_v2_movetargetdescription_stddev_pop_order_by { + id: order_by + language_id: order_by + move_target_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_movetargetdescription_stddev_samp_fields { + id: Float + language_id: Float + move_target_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_movetargetdescription" +""" +input pokemon_v2_movetargetdescription_stddev_samp_order_by { + id: order_by + language_id: order_by + move_target_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_movetargetdescription" +""" +input pokemon_v2_movetargetdescription_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_movetargetdescription_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_movetargetdescription_stream_cursor_value_input { + description: String + id: Int + language_id: Int + move_target_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_movetargetdescription_sum_fields { + id: Int + language_id: Int + move_target_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_movetargetdescription" +""" +input pokemon_v2_movetargetdescription_sum_order_by { + id: order_by + language_id: order_by + move_target_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_movetargetdescription_var_pop_fields { + id: Float + language_id: Float + move_target_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_movetargetdescription" +""" +input pokemon_v2_movetargetdescription_var_pop_order_by { + id: order_by + language_id: order_by + move_target_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_movetargetdescription_var_samp_fields { + id: Float + language_id: Float + move_target_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_movetargetdescription" +""" +input pokemon_v2_movetargetdescription_var_samp_order_by { + id: order_by + language_id: order_by + move_target_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_movetargetdescription_variance_fields { + id: Float + language_id: Float + move_target_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_movetargetdescription" +""" +input pokemon_v2_movetargetdescription_variance_order_by { + id: order_by + language_id: order_by + move_target_id: order_by +} + +""" +columns and relationships of "pokemon_v2_movetargetname" +""" +type pokemon_v2_movetargetname { + id: Int! + language_id: Int + move_target_id: Int + name: String! + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_movetarget: pokemon_v2_movetarget +} + +""" +aggregated selection of "pokemon_v2_movetargetname" +""" +type pokemon_v2_movetargetname_aggregate { + aggregate: pokemon_v2_movetargetname_aggregate_fields + nodes: [pokemon_v2_movetargetname!]! +} + +input pokemon_v2_movetargetname_aggregate_bool_exp { + count: pokemon_v2_movetargetname_aggregate_bool_exp_count +} + +input pokemon_v2_movetargetname_aggregate_bool_exp_count { + arguments: [pokemon_v2_movetargetname_select_column!] + distinct: Boolean + filter: pokemon_v2_movetargetname_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_movetargetname" +""" +type pokemon_v2_movetargetname_aggregate_fields { + avg: pokemon_v2_movetargetname_avg_fields + count(columns: [pokemon_v2_movetargetname_select_column!], distinct: Boolean): Int! + max: pokemon_v2_movetargetname_max_fields + min: pokemon_v2_movetargetname_min_fields + stddev: pokemon_v2_movetargetname_stddev_fields + stddev_pop: pokemon_v2_movetargetname_stddev_pop_fields + stddev_samp: pokemon_v2_movetargetname_stddev_samp_fields + sum: pokemon_v2_movetargetname_sum_fields + var_pop: pokemon_v2_movetargetname_var_pop_fields + var_samp: pokemon_v2_movetargetname_var_samp_fields + variance: pokemon_v2_movetargetname_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_movetargetname" +""" +input pokemon_v2_movetargetname_aggregate_order_by { + avg: pokemon_v2_movetargetname_avg_order_by + count: order_by + max: pokemon_v2_movetargetname_max_order_by + min: pokemon_v2_movetargetname_min_order_by + stddev: pokemon_v2_movetargetname_stddev_order_by + stddev_pop: pokemon_v2_movetargetname_stddev_pop_order_by + stddev_samp: pokemon_v2_movetargetname_stddev_samp_order_by + sum: pokemon_v2_movetargetname_sum_order_by + var_pop: pokemon_v2_movetargetname_var_pop_order_by + var_samp: pokemon_v2_movetargetname_var_samp_order_by + variance: pokemon_v2_movetargetname_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_movetargetname_avg_fields { + id: Float + language_id: Float + move_target_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_movetargetname" +""" +input pokemon_v2_movetargetname_avg_order_by { + id: order_by + language_id: order_by + move_target_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_movetargetname". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_movetargetname_bool_exp { + _and: [pokemon_v2_movetargetname_bool_exp!] + _not: pokemon_v2_movetargetname_bool_exp + _or: [pokemon_v2_movetargetname_bool_exp!] + id: Int_comparison_exp + language_id: Int_comparison_exp + move_target_id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_movetarget: pokemon_v2_movetarget_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_movetargetname_max_fields { + id: Int + language_id: Int + move_target_id: Int + name: String +} + +""" +order by max() on columns of table "pokemon_v2_movetargetname" +""" +input pokemon_v2_movetargetname_max_order_by { + id: order_by + language_id: order_by + move_target_id: order_by + name: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_movetargetname_min_fields { + id: Int + language_id: Int + move_target_id: Int + name: String +} + +""" +order by min() on columns of table "pokemon_v2_movetargetname" +""" +input pokemon_v2_movetargetname_min_order_by { + id: order_by + language_id: order_by + move_target_id: order_by + name: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_movetargetname".""" +input pokemon_v2_movetargetname_order_by { + id: order_by + language_id: order_by + move_target_id: order_by + name: order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_movetarget: pokemon_v2_movetarget_order_by +} + +""" +select columns of table "pokemon_v2_movetargetname" +""" +enum pokemon_v2_movetargetname_select_column { + """column name""" + id + + """column name""" + language_id + + """column name""" + move_target_id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_movetargetname_stddev_fields { + id: Float + language_id: Float + move_target_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_movetargetname" +""" +input pokemon_v2_movetargetname_stddev_order_by { + id: order_by + language_id: order_by + move_target_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_movetargetname_stddev_pop_fields { + id: Float + language_id: Float + move_target_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_movetargetname" +""" +input pokemon_v2_movetargetname_stddev_pop_order_by { + id: order_by + language_id: order_by + move_target_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_movetargetname_stddev_samp_fields { + id: Float + language_id: Float + move_target_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_movetargetname" +""" +input pokemon_v2_movetargetname_stddev_samp_order_by { + id: order_by + language_id: order_by + move_target_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_movetargetname" +""" +input pokemon_v2_movetargetname_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_movetargetname_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_movetargetname_stream_cursor_value_input { + id: Int + language_id: Int + move_target_id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_movetargetname_sum_fields { + id: Int + language_id: Int + move_target_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_movetargetname" +""" +input pokemon_v2_movetargetname_sum_order_by { + id: order_by + language_id: order_by + move_target_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_movetargetname_var_pop_fields { + id: Float + language_id: Float + move_target_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_movetargetname" +""" +input pokemon_v2_movetargetname_var_pop_order_by { + id: order_by + language_id: order_by + move_target_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_movetargetname_var_samp_fields { + id: Float + language_id: Float + move_target_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_movetargetname" +""" +input pokemon_v2_movetargetname_var_samp_order_by { + id: order_by + language_id: order_by + move_target_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_movetargetname_variance_fields { + id: Float + language_id: Float + move_target_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_movetargetname" +""" +input pokemon_v2_movetargetname_variance_order_by { + id: order_by + language_id: order_by + move_target_id: order_by +} + +""" +columns and relationships of "pokemon_v2_nature" +""" +type pokemon_v2_nature { + decreased_stat_id: Int + game_index: Int! + hates_flavor_id: Int + id: Int! + increased_stat_id: Int + likes_flavor_id: Int + name: String! + + """An object relationship""" + pokemonV2BerryflavorByLikesFlavorId: pokemon_v2_berryflavor + + """An object relationship""" + pokemonV2StatByIncreasedStatId: pokemon_v2_stat + + """An object relationship""" + pokemon_v2_berryflavor: pokemon_v2_berryflavor + + """An array relationship""" + pokemon_v2_naturebattlestylepreferences( + """distinct select on columns""" + distinct_on: [pokemon_v2_naturebattlestylepreference_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_naturebattlestylepreference_order_by!] + + """filter the rows returned""" + where: pokemon_v2_naturebattlestylepreference_bool_exp + ): [pokemon_v2_naturebattlestylepreference!]! + + """An aggregate relationship""" + pokemon_v2_naturebattlestylepreferences_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_naturebattlestylepreference_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_naturebattlestylepreference_order_by!] + + """filter the rows returned""" + where: pokemon_v2_naturebattlestylepreference_bool_exp + ): pokemon_v2_naturebattlestylepreference_aggregate! + + """An array relationship""" + pokemon_v2_naturenames( + """distinct select on columns""" + distinct_on: [pokemon_v2_naturename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_naturename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_naturename_bool_exp + ): [pokemon_v2_naturename!]! + + """An aggregate relationship""" + pokemon_v2_naturenames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_naturename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_naturename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_naturename_bool_exp + ): pokemon_v2_naturename_aggregate! + + """An array relationship""" + pokemon_v2_naturepokeathlonstats( + """distinct select on columns""" + distinct_on: [pokemon_v2_naturepokeathlonstat_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_naturepokeathlonstat_order_by!] + + """filter the rows returned""" + where: pokemon_v2_naturepokeathlonstat_bool_exp + ): [pokemon_v2_naturepokeathlonstat!]! + + """An aggregate relationship""" + pokemon_v2_naturepokeathlonstats_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_naturepokeathlonstat_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_naturepokeathlonstat_order_by!] + + """filter the rows returned""" + where: pokemon_v2_naturepokeathlonstat_bool_exp + ): pokemon_v2_naturepokeathlonstat_aggregate! + + """An object relationship""" + pokemon_v2_stat: pokemon_v2_stat +} + +""" +aggregated selection of "pokemon_v2_nature" +""" +type pokemon_v2_nature_aggregate { + aggregate: pokemon_v2_nature_aggregate_fields + nodes: [pokemon_v2_nature!]! +} + +input pokemon_v2_nature_aggregate_bool_exp { + count: pokemon_v2_nature_aggregate_bool_exp_count +} + +input pokemon_v2_nature_aggregate_bool_exp_count { + arguments: [pokemon_v2_nature_select_column!] + distinct: Boolean + filter: pokemon_v2_nature_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_nature" +""" +type pokemon_v2_nature_aggregate_fields { + avg: pokemon_v2_nature_avg_fields + count(columns: [pokemon_v2_nature_select_column!], distinct: Boolean): Int! + max: pokemon_v2_nature_max_fields + min: pokemon_v2_nature_min_fields + stddev: pokemon_v2_nature_stddev_fields + stddev_pop: pokemon_v2_nature_stddev_pop_fields + stddev_samp: pokemon_v2_nature_stddev_samp_fields + sum: pokemon_v2_nature_sum_fields + var_pop: pokemon_v2_nature_var_pop_fields + var_samp: pokemon_v2_nature_var_samp_fields + variance: pokemon_v2_nature_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_nature" +""" +input pokemon_v2_nature_aggregate_order_by { + avg: pokemon_v2_nature_avg_order_by + count: order_by + max: pokemon_v2_nature_max_order_by + min: pokemon_v2_nature_min_order_by + stddev: pokemon_v2_nature_stddev_order_by + stddev_pop: pokemon_v2_nature_stddev_pop_order_by + stddev_samp: pokemon_v2_nature_stddev_samp_order_by + sum: pokemon_v2_nature_sum_order_by + var_pop: pokemon_v2_nature_var_pop_order_by + var_samp: pokemon_v2_nature_var_samp_order_by + variance: pokemon_v2_nature_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_nature_avg_fields { + decreased_stat_id: Float + game_index: Float + hates_flavor_id: Float + id: Float + increased_stat_id: Float + likes_flavor_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_nature" +""" +input pokemon_v2_nature_avg_order_by { + decreased_stat_id: order_by + game_index: order_by + hates_flavor_id: order_by + id: order_by + increased_stat_id: order_by + likes_flavor_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_nature". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_nature_bool_exp { + _and: [pokemon_v2_nature_bool_exp!] + _not: pokemon_v2_nature_bool_exp + _or: [pokemon_v2_nature_bool_exp!] + decreased_stat_id: Int_comparison_exp + game_index: Int_comparison_exp + hates_flavor_id: Int_comparison_exp + id: Int_comparison_exp + increased_stat_id: Int_comparison_exp + likes_flavor_id: Int_comparison_exp + name: String_comparison_exp + pokemonV2BerryflavorByLikesFlavorId: pokemon_v2_berryflavor_bool_exp + pokemonV2StatByIncreasedStatId: pokemon_v2_stat_bool_exp + pokemon_v2_berryflavor: pokemon_v2_berryflavor_bool_exp + pokemon_v2_naturebattlestylepreferences: pokemon_v2_naturebattlestylepreference_bool_exp + pokemon_v2_naturebattlestylepreferences_aggregate: pokemon_v2_naturebattlestylepreference_aggregate_bool_exp + pokemon_v2_naturenames: pokemon_v2_naturename_bool_exp + pokemon_v2_naturenames_aggregate: pokemon_v2_naturename_aggregate_bool_exp + pokemon_v2_naturepokeathlonstats: pokemon_v2_naturepokeathlonstat_bool_exp + pokemon_v2_naturepokeathlonstats_aggregate: pokemon_v2_naturepokeathlonstat_aggregate_bool_exp + pokemon_v2_stat: pokemon_v2_stat_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_nature_max_fields { + decreased_stat_id: Int + game_index: Int + hates_flavor_id: Int + id: Int + increased_stat_id: Int + likes_flavor_id: Int + name: String +} + +""" +order by max() on columns of table "pokemon_v2_nature" +""" +input pokemon_v2_nature_max_order_by { + decreased_stat_id: order_by + game_index: order_by + hates_flavor_id: order_by + id: order_by + increased_stat_id: order_by + likes_flavor_id: order_by + name: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_nature_min_fields { + decreased_stat_id: Int + game_index: Int + hates_flavor_id: Int + id: Int + increased_stat_id: Int + likes_flavor_id: Int + name: String +} + +""" +order by min() on columns of table "pokemon_v2_nature" +""" +input pokemon_v2_nature_min_order_by { + decreased_stat_id: order_by + game_index: order_by + hates_flavor_id: order_by + id: order_by + increased_stat_id: order_by + likes_flavor_id: order_by + name: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_nature".""" +input pokemon_v2_nature_order_by { + decreased_stat_id: order_by + game_index: order_by + hates_flavor_id: order_by + id: order_by + increased_stat_id: order_by + likes_flavor_id: order_by + name: order_by + pokemonV2BerryflavorByLikesFlavorId: pokemon_v2_berryflavor_order_by + pokemonV2StatByIncreasedStatId: pokemon_v2_stat_order_by + pokemon_v2_berryflavor: pokemon_v2_berryflavor_order_by + pokemon_v2_naturebattlestylepreferences_aggregate: pokemon_v2_naturebattlestylepreference_aggregate_order_by + pokemon_v2_naturenames_aggregate: pokemon_v2_naturename_aggregate_order_by + pokemon_v2_naturepokeathlonstats_aggregate: pokemon_v2_naturepokeathlonstat_aggregate_order_by + pokemon_v2_stat: pokemon_v2_stat_order_by +} + +""" +select columns of table "pokemon_v2_nature" +""" +enum pokemon_v2_nature_select_column { + """column name""" + decreased_stat_id + + """column name""" + game_index + + """column name""" + hates_flavor_id + + """column name""" + id + + """column name""" + increased_stat_id + + """column name""" + likes_flavor_id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_nature_stddev_fields { + decreased_stat_id: Float + game_index: Float + hates_flavor_id: Float + id: Float + increased_stat_id: Float + likes_flavor_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_nature" +""" +input pokemon_v2_nature_stddev_order_by { + decreased_stat_id: order_by + game_index: order_by + hates_flavor_id: order_by + id: order_by + increased_stat_id: order_by + likes_flavor_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_nature_stddev_pop_fields { + decreased_stat_id: Float + game_index: Float + hates_flavor_id: Float + id: Float + increased_stat_id: Float + likes_flavor_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_nature" +""" +input pokemon_v2_nature_stddev_pop_order_by { + decreased_stat_id: order_by + game_index: order_by + hates_flavor_id: order_by + id: order_by + increased_stat_id: order_by + likes_flavor_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_nature_stddev_samp_fields { + decreased_stat_id: Float + game_index: Float + hates_flavor_id: Float + id: Float + increased_stat_id: Float + likes_flavor_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_nature" +""" +input pokemon_v2_nature_stddev_samp_order_by { + decreased_stat_id: order_by + game_index: order_by + hates_flavor_id: order_by + id: order_by + increased_stat_id: order_by + likes_flavor_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_nature" +""" +input pokemon_v2_nature_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_nature_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_nature_stream_cursor_value_input { + decreased_stat_id: Int + game_index: Int + hates_flavor_id: Int + id: Int + increased_stat_id: Int + likes_flavor_id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_nature_sum_fields { + decreased_stat_id: Int + game_index: Int + hates_flavor_id: Int + id: Int + increased_stat_id: Int + likes_flavor_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_nature" +""" +input pokemon_v2_nature_sum_order_by { + decreased_stat_id: order_by + game_index: order_by + hates_flavor_id: order_by + id: order_by + increased_stat_id: order_by + likes_flavor_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_nature_var_pop_fields { + decreased_stat_id: Float + game_index: Float + hates_flavor_id: Float + id: Float + increased_stat_id: Float + likes_flavor_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_nature" +""" +input pokemon_v2_nature_var_pop_order_by { + decreased_stat_id: order_by + game_index: order_by + hates_flavor_id: order_by + id: order_by + increased_stat_id: order_by + likes_flavor_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_nature_var_samp_fields { + decreased_stat_id: Float + game_index: Float + hates_flavor_id: Float + id: Float + increased_stat_id: Float + likes_flavor_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_nature" +""" +input pokemon_v2_nature_var_samp_order_by { + decreased_stat_id: order_by + game_index: order_by + hates_flavor_id: order_by + id: order_by + increased_stat_id: order_by + likes_flavor_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_nature_variance_fields { + decreased_stat_id: Float + game_index: Float + hates_flavor_id: Float + id: Float + increased_stat_id: Float + likes_flavor_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_nature" +""" +input pokemon_v2_nature_variance_order_by { + decreased_stat_id: order_by + game_index: order_by + hates_flavor_id: order_by + id: order_by + increased_stat_id: order_by + likes_flavor_id: order_by +} + +""" +columns and relationships of "pokemon_v2_naturebattlestylepreference" +""" +type pokemon_v2_naturebattlestylepreference { + high_hp_preference: Int! + id: Int! + low_hp_preference: Int! + move_battle_style_id: Int + nature_id: Int + + """An object relationship""" + pokemon_v2_movebattlestyle: pokemon_v2_movebattlestyle + + """An object relationship""" + pokemon_v2_nature: pokemon_v2_nature +} + +""" +aggregated selection of "pokemon_v2_naturebattlestylepreference" +""" +type pokemon_v2_naturebattlestylepreference_aggregate { + aggregate: pokemon_v2_naturebattlestylepreference_aggregate_fields + nodes: [pokemon_v2_naturebattlestylepreference!]! +} + +input pokemon_v2_naturebattlestylepreference_aggregate_bool_exp { + count: pokemon_v2_naturebattlestylepreference_aggregate_bool_exp_count +} + +input pokemon_v2_naturebattlestylepreference_aggregate_bool_exp_count { + arguments: [pokemon_v2_naturebattlestylepreference_select_column!] + distinct: Boolean + filter: pokemon_v2_naturebattlestylepreference_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_naturebattlestylepreference" +""" +type pokemon_v2_naturebattlestylepreference_aggregate_fields { + avg: pokemon_v2_naturebattlestylepreference_avg_fields + count(columns: [pokemon_v2_naturebattlestylepreference_select_column!], distinct: Boolean): Int! + max: pokemon_v2_naturebattlestylepreference_max_fields + min: pokemon_v2_naturebattlestylepreference_min_fields + stddev: pokemon_v2_naturebattlestylepreference_stddev_fields + stddev_pop: pokemon_v2_naturebattlestylepreference_stddev_pop_fields + stddev_samp: pokemon_v2_naturebattlestylepreference_stddev_samp_fields + sum: pokemon_v2_naturebattlestylepreference_sum_fields + var_pop: pokemon_v2_naturebattlestylepreference_var_pop_fields + var_samp: pokemon_v2_naturebattlestylepreference_var_samp_fields + variance: pokemon_v2_naturebattlestylepreference_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_naturebattlestylepreference" +""" +input pokemon_v2_naturebattlestylepreference_aggregate_order_by { + avg: pokemon_v2_naturebattlestylepreference_avg_order_by + count: order_by + max: pokemon_v2_naturebattlestylepreference_max_order_by + min: pokemon_v2_naturebattlestylepreference_min_order_by + stddev: pokemon_v2_naturebattlestylepreference_stddev_order_by + stddev_pop: pokemon_v2_naturebattlestylepreference_stddev_pop_order_by + stddev_samp: pokemon_v2_naturebattlestylepreference_stddev_samp_order_by + sum: pokemon_v2_naturebattlestylepreference_sum_order_by + var_pop: pokemon_v2_naturebattlestylepreference_var_pop_order_by + var_samp: pokemon_v2_naturebattlestylepreference_var_samp_order_by + variance: pokemon_v2_naturebattlestylepreference_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_naturebattlestylepreference_avg_fields { + high_hp_preference: Float + id: Float + low_hp_preference: Float + move_battle_style_id: Float + nature_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_naturebattlestylepreference" +""" +input pokemon_v2_naturebattlestylepreference_avg_order_by { + high_hp_preference: order_by + id: order_by + low_hp_preference: order_by + move_battle_style_id: order_by + nature_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_naturebattlestylepreference". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_naturebattlestylepreference_bool_exp { + _and: [pokemon_v2_naturebattlestylepreference_bool_exp!] + _not: pokemon_v2_naturebattlestylepreference_bool_exp + _or: [pokemon_v2_naturebattlestylepreference_bool_exp!] + high_hp_preference: Int_comparison_exp + id: Int_comparison_exp + low_hp_preference: Int_comparison_exp + move_battle_style_id: Int_comparison_exp + nature_id: Int_comparison_exp + pokemon_v2_movebattlestyle: pokemon_v2_movebattlestyle_bool_exp + pokemon_v2_nature: pokemon_v2_nature_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_naturebattlestylepreference_max_fields { + high_hp_preference: Int + id: Int + low_hp_preference: Int + move_battle_style_id: Int + nature_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_naturebattlestylepreference" +""" +input pokemon_v2_naturebattlestylepreference_max_order_by { + high_hp_preference: order_by + id: order_by + low_hp_preference: order_by + move_battle_style_id: order_by + nature_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_naturebattlestylepreference_min_fields { + high_hp_preference: Int + id: Int + low_hp_preference: Int + move_battle_style_id: Int + nature_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_naturebattlestylepreference" +""" +input pokemon_v2_naturebattlestylepreference_min_order_by { + high_hp_preference: order_by + id: order_by + low_hp_preference: order_by + move_battle_style_id: order_by + nature_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_naturebattlestylepreference". +""" +input pokemon_v2_naturebattlestylepreference_order_by { + high_hp_preference: order_by + id: order_by + low_hp_preference: order_by + move_battle_style_id: order_by + nature_id: order_by + pokemon_v2_movebattlestyle: pokemon_v2_movebattlestyle_order_by + pokemon_v2_nature: pokemon_v2_nature_order_by +} + +""" +select columns of table "pokemon_v2_naturebattlestylepreference" +""" +enum pokemon_v2_naturebattlestylepreference_select_column { + """column name""" + high_hp_preference + + """column name""" + id + + """column name""" + low_hp_preference + + """column name""" + move_battle_style_id + + """column name""" + nature_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_naturebattlestylepreference_stddev_fields { + high_hp_preference: Float + id: Float + low_hp_preference: Float + move_battle_style_id: Float + nature_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_naturebattlestylepreference" +""" +input pokemon_v2_naturebattlestylepreference_stddev_order_by { + high_hp_preference: order_by + id: order_by + low_hp_preference: order_by + move_battle_style_id: order_by + nature_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_naturebattlestylepreference_stddev_pop_fields { + high_hp_preference: Float + id: Float + low_hp_preference: Float + move_battle_style_id: Float + nature_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_naturebattlestylepreference" +""" +input pokemon_v2_naturebattlestylepreference_stddev_pop_order_by { + high_hp_preference: order_by + id: order_by + low_hp_preference: order_by + move_battle_style_id: order_by + nature_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_naturebattlestylepreference_stddev_samp_fields { + high_hp_preference: Float + id: Float + low_hp_preference: Float + move_battle_style_id: Float + nature_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_naturebattlestylepreference" +""" +input pokemon_v2_naturebattlestylepreference_stddev_samp_order_by { + high_hp_preference: order_by + id: order_by + low_hp_preference: order_by + move_battle_style_id: order_by + nature_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_naturebattlestylepreference" +""" +input pokemon_v2_naturebattlestylepreference_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_naturebattlestylepreference_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_naturebattlestylepreference_stream_cursor_value_input { + high_hp_preference: Int + id: Int + low_hp_preference: Int + move_battle_style_id: Int + nature_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_naturebattlestylepreference_sum_fields { + high_hp_preference: Int + id: Int + low_hp_preference: Int + move_battle_style_id: Int + nature_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_naturebattlestylepreference" +""" +input pokemon_v2_naturebattlestylepreference_sum_order_by { + high_hp_preference: order_by + id: order_by + low_hp_preference: order_by + move_battle_style_id: order_by + nature_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_naturebattlestylepreference_var_pop_fields { + high_hp_preference: Float + id: Float + low_hp_preference: Float + move_battle_style_id: Float + nature_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_naturebattlestylepreference" +""" +input pokemon_v2_naturebattlestylepreference_var_pop_order_by { + high_hp_preference: order_by + id: order_by + low_hp_preference: order_by + move_battle_style_id: order_by + nature_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_naturebattlestylepreference_var_samp_fields { + high_hp_preference: Float + id: Float + low_hp_preference: Float + move_battle_style_id: Float + nature_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_naturebattlestylepreference" +""" +input pokemon_v2_naturebattlestylepreference_var_samp_order_by { + high_hp_preference: order_by + id: order_by + low_hp_preference: order_by + move_battle_style_id: order_by + nature_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_naturebattlestylepreference_variance_fields { + high_hp_preference: Float + id: Float + low_hp_preference: Float + move_battle_style_id: Float + nature_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_naturebattlestylepreference" +""" +input pokemon_v2_naturebattlestylepreference_variance_order_by { + high_hp_preference: order_by + id: order_by + low_hp_preference: order_by + move_battle_style_id: order_by + nature_id: order_by +} + +""" +columns and relationships of "pokemon_v2_naturename" +""" +type pokemon_v2_naturename { + id: Int! + language_id: Int + name: String! + nature_id: Int + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_nature: pokemon_v2_nature +} + +""" +aggregated selection of "pokemon_v2_naturename" +""" +type pokemon_v2_naturename_aggregate { + aggregate: pokemon_v2_naturename_aggregate_fields + nodes: [pokemon_v2_naturename!]! +} + +input pokemon_v2_naturename_aggregate_bool_exp { + count: pokemon_v2_naturename_aggregate_bool_exp_count +} + +input pokemon_v2_naturename_aggregate_bool_exp_count { + arguments: [pokemon_v2_naturename_select_column!] + distinct: Boolean + filter: pokemon_v2_naturename_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_naturename" +""" +type pokemon_v2_naturename_aggregate_fields { + avg: pokemon_v2_naturename_avg_fields + count(columns: [pokemon_v2_naturename_select_column!], distinct: Boolean): Int! + max: pokemon_v2_naturename_max_fields + min: pokemon_v2_naturename_min_fields + stddev: pokemon_v2_naturename_stddev_fields + stddev_pop: pokemon_v2_naturename_stddev_pop_fields + stddev_samp: pokemon_v2_naturename_stddev_samp_fields + sum: pokemon_v2_naturename_sum_fields + var_pop: pokemon_v2_naturename_var_pop_fields + var_samp: pokemon_v2_naturename_var_samp_fields + variance: pokemon_v2_naturename_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_naturename" +""" +input pokemon_v2_naturename_aggregate_order_by { + avg: pokemon_v2_naturename_avg_order_by + count: order_by + max: pokemon_v2_naturename_max_order_by + min: pokemon_v2_naturename_min_order_by + stddev: pokemon_v2_naturename_stddev_order_by + stddev_pop: pokemon_v2_naturename_stddev_pop_order_by + stddev_samp: pokemon_v2_naturename_stddev_samp_order_by + sum: pokemon_v2_naturename_sum_order_by + var_pop: pokemon_v2_naturename_var_pop_order_by + var_samp: pokemon_v2_naturename_var_samp_order_by + variance: pokemon_v2_naturename_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_naturename_avg_fields { + id: Float + language_id: Float + nature_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_naturename" +""" +input pokemon_v2_naturename_avg_order_by { + id: order_by + language_id: order_by + nature_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_naturename". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_naturename_bool_exp { + _and: [pokemon_v2_naturename_bool_exp!] + _not: pokemon_v2_naturename_bool_exp + _or: [pokemon_v2_naturename_bool_exp!] + id: Int_comparison_exp + language_id: Int_comparison_exp + name: String_comparison_exp + nature_id: Int_comparison_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_nature: pokemon_v2_nature_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_naturename_max_fields { + id: Int + language_id: Int + name: String + nature_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_naturename" +""" +input pokemon_v2_naturename_max_order_by { + id: order_by + language_id: order_by + name: order_by + nature_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_naturename_min_fields { + id: Int + language_id: Int + name: String + nature_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_naturename" +""" +input pokemon_v2_naturename_min_order_by { + id: order_by + language_id: order_by + name: order_by + nature_id: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_naturename".""" +input pokemon_v2_naturename_order_by { + id: order_by + language_id: order_by + name: order_by + nature_id: order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_nature: pokemon_v2_nature_order_by +} + +""" +select columns of table "pokemon_v2_naturename" +""" +enum pokemon_v2_naturename_select_column { + """column name""" + id + + """column name""" + language_id + + """column name""" + name + + """column name""" + nature_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_naturename_stddev_fields { + id: Float + language_id: Float + nature_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_naturename" +""" +input pokemon_v2_naturename_stddev_order_by { + id: order_by + language_id: order_by + nature_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_naturename_stddev_pop_fields { + id: Float + language_id: Float + nature_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_naturename" +""" +input pokemon_v2_naturename_stddev_pop_order_by { + id: order_by + language_id: order_by + nature_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_naturename_stddev_samp_fields { + id: Float + language_id: Float + nature_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_naturename" +""" +input pokemon_v2_naturename_stddev_samp_order_by { + id: order_by + language_id: order_by + nature_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_naturename" +""" +input pokemon_v2_naturename_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_naturename_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_naturename_stream_cursor_value_input { + id: Int + language_id: Int + name: String + nature_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_naturename_sum_fields { + id: Int + language_id: Int + nature_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_naturename" +""" +input pokemon_v2_naturename_sum_order_by { + id: order_by + language_id: order_by + nature_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_naturename_var_pop_fields { + id: Float + language_id: Float + nature_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_naturename" +""" +input pokemon_v2_naturename_var_pop_order_by { + id: order_by + language_id: order_by + nature_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_naturename_var_samp_fields { + id: Float + language_id: Float + nature_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_naturename" +""" +input pokemon_v2_naturename_var_samp_order_by { + id: order_by + language_id: order_by + nature_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_naturename_variance_fields { + id: Float + language_id: Float + nature_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_naturename" +""" +input pokemon_v2_naturename_variance_order_by { + id: order_by + language_id: order_by + nature_id: order_by +} + +""" +columns and relationships of "pokemon_v2_naturepokeathlonstat" +""" +type pokemon_v2_naturepokeathlonstat { + id: Int! + max_change: Int! + nature_id: Int + pokeathlon_stat_id: Int + + """An object relationship""" + pokemon_v2_nature: pokemon_v2_nature + + """An object relationship""" + pokemon_v2_pokeathlonstat: pokemon_v2_pokeathlonstat +} + +""" +aggregated selection of "pokemon_v2_naturepokeathlonstat" +""" +type pokemon_v2_naturepokeathlonstat_aggregate { + aggregate: pokemon_v2_naturepokeathlonstat_aggregate_fields + nodes: [pokemon_v2_naturepokeathlonstat!]! +} + +input pokemon_v2_naturepokeathlonstat_aggregate_bool_exp { + count: pokemon_v2_naturepokeathlonstat_aggregate_bool_exp_count +} + +input pokemon_v2_naturepokeathlonstat_aggregate_bool_exp_count { + arguments: [pokemon_v2_naturepokeathlonstat_select_column!] + distinct: Boolean + filter: pokemon_v2_naturepokeathlonstat_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_naturepokeathlonstat" +""" +type pokemon_v2_naturepokeathlonstat_aggregate_fields { + avg: pokemon_v2_naturepokeathlonstat_avg_fields + count(columns: [pokemon_v2_naturepokeathlonstat_select_column!], distinct: Boolean): Int! + max: pokemon_v2_naturepokeathlonstat_max_fields + min: pokemon_v2_naturepokeathlonstat_min_fields + stddev: pokemon_v2_naturepokeathlonstat_stddev_fields + stddev_pop: pokemon_v2_naturepokeathlonstat_stddev_pop_fields + stddev_samp: pokemon_v2_naturepokeathlonstat_stddev_samp_fields + sum: pokemon_v2_naturepokeathlonstat_sum_fields + var_pop: pokemon_v2_naturepokeathlonstat_var_pop_fields + var_samp: pokemon_v2_naturepokeathlonstat_var_samp_fields + variance: pokemon_v2_naturepokeathlonstat_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_naturepokeathlonstat" +""" +input pokemon_v2_naturepokeathlonstat_aggregate_order_by { + avg: pokemon_v2_naturepokeathlonstat_avg_order_by + count: order_by + max: pokemon_v2_naturepokeathlonstat_max_order_by + min: pokemon_v2_naturepokeathlonstat_min_order_by + stddev: pokemon_v2_naturepokeathlonstat_stddev_order_by + stddev_pop: pokemon_v2_naturepokeathlonstat_stddev_pop_order_by + stddev_samp: pokemon_v2_naturepokeathlonstat_stddev_samp_order_by + sum: pokemon_v2_naturepokeathlonstat_sum_order_by + var_pop: pokemon_v2_naturepokeathlonstat_var_pop_order_by + var_samp: pokemon_v2_naturepokeathlonstat_var_samp_order_by + variance: pokemon_v2_naturepokeathlonstat_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_naturepokeathlonstat_avg_fields { + id: Float + max_change: Float + nature_id: Float + pokeathlon_stat_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_naturepokeathlonstat" +""" +input pokemon_v2_naturepokeathlonstat_avg_order_by { + id: order_by + max_change: order_by + nature_id: order_by + pokeathlon_stat_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_naturepokeathlonstat". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_naturepokeathlonstat_bool_exp { + _and: [pokemon_v2_naturepokeathlonstat_bool_exp!] + _not: pokemon_v2_naturepokeathlonstat_bool_exp + _or: [pokemon_v2_naturepokeathlonstat_bool_exp!] + id: Int_comparison_exp + max_change: Int_comparison_exp + nature_id: Int_comparison_exp + pokeathlon_stat_id: Int_comparison_exp + pokemon_v2_nature: pokemon_v2_nature_bool_exp + pokemon_v2_pokeathlonstat: pokemon_v2_pokeathlonstat_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_naturepokeathlonstat_max_fields { + id: Int + max_change: Int + nature_id: Int + pokeathlon_stat_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_naturepokeathlonstat" +""" +input pokemon_v2_naturepokeathlonstat_max_order_by { + id: order_by + max_change: order_by + nature_id: order_by + pokeathlon_stat_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_naturepokeathlonstat_min_fields { + id: Int + max_change: Int + nature_id: Int + pokeathlon_stat_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_naturepokeathlonstat" +""" +input pokemon_v2_naturepokeathlonstat_min_order_by { + id: order_by + max_change: order_by + nature_id: order_by + pokeathlon_stat_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_naturepokeathlonstat". +""" +input pokemon_v2_naturepokeathlonstat_order_by { + id: order_by + max_change: order_by + nature_id: order_by + pokeathlon_stat_id: order_by + pokemon_v2_nature: pokemon_v2_nature_order_by + pokemon_v2_pokeathlonstat: pokemon_v2_pokeathlonstat_order_by +} + +""" +select columns of table "pokemon_v2_naturepokeathlonstat" +""" +enum pokemon_v2_naturepokeathlonstat_select_column { + """column name""" + id + + """column name""" + max_change + + """column name""" + nature_id + + """column name""" + pokeathlon_stat_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_naturepokeathlonstat_stddev_fields { + id: Float + max_change: Float + nature_id: Float + pokeathlon_stat_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_naturepokeathlonstat" +""" +input pokemon_v2_naturepokeathlonstat_stddev_order_by { + id: order_by + max_change: order_by + nature_id: order_by + pokeathlon_stat_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_naturepokeathlonstat_stddev_pop_fields { + id: Float + max_change: Float + nature_id: Float + pokeathlon_stat_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_naturepokeathlonstat" +""" +input pokemon_v2_naturepokeathlonstat_stddev_pop_order_by { + id: order_by + max_change: order_by + nature_id: order_by + pokeathlon_stat_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_naturepokeathlonstat_stddev_samp_fields { + id: Float + max_change: Float + nature_id: Float + pokeathlon_stat_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_naturepokeathlonstat" +""" +input pokemon_v2_naturepokeathlonstat_stddev_samp_order_by { + id: order_by + max_change: order_by + nature_id: order_by + pokeathlon_stat_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_naturepokeathlonstat" +""" +input pokemon_v2_naturepokeathlonstat_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_naturepokeathlonstat_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_naturepokeathlonstat_stream_cursor_value_input { + id: Int + max_change: Int + nature_id: Int + pokeathlon_stat_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_naturepokeathlonstat_sum_fields { + id: Int + max_change: Int + nature_id: Int + pokeathlon_stat_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_naturepokeathlonstat" +""" +input pokemon_v2_naturepokeathlonstat_sum_order_by { + id: order_by + max_change: order_by + nature_id: order_by + pokeathlon_stat_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_naturepokeathlonstat_var_pop_fields { + id: Float + max_change: Float + nature_id: Float + pokeathlon_stat_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_naturepokeathlonstat" +""" +input pokemon_v2_naturepokeathlonstat_var_pop_order_by { + id: order_by + max_change: order_by + nature_id: order_by + pokeathlon_stat_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_naturepokeathlonstat_var_samp_fields { + id: Float + max_change: Float + nature_id: Float + pokeathlon_stat_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_naturepokeathlonstat" +""" +input pokemon_v2_naturepokeathlonstat_var_samp_order_by { + id: order_by + max_change: order_by + nature_id: order_by + pokeathlon_stat_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_naturepokeathlonstat_variance_fields { + id: Float + max_change: Float + nature_id: Float + pokeathlon_stat_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_naturepokeathlonstat" +""" +input pokemon_v2_naturepokeathlonstat_variance_order_by { + id: order_by + max_change: order_by + nature_id: order_by + pokeathlon_stat_id: order_by +} + +""" +columns and relationships of "pokemon_v2_palpark" +""" +type pokemon_v2_palpark { + base_score: Int + id: Int! + pal_park_area_id: Int + pokemon_species_id: Int + + """An object relationship""" + pokemon_v2_palparkarea: pokemon_v2_palparkarea + + """An object relationship""" + pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies + rate: Int! +} + +""" +aggregated selection of "pokemon_v2_palpark" +""" +type pokemon_v2_palpark_aggregate { + aggregate: pokemon_v2_palpark_aggregate_fields + nodes: [pokemon_v2_palpark!]! +} + +input pokemon_v2_palpark_aggregate_bool_exp { + count: pokemon_v2_palpark_aggregate_bool_exp_count +} + +input pokemon_v2_palpark_aggregate_bool_exp_count { + arguments: [pokemon_v2_palpark_select_column!] + distinct: Boolean + filter: pokemon_v2_palpark_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_palpark" +""" +type pokemon_v2_palpark_aggregate_fields { + avg: pokemon_v2_palpark_avg_fields + count(columns: [pokemon_v2_palpark_select_column!], distinct: Boolean): Int! + max: pokemon_v2_palpark_max_fields + min: pokemon_v2_palpark_min_fields + stddev: pokemon_v2_palpark_stddev_fields + stddev_pop: pokemon_v2_palpark_stddev_pop_fields + stddev_samp: pokemon_v2_palpark_stddev_samp_fields + sum: pokemon_v2_palpark_sum_fields + var_pop: pokemon_v2_palpark_var_pop_fields + var_samp: pokemon_v2_palpark_var_samp_fields + variance: pokemon_v2_palpark_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_palpark" +""" +input pokemon_v2_palpark_aggregate_order_by { + avg: pokemon_v2_palpark_avg_order_by + count: order_by + max: pokemon_v2_palpark_max_order_by + min: pokemon_v2_palpark_min_order_by + stddev: pokemon_v2_palpark_stddev_order_by + stddev_pop: pokemon_v2_palpark_stddev_pop_order_by + stddev_samp: pokemon_v2_palpark_stddev_samp_order_by + sum: pokemon_v2_palpark_sum_order_by + var_pop: pokemon_v2_palpark_var_pop_order_by + var_samp: pokemon_v2_palpark_var_samp_order_by + variance: pokemon_v2_palpark_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_palpark_avg_fields { + base_score: Float + id: Float + pal_park_area_id: Float + pokemon_species_id: Float + rate: Float +} + +""" +order by avg() on columns of table "pokemon_v2_palpark" +""" +input pokemon_v2_palpark_avg_order_by { + base_score: order_by + id: order_by + pal_park_area_id: order_by + pokemon_species_id: order_by + rate: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_palpark". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_palpark_bool_exp { + _and: [pokemon_v2_palpark_bool_exp!] + _not: pokemon_v2_palpark_bool_exp + _or: [pokemon_v2_palpark_bool_exp!] + base_score: Int_comparison_exp + id: Int_comparison_exp + pal_park_area_id: Int_comparison_exp + pokemon_species_id: Int_comparison_exp + pokemon_v2_palparkarea: pokemon_v2_palparkarea_bool_exp + pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_bool_exp + rate: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_palpark_max_fields { + base_score: Int + id: Int + pal_park_area_id: Int + pokemon_species_id: Int + rate: Int +} + +""" +order by max() on columns of table "pokemon_v2_palpark" +""" +input pokemon_v2_palpark_max_order_by { + base_score: order_by + id: order_by + pal_park_area_id: order_by + pokemon_species_id: order_by + rate: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_palpark_min_fields { + base_score: Int + id: Int + pal_park_area_id: Int + pokemon_species_id: Int + rate: Int +} + +""" +order by min() on columns of table "pokemon_v2_palpark" +""" +input pokemon_v2_palpark_min_order_by { + base_score: order_by + id: order_by + pal_park_area_id: order_by + pokemon_species_id: order_by + rate: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_palpark".""" +input pokemon_v2_palpark_order_by { + base_score: order_by + id: order_by + pal_park_area_id: order_by + pokemon_species_id: order_by + pokemon_v2_palparkarea: pokemon_v2_palparkarea_order_by + pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_order_by + rate: order_by +} + +""" +select columns of table "pokemon_v2_palpark" +""" +enum pokemon_v2_palpark_select_column { + """column name""" + base_score + + """column name""" + id + + """column name""" + pal_park_area_id + + """column name""" + pokemon_species_id + + """column name""" + rate +} + +"""aggregate stddev on columns""" +type pokemon_v2_palpark_stddev_fields { + base_score: Float + id: Float + pal_park_area_id: Float + pokemon_species_id: Float + rate: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_palpark" +""" +input pokemon_v2_palpark_stddev_order_by { + base_score: order_by + id: order_by + pal_park_area_id: order_by + pokemon_species_id: order_by + rate: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_palpark_stddev_pop_fields { + base_score: Float + id: Float + pal_park_area_id: Float + pokemon_species_id: Float + rate: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_palpark" +""" +input pokemon_v2_palpark_stddev_pop_order_by { + base_score: order_by + id: order_by + pal_park_area_id: order_by + pokemon_species_id: order_by + rate: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_palpark_stddev_samp_fields { + base_score: Float + id: Float + pal_park_area_id: Float + pokemon_species_id: Float + rate: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_palpark" +""" +input pokemon_v2_palpark_stddev_samp_order_by { + base_score: order_by + id: order_by + pal_park_area_id: order_by + pokemon_species_id: order_by + rate: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_palpark" +""" +input pokemon_v2_palpark_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_palpark_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_palpark_stream_cursor_value_input { + base_score: Int + id: Int + pal_park_area_id: Int + pokemon_species_id: Int + rate: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_palpark_sum_fields { + base_score: Int + id: Int + pal_park_area_id: Int + pokemon_species_id: Int + rate: Int +} + +""" +order by sum() on columns of table "pokemon_v2_palpark" +""" +input pokemon_v2_palpark_sum_order_by { + base_score: order_by + id: order_by + pal_park_area_id: order_by + pokemon_species_id: order_by + rate: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_palpark_var_pop_fields { + base_score: Float + id: Float + pal_park_area_id: Float + pokemon_species_id: Float + rate: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_palpark" +""" +input pokemon_v2_palpark_var_pop_order_by { + base_score: order_by + id: order_by + pal_park_area_id: order_by + pokemon_species_id: order_by + rate: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_palpark_var_samp_fields { + base_score: Float + id: Float + pal_park_area_id: Float + pokemon_species_id: Float + rate: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_palpark" +""" +input pokemon_v2_palpark_var_samp_order_by { + base_score: order_by + id: order_by + pal_park_area_id: order_by + pokemon_species_id: order_by + rate: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_palpark_variance_fields { + base_score: Float + id: Float + pal_park_area_id: Float + pokemon_species_id: Float + rate: Float +} + +""" +order by variance() on columns of table "pokemon_v2_palpark" +""" +input pokemon_v2_palpark_variance_order_by { + base_score: order_by + id: order_by + pal_park_area_id: order_by + pokemon_species_id: order_by + rate: order_by +} + +""" +columns and relationships of "pokemon_v2_palparkarea" +""" +type pokemon_v2_palparkarea { + id: Int! + name: String! + + """An array relationship""" + pokemon_v2_palparkareanames( + """distinct select on columns""" + distinct_on: [pokemon_v2_palparkareaname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_palparkareaname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_palparkareaname_bool_exp + ): [pokemon_v2_palparkareaname!]! + + """An aggregate relationship""" + pokemon_v2_palparkareanames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_palparkareaname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_palparkareaname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_palparkareaname_bool_exp + ): pokemon_v2_palparkareaname_aggregate! + + """An array relationship""" + pokemon_v2_palparks( + """distinct select on columns""" + distinct_on: [pokemon_v2_palpark_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_palpark_order_by!] + + """filter the rows returned""" + where: pokemon_v2_palpark_bool_exp + ): [pokemon_v2_palpark!]! + + """An aggregate relationship""" + pokemon_v2_palparks_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_palpark_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_palpark_order_by!] + + """filter the rows returned""" + where: pokemon_v2_palpark_bool_exp + ): pokemon_v2_palpark_aggregate! +} + +""" +aggregated selection of "pokemon_v2_palparkarea" +""" +type pokemon_v2_palparkarea_aggregate { + aggregate: pokemon_v2_palparkarea_aggregate_fields + nodes: [pokemon_v2_palparkarea!]! +} + +""" +aggregate fields of "pokemon_v2_palparkarea" +""" +type pokemon_v2_palparkarea_aggregate_fields { + avg: pokemon_v2_palparkarea_avg_fields + count(columns: [pokemon_v2_palparkarea_select_column!], distinct: Boolean): Int! + max: pokemon_v2_palparkarea_max_fields + min: pokemon_v2_palparkarea_min_fields + stddev: pokemon_v2_palparkarea_stddev_fields + stddev_pop: pokemon_v2_palparkarea_stddev_pop_fields + stddev_samp: pokemon_v2_palparkarea_stddev_samp_fields + sum: pokemon_v2_palparkarea_sum_fields + var_pop: pokemon_v2_palparkarea_var_pop_fields + var_samp: pokemon_v2_palparkarea_var_samp_fields + variance: pokemon_v2_palparkarea_variance_fields +} + +"""aggregate avg on columns""" +type pokemon_v2_palparkarea_avg_fields { + id: Float +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_palparkarea". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_palparkarea_bool_exp { + _and: [pokemon_v2_palparkarea_bool_exp!] + _not: pokemon_v2_palparkarea_bool_exp + _or: [pokemon_v2_palparkarea_bool_exp!] + id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_palparkareanames: pokemon_v2_palparkareaname_bool_exp + pokemon_v2_palparkareanames_aggregate: pokemon_v2_palparkareaname_aggregate_bool_exp + pokemon_v2_palparks: pokemon_v2_palpark_bool_exp + pokemon_v2_palparks_aggregate: pokemon_v2_palpark_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_palparkarea_max_fields { + id: Int + name: String +} + +"""aggregate min on columns""" +type pokemon_v2_palparkarea_min_fields { + id: Int + name: String +} + +"""Ordering options when selecting data from "pokemon_v2_palparkarea".""" +input pokemon_v2_palparkarea_order_by { + id: order_by + name: order_by + pokemon_v2_palparkareanames_aggregate: pokemon_v2_palparkareaname_aggregate_order_by + pokemon_v2_palparks_aggregate: pokemon_v2_palpark_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_palparkarea" +""" +enum pokemon_v2_palparkarea_select_column { + """column name""" + id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_palparkarea_stddev_fields { + id: Float +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_palparkarea_stddev_pop_fields { + id: Float +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_palparkarea_stddev_samp_fields { + id: Float +} + +""" +Streaming cursor of the table "pokemon_v2_palparkarea" +""" +input pokemon_v2_palparkarea_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_palparkarea_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_palparkarea_stream_cursor_value_input { + id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_palparkarea_sum_fields { + id: Int +} + +"""aggregate var_pop on columns""" +type pokemon_v2_palparkarea_var_pop_fields { + id: Float +} + +"""aggregate var_samp on columns""" +type pokemon_v2_palparkarea_var_samp_fields { + id: Float +} + +"""aggregate variance on columns""" +type pokemon_v2_palparkarea_variance_fields { + id: Float +} + +""" +columns and relationships of "pokemon_v2_palparkareaname" +""" +type pokemon_v2_palparkareaname { + id: Int! + language_id: Int + name: String! + pal_park_area_id: Int + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_palparkarea: pokemon_v2_palparkarea +} + +""" +aggregated selection of "pokemon_v2_palparkareaname" +""" +type pokemon_v2_palparkareaname_aggregate { + aggregate: pokemon_v2_palparkareaname_aggregate_fields + nodes: [pokemon_v2_palparkareaname!]! +} + +input pokemon_v2_palparkareaname_aggregate_bool_exp { + count: pokemon_v2_palparkareaname_aggregate_bool_exp_count +} + +input pokemon_v2_palparkareaname_aggregate_bool_exp_count { + arguments: [pokemon_v2_palparkareaname_select_column!] + distinct: Boolean + filter: pokemon_v2_palparkareaname_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_palparkareaname" +""" +type pokemon_v2_palparkareaname_aggregate_fields { + avg: pokemon_v2_palparkareaname_avg_fields + count(columns: [pokemon_v2_palparkareaname_select_column!], distinct: Boolean): Int! + max: pokemon_v2_palparkareaname_max_fields + min: pokemon_v2_palparkareaname_min_fields + stddev: pokemon_v2_palparkareaname_stddev_fields + stddev_pop: pokemon_v2_palparkareaname_stddev_pop_fields + stddev_samp: pokemon_v2_palparkareaname_stddev_samp_fields + sum: pokemon_v2_palparkareaname_sum_fields + var_pop: pokemon_v2_palparkareaname_var_pop_fields + var_samp: pokemon_v2_palparkareaname_var_samp_fields + variance: pokemon_v2_palparkareaname_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_palparkareaname" +""" +input pokemon_v2_palparkareaname_aggregate_order_by { + avg: pokemon_v2_palparkareaname_avg_order_by + count: order_by + max: pokemon_v2_palparkareaname_max_order_by + min: pokemon_v2_palparkareaname_min_order_by + stddev: pokemon_v2_palparkareaname_stddev_order_by + stddev_pop: pokemon_v2_palparkareaname_stddev_pop_order_by + stddev_samp: pokemon_v2_palparkareaname_stddev_samp_order_by + sum: pokemon_v2_palparkareaname_sum_order_by + var_pop: pokemon_v2_palparkareaname_var_pop_order_by + var_samp: pokemon_v2_palparkareaname_var_samp_order_by + variance: pokemon_v2_palparkareaname_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_palparkareaname_avg_fields { + id: Float + language_id: Float + pal_park_area_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_palparkareaname" +""" +input pokemon_v2_palparkareaname_avg_order_by { + id: order_by + language_id: order_by + pal_park_area_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_palparkareaname". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_palparkareaname_bool_exp { + _and: [pokemon_v2_palparkareaname_bool_exp!] + _not: pokemon_v2_palparkareaname_bool_exp + _or: [pokemon_v2_palparkareaname_bool_exp!] + id: Int_comparison_exp + language_id: Int_comparison_exp + name: String_comparison_exp + pal_park_area_id: Int_comparison_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_palparkarea: pokemon_v2_palparkarea_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_palparkareaname_max_fields { + id: Int + language_id: Int + name: String + pal_park_area_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_palparkareaname" +""" +input pokemon_v2_palparkareaname_max_order_by { + id: order_by + language_id: order_by + name: order_by + pal_park_area_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_palparkareaname_min_fields { + id: Int + language_id: Int + name: String + pal_park_area_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_palparkareaname" +""" +input pokemon_v2_palparkareaname_min_order_by { + id: order_by + language_id: order_by + name: order_by + pal_park_area_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_palparkareaname". +""" +input pokemon_v2_palparkareaname_order_by { + id: order_by + language_id: order_by + name: order_by + pal_park_area_id: order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_palparkarea: pokemon_v2_palparkarea_order_by +} + +""" +select columns of table "pokemon_v2_palparkareaname" +""" +enum pokemon_v2_palparkareaname_select_column { + """column name""" + id + + """column name""" + language_id + + """column name""" + name + + """column name""" + pal_park_area_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_palparkareaname_stddev_fields { + id: Float + language_id: Float + pal_park_area_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_palparkareaname" +""" +input pokemon_v2_palparkareaname_stddev_order_by { + id: order_by + language_id: order_by + pal_park_area_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_palparkareaname_stddev_pop_fields { + id: Float + language_id: Float + pal_park_area_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_palparkareaname" +""" +input pokemon_v2_palparkareaname_stddev_pop_order_by { + id: order_by + language_id: order_by + pal_park_area_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_palparkareaname_stddev_samp_fields { + id: Float + language_id: Float + pal_park_area_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_palparkareaname" +""" +input pokemon_v2_palparkareaname_stddev_samp_order_by { + id: order_by + language_id: order_by + pal_park_area_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_palparkareaname" +""" +input pokemon_v2_palparkareaname_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_palparkareaname_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_palparkareaname_stream_cursor_value_input { + id: Int + language_id: Int + name: String + pal_park_area_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_palparkareaname_sum_fields { + id: Int + language_id: Int + pal_park_area_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_palparkareaname" +""" +input pokemon_v2_palparkareaname_sum_order_by { + id: order_by + language_id: order_by + pal_park_area_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_palparkareaname_var_pop_fields { + id: Float + language_id: Float + pal_park_area_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_palparkareaname" +""" +input pokemon_v2_palparkareaname_var_pop_order_by { + id: order_by + language_id: order_by + pal_park_area_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_palparkareaname_var_samp_fields { + id: Float + language_id: Float + pal_park_area_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_palparkareaname" +""" +input pokemon_v2_palparkareaname_var_samp_order_by { + id: order_by + language_id: order_by + pal_park_area_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_palparkareaname_variance_fields { + id: Float + language_id: Float + pal_park_area_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_palparkareaname" +""" +input pokemon_v2_palparkareaname_variance_order_by { + id: order_by + language_id: order_by + pal_park_area_id: order_by +} + +""" +columns and relationships of "pokemon_v2_pokeathlonstat" +""" +type pokemon_v2_pokeathlonstat { + id: Int! + name: String! + + """An array relationship""" + pokemon_v2_naturepokeathlonstats( + """distinct select on columns""" + distinct_on: [pokemon_v2_naturepokeathlonstat_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_naturepokeathlonstat_order_by!] + + """filter the rows returned""" + where: pokemon_v2_naturepokeathlonstat_bool_exp + ): [pokemon_v2_naturepokeathlonstat!]! + + """An aggregate relationship""" + pokemon_v2_naturepokeathlonstats_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_naturepokeathlonstat_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_naturepokeathlonstat_order_by!] + + """filter the rows returned""" + where: pokemon_v2_naturepokeathlonstat_bool_exp + ): pokemon_v2_naturepokeathlonstat_aggregate! + + """An array relationship""" + pokemon_v2_pokeathlonstatnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokeathlonstatname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokeathlonstatname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokeathlonstatname_bool_exp + ): [pokemon_v2_pokeathlonstatname!]! + + """An aggregate relationship""" + pokemon_v2_pokeathlonstatnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokeathlonstatname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokeathlonstatname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokeathlonstatname_bool_exp + ): pokemon_v2_pokeathlonstatname_aggregate! +} + +""" +aggregated selection of "pokemon_v2_pokeathlonstat" +""" +type pokemon_v2_pokeathlonstat_aggregate { + aggregate: pokemon_v2_pokeathlonstat_aggregate_fields + nodes: [pokemon_v2_pokeathlonstat!]! +} + +""" +aggregate fields of "pokemon_v2_pokeathlonstat" +""" +type pokemon_v2_pokeathlonstat_aggregate_fields { + avg: pokemon_v2_pokeathlonstat_avg_fields + count(columns: [pokemon_v2_pokeathlonstat_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokeathlonstat_max_fields + min: pokemon_v2_pokeathlonstat_min_fields + stddev: pokemon_v2_pokeathlonstat_stddev_fields + stddev_pop: pokemon_v2_pokeathlonstat_stddev_pop_fields + stddev_samp: pokemon_v2_pokeathlonstat_stddev_samp_fields + sum: pokemon_v2_pokeathlonstat_sum_fields + var_pop: pokemon_v2_pokeathlonstat_var_pop_fields + var_samp: pokemon_v2_pokeathlonstat_var_samp_fields + variance: pokemon_v2_pokeathlonstat_variance_fields +} + +"""aggregate avg on columns""" +type pokemon_v2_pokeathlonstat_avg_fields { + id: Float +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokeathlonstat". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokeathlonstat_bool_exp { + _and: [pokemon_v2_pokeathlonstat_bool_exp!] + _not: pokemon_v2_pokeathlonstat_bool_exp + _or: [pokemon_v2_pokeathlonstat_bool_exp!] + id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_naturepokeathlonstats: pokemon_v2_naturepokeathlonstat_bool_exp + pokemon_v2_naturepokeathlonstats_aggregate: pokemon_v2_naturepokeathlonstat_aggregate_bool_exp + pokemon_v2_pokeathlonstatnames: pokemon_v2_pokeathlonstatname_bool_exp + pokemon_v2_pokeathlonstatnames_aggregate: pokemon_v2_pokeathlonstatname_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokeathlonstat_max_fields { + id: Int + name: String +} + +"""aggregate min on columns""" +type pokemon_v2_pokeathlonstat_min_fields { + id: Int + name: String +} + +"""Ordering options when selecting data from "pokemon_v2_pokeathlonstat".""" +input pokemon_v2_pokeathlonstat_order_by { + id: order_by + name: order_by + pokemon_v2_naturepokeathlonstats_aggregate: pokemon_v2_naturepokeathlonstat_aggregate_order_by + pokemon_v2_pokeathlonstatnames_aggregate: pokemon_v2_pokeathlonstatname_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_pokeathlonstat" +""" +enum pokemon_v2_pokeathlonstat_select_column { + """column name""" + id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokeathlonstat_stddev_fields { + id: Float +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokeathlonstat_stddev_pop_fields { + id: Float +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokeathlonstat_stddev_samp_fields { + id: Float +} + +""" +Streaming cursor of the table "pokemon_v2_pokeathlonstat" +""" +input pokemon_v2_pokeathlonstat_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokeathlonstat_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokeathlonstat_stream_cursor_value_input { + id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_pokeathlonstat_sum_fields { + id: Int +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokeathlonstat_var_pop_fields { + id: Float +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokeathlonstat_var_samp_fields { + id: Float +} + +"""aggregate variance on columns""" +type pokemon_v2_pokeathlonstat_variance_fields { + id: Float +} + +""" +columns and relationships of "pokemon_v2_pokeathlonstatname" +""" +type pokemon_v2_pokeathlonstatname { + id: Int! + language_id: Int + name: String! + pokeathlon_stat_id: Int + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_pokeathlonstat: pokemon_v2_pokeathlonstat +} + +""" +aggregated selection of "pokemon_v2_pokeathlonstatname" +""" +type pokemon_v2_pokeathlonstatname_aggregate { + aggregate: pokemon_v2_pokeathlonstatname_aggregate_fields + nodes: [pokemon_v2_pokeathlonstatname!]! +} + +input pokemon_v2_pokeathlonstatname_aggregate_bool_exp { + count: pokemon_v2_pokeathlonstatname_aggregate_bool_exp_count +} + +input pokemon_v2_pokeathlonstatname_aggregate_bool_exp_count { + arguments: [pokemon_v2_pokeathlonstatname_select_column!] + distinct: Boolean + filter: pokemon_v2_pokeathlonstatname_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_pokeathlonstatname" +""" +type pokemon_v2_pokeathlonstatname_aggregate_fields { + avg: pokemon_v2_pokeathlonstatname_avg_fields + count(columns: [pokemon_v2_pokeathlonstatname_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokeathlonstatname_max_fields + min: pokemon_v2_pokeathlonstatname_min_fields + stddev: pokemon_v2_pokeathlonstatname_stddev_fields + stddev_pop: pokemon_v2_pokeathlonstatname_stddev_pop_fields + stddev_samp: pokemon_v2_pokeathlonstatname_stddev_samp_fields + sum: pokemon_v2_pokeathlonstatname_sum_fields + var_pop: pokemon_v2_pokeathlonstatname_var_pop_fields + var_samp: pokemon_v2_pokeathlonstatname_var_samp_fields + variance: pokemon_v2_pokeathlonstatname_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_pokeathlonstatname" +""" +input pokemon_v2_pokeathlonstatname_aggregate_order_by { + avg: pokemon_v2_pokeathlonstatname_avg_order_by + count: order_by + max: pokemon_v2_pokeathlonstatname_max_order_by + min: pokemon_v2_pokeathlonstatname_min_order_by + stddev: pokemon_v2_pokeathlonstatname_stddev_order_by + stddev_pop: pokemon_v2_pokeathlonstatname_stddev_pop_order_by + stddev_samp: pokemon_v2_pokeathlonstatname_stddev_samp_order_by + sum: pokemon_v2_pokeathlonstatname_sum_order_by + var_pop: pokemon_v2_pokeathlonstatname_var_pop_order_by + var_samp: pokemon_v2_pokeathlonstatname_var_samp_order_by + variance: pokemon_v2_pokeathlonstatname_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_pokeathlonstatname_avg_fields { + id: Float + language_id: Float + pokeathlon_stat_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_pokeathlonstatname" +""" +input pokemon_v2_pokeathlonstatname_avg_order_by { + id: order_by + language_id: order_by + pokeathlon_stat_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokeathlonstatname". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokeathlonstatname_bool_exp { + _and: [pokemon_v2_pokeathlonstatname_bool_exp!] + _not: pokemon_v2_pokeathlonstatname_bool_exp + _or: [pokemon_v2_pokeathlonstatname_bool_exp!] + id: Int_comparison_exp + language_id: Int_comparison_exp + name: String_comparison_exp + pokeathlon_stat_id: Int_comparison_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_pokeathlonstat: pokemon_v2_pokeathlonstat_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokeathlonstatname_max_fields { + id: Int + language_id: Int + name: String + pokeathlon_stat_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_pokeathlonstatname" +""" +input pokemon_v2_pokeathlonstatname_max_order_by { + id: order_by + language_id: order_by + name: order_by + pokeathlon_stat_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_pokeathlonstatname_min_fields { + id: Int + language_id: Int + name: String + pokeathlon_stat_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_pokeathlonstatname" +""" +input pokemon_v2_pokeathlonstatname_min_order_by { + id: order_by + language_id: order_by + name: order_by + pokeathlon_stat_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_pokeathlonstatname". +""" +input pokemon_v2_pokeathlonstatname_order_by { + id: order_by + language_id: order_by + name: order_by + pokeathlon_stat_id: order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_pokeathlonstat: pokemon_v2_pokeathlonstat_order_by +} + +""" +select columns of table "pokemon_v2_pokeathlonstatname" +""" +enum pokemon_v2_pokeathlonstatname_select_column { + """column name""" + id + + """column name""" + language_id + + """column name""" + name + + """column name""" + pokeathlon_stat_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokeathlonstatname_stddev_fields { + id: Float + language_id: Float + pokeathlon_stat_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_pokeathlonstatname" +""" +input pokemon_v2_pokeathlonstatname_stddev_order_by { + id: order_by + language_id: order_by + pokeathlon_stat_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokeathlonstatname_stddev_pop_fields { + id: Float + language_id: Float + pokeathlon_stat_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_pokeathlonstatname" +""" +input pokemon_v2_pokeathlonstatname_stddev_pop_order_by { + id: order_by + language_id: order_by + pokeathlon_stat_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokeathlonstatname_stddev_samp_fields { + id: Float + language_id: Float + pokeathlon_stat_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_pokeathlonstatname" +""" +input pokemon_v2_pokeathlonstatname_stddev_samp_order_by { + id: order_by + language_id: order_by + pokeathlon_stat_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_pokeathlonstatname" +""" +input pokemon_v2_pokeathlonstatname_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokeathlonstatname_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokeathlonstatname_stream_cursor_value_input { + id: Int + language_id: Int + name: String + pokeathlon_stat_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_pokeathlonstatname_sum_fields { + id: Int + language_id: Int + pokeathlon_stat_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_pokeathlonstatname" +""" +input pokemon_v2_pokeathlonstatname_sum_order_by { + id: order_by + language_id: order_by + pokeathlon_stat_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokeathlonstatname_var_pop_fields { + id: Float + language_id: Float + pokeathlon_stat_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_pokeathlonstatname" +""" +input pokemon_v2_pokeathlonstatname_var_pop_order_by { + id: order_by + language_id: order_by + pokeathlon_stat_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokeathlonstatname_var_samp_fields { + id: Float + language_id: Float + pokeathlon_stat_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_pokeathlonstatname" +""" +input pokemon_v2_pokeathlonstatname_var_samp_order_by { + id: order_by + language_id: order_by + pokeathlon_stat_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_pokeathlonstatname_variance_fields { + id: Float + language_id: Float + pokeathlon_stat_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_pokeathlonstatname" +""" +input pokemon_v2_pokeathlonstatname_variance_order_by { + id: order_by + language_id: order_by + pokeathlon_stat_id: order_by +} + +""" +columns and relationships of "pokemon_v2_pokedex" +""" +type pokemon_v2_pokedex { + id: Int! + is_main_series: Boolean! + name: String! + + """An array relationship""" + pokemon_v2_pokedexdescriptions( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokedexdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokedexdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokedexdescription_bool_exp + ): [pokemon_v2_pokedexdescription!]! + + """An aggregate relationship""" + pokemon_v2_pokedexdescriptions_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokedexdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokedexdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokedexdescription_bool_exp + ): pokemon_v2_pokedexdescription_aggregate! + + """An array relationship""" + pokemon_v2_pokedexnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokedexname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokedexname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokedexname_bool_exp + ): [pokemon_v2_pokedexname!]! + + """An aggregate relationship""" + pokemon_v2_pokedexnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokedexname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokedexname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokedexname_bool_exp + ): pokemon_v2_pokedexname_aggregate! + + """An array relationship""" + pokemon_v2_pokedexversiongroups( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokedexversiongroup_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokedexversiongroup_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokedexversiongroup_bool_exp + ): [pokemon_v2_pokedexversiongroup!]! + + """An aggregate relationship""" + pokemon_v2_pokedexversiongroups_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokedexversiongroup_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokedexversiongroup_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokedexversiongroup_bool_exp + ): pokemon_v2_pokedexversiongroup_aggregate! + + """An array relationship""" + pokemon_v2_pokemondexnumbers( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemondexnumber_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemondexnumber_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemondexnumber_bool_exp + ): [pokemon_v2_pokemondexnumber!]! + + """An aggregate relationship""" + pokemon_v2_pokemondexnumbers_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemondexnumber_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemondexnumber_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemondexnumber_bool_exp + ): pokemon_v2_pokemondexnumber_aggregate! + + """An object relationship""" + pokemon_v2_region: pokemon_v2_region + region_id: Int +} + +""" +aggregated selection of "pokemon_v2_pokedex" +""" +type pokemon_v2_pokedex_aggregate { + aggregate: pokemon_v2_pokedex_aggregate_fields + nodes: [pokemon_v2_pokedex!]! +} + +input pokemon_v2_pokedex_aggregate_bool_exp { + bool_and: pokemon_v2_pokedex_aggregate_bool_exp_bool_and + bool_or: pokemon_v2_pokedex_aggregate_bool_exp_bool_or + count: pokemon_v2_pokedex_aggregate_bool_exp_count +} + +input pokemon_v2_pokedex_aggregate_bool_exp_bool_and { + arguments: pokemon_v2_pokedex_select_column_pokemon_v2_pokedex_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: pokemon_v2_pokedex_bool_exp + predicate: Boolean_comparison_exp! +} + +input pokemon_v2_pokedex_aggregate_bool_exp_bool_or { + arguments: pokemon_v2_pokedex_select_column_pokemon_v2_pokedex_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: pokemon_v2_pokedex_bool_exp + predicate: Boolean_comparison_exp! +} + +input pokemon_v2_pokedex_aggregate_bool_exp_count { + arguments: [pokemon_v2_pokedex_select_column!] + distinct: Boolean + filter: pokemon_v2_pokedex_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_pokedex" +""" +type pokemon_v2_pokedex_aggregate_fields { + avg: pokemon_v2_pokedex_avg_fields + count(columns: [pokemon_v2_pokedex_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokedex_max_fields + min: pokemon_v2_pokedex_min_fields + stddev: pokemon_v2_pokedex_stddev_fields + stddev_pop: pokemon_v2_pokedex_stddev_pop_fields + stddev_samp: pokemon_v2_pokedex_stddev_samp_fields + sum: pokemon_v2_pokedex_sum_fields + var_pop: pokemon_v2_pokedex_var_pop_fields + var_samp: pokemon_v2_pokedex_var_samp_fields + variance: pokemon_v2_pokedex_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_pokedex" +""" +input pokemon_v2_pokedex_aggregate_order_by { + avg: pokemon_v2_pokedex_avg_order_by + count: order_by + max: pokemon_v2_pokedex_max_order_by + min: pokemon_v2_pokedex_min_order_by + stddev: pokemon_v2_pokedex_stddev_order_by + stddev_pop: pokemon_v2_pokedex_stddev_pop_order_by + stddev_samp: pokemon_v2_pokedex_stddev_samp_order_by + sum: pokemon_v2_pokedex_sum_order_by + var_pop: pokemon_v2_pokedex_var_pop_order_by + var_samp: pokemon_v2_pokedex_var_samp_order_by + variance: pokemon_v2_pokedex_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_pokedex_avg_fields { + id: Float + region_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_pokedex" +""" +input pokemon_v2_pokedex_avg_order_by { + id: order_by + region_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokedex". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokedex_bool_exp { + _and: [pokemon_v2_pokedex_bool_exp!] + _not: pokemon_v2_pokedex_bool_exp + _or: [pokemon_v2_pokedex_bool_exp!] + id: Int_comparison_exp + is_main_series: Boolean_comparison_exp + name: String_comparison_exp + pokemon_v2_pokedexdescriptions: pokemon_v2_pokedexdescription_bool_exp + pokemon_v2_pokedexdescriptions_aggregate: pokemon_v2_pokedexdescription_aggregate_bool_exp + pokemon_v2_pokedexnames: pokemon_v2_pokedexname_bool_exp + pokemon_v2_pokedexnames_aggregate: pokemon_v2_pokedexname_aggregate_bool_exp + pokemon_v2_pokedexversiongroups: pokemon_v2_pokedexversiongroup_bool_exp + pokemon_v2_pokedexversiongroups_aggregate: pokemon_v2_pokedexversiongroup_aggregate_bool_exp + pokemon_v2_pokemondexnumbers: pokemon_v2_pokemondexnumber_bool_exp + pokemon_v2_pokemondexnumbers_aggregate: pokemon_v2_pokemondexnumber_aggregate_bool_exp + pokemon_v2_region: pokemon_v2_region_bool_exp + region_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokedex_max_fields { + id: Int + name: String + region_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_pokedex" +""" +input pokemon_v2_pokedex_max_order_by { + id: order_by + name: order_by + region_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_pokedex_min_fields { + id: Int + name: String + region_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_pokedex" +""" +input pokemon_v2_pokedex_min_order_by { + id: order_by + name: order_by + region_id: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_pokedex".""" +input pokemon_v2_pokedex_order_by { + id: order_by + is_main_series: order_by + name: order_by + pokemon_v2_pokedexdescriptions_aggregate: pokemon_v2_pokedexdescription_aggregate_order_by + pokemon_v2_pokedexnames_aggregate: pokemon_v2_pokedexname_aggregate_order_by + pokemon_v2_pokedexversiongroups_aggregate: pokemon_v2_pokedexversiongroup_aggregate_order_by + pokemon_v2_pokemondexnumbers_aggregate: pokemon_v2_pokemondexnumber_aggregate_order_by + pokemon_v2_region: pokemon_v2_region_order_by + region_id: order_by +} + +""" +select columns of table "pokemon_v2_pokedex" +""" +enum pokemon_v2_pokedex_select_column { + """column name""" + id + + """column name""" + is_main_series + + """column name""" + name + + """column name""" + region_id +} + +""" +select "pokemon_v2_pokedex_aggregate_bool_exp_bool_and_arguments_columns" columns of table "pokemon_v2_pokedex" +""" +enum pokemon_v2_pokedex_select_column_pokemon_v2_pokedex_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + is_main_series +} + +""" +select "pokemon_v2_pokedex_aggregate_bool_exp_bool_or_arguments_columns" columns of table "pokemon_v2_pokedex" +""" +enum pokemon_v2_pokedex_select_column_pokemon_v2_pokedex_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + is_main_series +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokedex_stddev_fields { + id: Float + region_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_pokedex" +""" +input pokemon_v2_pokedex_stddev_order_by { + id: order_by + region_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokedex_stddev_pop_fields { + id: Float + region_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_pokedex" +""" +input pokemon_v2_pokedex_stddev_pop_order_by { + id: order_by + region_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokedex_stddev_samp_fields { + id: Float + region_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_pokedex" +""" +input pokemon_v2_pokedex_stddev_samp_order_by { + id: order_by + region_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_pokedex" +""" +input pokemon_v2_pokedex_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokedex_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokedex_stream_cursor_value_input { + id: Int + is_main_series: Boolean + name: String + region_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_pokedex_sum_fields { + id: Int + region_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_pokedex" +""" +input pokemon_v2_pokedex_sum_order_by { + id: order_by + region_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokedex_var_pop_fields { + id: Float + region_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_pokedex" +""" +input pokemon_v2_pokedex_var_pop_order_by { + id: order_by + region_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokedex_var_samp_fields { + id: Float + region_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_pokedex" +""" +input pokemon_v2_pokedex_var_samp_order_by { + id: order_by + region_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_pokedex_variance_fields { + id: Float + region_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_pokedex" +""" +input pokemon_v2_pokedex_variance_order_by { + id: order_by + region_id: order_by +} + +""" +columns and relationships of "pokemon_v2_pokedexdescription" +""" +type pokemon_v2_pokedexdescription { + description: String! + id: Int! + language_id: Int + pokedex_id: Int + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_pokedex: pokemon_v2_pokedex +} + +""" +aggregated selection of "pokemon_v2_pokedexdescription" +""" +type pokemon_v2_pokedexdescription_aggregate { + aggregate: pokemon_v2_pokedexdescription_aggregate_fields + nodes: [pokemon_v2_pokedexdescription!]! +} + +input pokemon_v2_pokedexdescription_aggregate_bool_exp { + count: pokemon_v2_pokedexdescription_aggregate_bool_exp_count +} + +input pokemon_v2_pokedexdescription_aggregate_bool_exp_count { + arguments: [pokemon_v2_pokedexdescription_select_column!] + distinct: Boolean + filter: pokemon_v2_pokedexdescription_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_pokedexdescription" +""" +type pokemon_v2_pokedexdescription_aggregate_fields { + avg: pokemon_v2_pokedexdescription_avg_fields + count(columns: [pokemon_v2_pokedexdescription_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokedexdescription_max_fields + min: pokemon_v2_pokedexdescription_min_fields + stddev: pokemon_v2_pokedexdescription_stddev_fields + stddev_pop: pokemon_v2_pokedexdescription_stddev_pop_fields + stddev_samp: pokemon_v2_pokedexdescription_stddev_samp_fields + sum: pokemon_v2_pokedexdescription_sum_fields + var_pop: pokemon_v2_pokedexdescription_var_pop_fields + var_samp: pokemon_v2_pokedexdescription_var_samp_fields + variance: pokemon_v2_pokedexdescription_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_pokedexdescription" +""" +input pokemon_v2_pokedexdescription_aggregate_order_by { + avg: pokemon_v2_pokedexdescription_avg_order_by + count: order_by + max: pokemon_v2_pokedexdescription_max_order_by + min: pokemon_v2_pokedexdescription_min_order_by + stddev: pokemon_v2_pokedexdescription_stddev_order_by + stddev_pop: pokemon_v2_pokedexdescription_stddev_pop_order_by + stddev_samp: pokemon_v2_pokedexdescription_stddev_samp_order_by + sum: pokemon_v2_pokedexdescription_sum_order_by + var_pop: pokemon_v2_pokedexdescription_var_pop_order_by + var_samp: pokemon_v2_pokedexdescription_var_samp_order_by + variance: pokemon_v2_pokedexdescription_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_pokedexdescription_avg_fields { + id: Float + language_id: Float + pokedex_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_pokedexdescription" +""" +input pokemon_v2_pokedexdescription_avg_order_by { + id: order_by + language_id: order_by + pokedex_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokedexdescription". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokedexdescription_bool_exp { + _and: [pokemon_v2_pokedexdescription_bool_exp!] + _not: pokemon_v2_pokedexdescription_bool_exp + _or: [pokemon_v2_pokedexdescription_bool_exp!] + description: String_comparison_exp + id: Int_comparison_exp + language_id: Int_comparison_exp + pokedex_id: Int_comparison_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_pokedex: pokemon_v2_pokedex_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokedexdescription_max_fields { + description: String + id: Int + language_id: Int + pokedex_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_pokedexdescription" +""" +input pokemon_v2_pokedexdescription_max_order_by { + description: order_by + id: order_by + language_id: order_by + pokedex_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_pokedexdescription_min_fields { + description: String + id: Int + language_id: Int + pokedex_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_pokedexdescription" +""" +input pokemon_v2_pokedexdescription_min_order_by { + description: order_by + id: order_by + language_id: order_by + pokedex_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_pokedexdescription". +""" +input pokemon_v2_pokedexdescription_order_by { + description: order_by + id: order_by + language_id: order_by + pokedex_id: order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_pokedex: pokemon_v2_pokedex_order_by +} + +""" +select columns of table "pokemon_v2_pokedexdescription" +""" +enum pokemon_v2_pokedexdescription_select_column { + """column name""" + description + + """column name""" + id + + """column name""" + language_id + + """column name""" + pokedex_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokedexdescription_stddev_fields { + id: Float + language_id: Float + pokedex_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_pokedexdescription" +""" +input pokemon_v2_pokedexdescription_stddev_order_by { + id: order_by + language_id: order_by + pokedex_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokedexdescription_stddev_pop_fields { + id: Float + language_id: Float + pokedex_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_pokedexdescription" +""" +input pokemon_v2_pokedexdescription_stddev_pop_order_by { + id: order_by + language_id: order_by + pokedex_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokedexdescription_stddev_samp_fields { + id: Float + language_id: Float + pokedex_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_pokedexdescription" +""" +input pokemon_v2_pokedexdescription_stddev_samp_order_by { + id: order_by + language_id: order_by + pokedex_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_pokedexdescription" +""" +input pokemon_v2_pokedexdescription_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokedexdescription_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokedexdescription_stream_cursor_value_input { + description: String + id: Int + language_id: Int + pokedex_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_pokedexdescription_sum_fields { + id: Int + language_id: Int + pokedex_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_pokedexdescription" +""" +input pokemon_v2_pokedexdescription_sum_order_by { + id: order_by + language_id: order_by + pokedex_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokedexdescription_var_pop_fields { + id: Float + language_id: Float + pokedex_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_pokedexdescription" +""" +input pokemon_v2_pokedexdescription_var_pop_order_by { + id: order_by + language_id: order_by + pokedex_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokedexdescription_var_samp_fields { + id: Float + language_id: Float + pokedex_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_pokedexdescription" +""" +input pokemon_v2_pokedexdescription_var_samp_order_by { + id: order_by + language_id: order_by + pokedex_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_pokedexdescription_variance_fields { + id: Float + language_id: Float + pokedex_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_pokedexdescription" +""" +input pokemon_v2_pokedexdescription_variance_order_by { + id: order_by + language_id: order_by + pokedex_id: order_by +} + +""" +columns and relationships of "pokemon_v2_pokedexname" +""" +type pokemon_v2_pokedexname { + id: Int! + language_id: Int + name: String! + pokedex_id: Int + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_pokedex: pokemon_v2_pokedex +} + +""" +aggregated selection of "pokemon_v2_pokedexname" +""" +type pokemon_v2_pokedexname_aggregate { + aggregate: pokemon_v2_pokedexname_aggregate_fields + nodes: [pokemon_v2_pokedexname!]! +} + +input pokemon_v2_pokedexname_aggregate_bool_exp { + count: pokemon_v2_pokedexname_aggregate_bool_exp_count +} + +input pokemon_v2_pokedexname_aggregate_bool_exp_count { + arguments: [pokemon_v2_pokedexname_select_column!] + distinct: Boolean + filter: pokemon_v2_pokedexname_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_pokedexname" +""" +type pokemon_v2_pokedexname_aggregate_fields { + avg: pokemon_v2_pokedexname_avg_fields + count(columns: [pokemon_v2_pokedexname_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokedexname_max_fields + min: pokemon_v2_pokedexname_min_fields + stddev: pokemon_v2_pokedexname_stddev_fields + stddev_pop: pokemon_v2_pokedexname_stddev_pop_fields + stddev_samp: pokemon_v2_pokedexname_stddev_samp_fields + sum: pokemon_v2_pokedexname_sum_fields + var_pop: pokemon_v2_pokedexname_var_pop_fields + var_samp: pokemon_v2_pokedexname_var_samp_fields + variance: pokemon_v2_pokedexname_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_pokedexname" +""" +input pokemon_v2_pokedexname_aggregate_order_by { + avg: pokemon_v2_pokedexname_avg_order_by + count: order_by + max: pokemon_v2_pokedexname_max_order_by + min: pokemon_v2_pokedexname_min_order_by + stddev: pokemon_v2_pokedexname_stddev_order_by + stddev_pop: pokemon_v2_pokedexname_stddev_pop_order_by + stddev_samp: pokemon_v2_pokedexname_stddev_samp_order_by + sum: pokemon_v2_pokedexname_sum_order_by + var_pop: pokemon_v2_pokedexname_var_pop_order_by + var_samp: pokemon_v2_pokedexname_var_samp_order_by + variance: pokemon_v2_pokedexname_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_pokedexname_avg_fields { + id: Float + language_id: Float + pokedex_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_pokedexname" +""" +input pokemon_v2_pokedexname_avg_order_by { + id: order_by + language_id: order_by + pokedex_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokedexname". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokedexname_bool_exp { + _and: [pokemon_v2_pokedexname_bool_exp!] + _not: pokemon_v2_pokedexname_bool_exp + _or: [pokemon_v2_pokedexname_bool_exp!] + id: Int_comparison_exp + language_id: Int_comparison_exp + name: String_comparison_exp + pokedex_id: Int_comparison_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_pokedex: pokemon_v2_pokedex_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokedexname_max_fields { + id: Int + language_id: Int + name: String + pokedex_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_pokedexname" +""" +input pokemon_v2_pokedexname_max_order_by { + id: order_by + language_id: order_by + name: order_by + pokedex_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_pokedexname_min_fields { + id: Int + language_id: Int + name: String + pokedex_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_pokedexname" +""" +input pokemon_v2_pokedexname_min_order_by { + id: order_by + language_id: order_by + name: order_by + pokedex_id: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_pokedexname".""" +input pokemon_v2_pokedexname_order_by { + id: order_by + language_id: order_by + name: order_by + pokedex_id: order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_pokedex: pokemon_v2_pokedex_order_by +} + +""" +select columns of table "pokemon_v2_pokedexname" +""" +enum pokemon_v2_pokedexname_select_column { + """column name""" + id + + """column name""" + language_id + + """column name""" + name + + """column name""" + pokedex_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokedexname_stddev_fields { + id: Float + language_id: Float + pokedex_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_pokedexname" +""" +input pokemon_v2_pokedexname_stddev_order_by { + id: order_by + language_id: order_by + pokedex_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokedexname_stddev_pop_fields { + id: Float + language_id: Float + pokedex_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_pokedexname" +""" +input pokemon_v2_pokedexname_stddev_pop_order_by { + id: order_by + language_id: order_by + pokedex_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokedexname_stddev_samp_fields { + id: Float + language_id: Float + pokedex_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_pokedexname" +""" +input pokemon_v2_pokedexname_stddev_samp_order_by { + id: order_by + language_id: order_by + pokedex_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_pokedexname" +""" +input pokemon_v2_pokedexname_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokedexname_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokedexname_stream_cursor_value_input { + id: Int + language_id: Int + name: String + pokedex_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_pokedexname_sum_fields { + id: Int + language_id: Int + pokedex_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_pokedexname" +""" +input pokemon_v2_pokedexname_sum_order_by { + id: order_by + language_id: order_by + pokedex_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokedexname_var_pop_fields { + id: Float + language_id: Float + pokedex_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_pokedexname" +""" +input pokemon_v2_pokedexname_var_pop_order_by { + id: order_by + language_id: order_by + pokedex_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokedexname_var_samp_fields { + id: Float + language_id: Float + pokedex_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_pokedexname" +""" +input pokemon_v2_pokedexname_var_samp_order_by { + id: order_by + language_id: order_by + pokedex_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_pokedexname_variance_fields { + id: Float + language_id: Float + pokedex_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_pokedexname" +""" +input pokemon_v2_pokedexname_variance_order_by { + id: order_by + language_id: order_by + pokedex_id: order_by +} + +""" +columns and relationships of "pokemon_v2_pokedexversiongroup" +""" +type pokemon_v2_pokedexversiongroup { + id: Int! + pokedex_id: Int + + """An object relationship""" + pokemon_v2_pokedex: pokemon_v2_pokedex + + """An object relationship""" + pokemon_v2_versiongroup: pokemon_v2_versiongroup + version_group_id: Int +} + +""" +aggregated selection of "pokemon_v2_pokedexversiongroup" +""" +type pokemon_v2_pokedexversiongroup_aggregate { + aggregate: pokemon_v2_pokedexversiongroup_aggregate_fields + nodes: [pokemon_v2_pokedexversiongroup!]! +} + +input pokemon_v2_pokedexversiongroup_aggregate_bool_exp { + count: pokemon_v2_pokedexversiongroup_aggregate_bool_exp_count +} + +input pokemon_v2_pokedexversiongroup_aggregate_bool_exp_count { + arguments: [pokemon_v2_pokedexversiongroup_select_column!] + distinct: Boolean + filter: pokemon_v2_pokedexversiongroup_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_pokedexversiongroup" +""" +type pokemon_v2_pokedexversiongroup_aggregate_fields { + avg: pokemon_v2_pokedexversiongroup_avg_fields + count(columns: [pokemon_v2_pokedexversiongroup_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokedexversiongroup_max_fields + min: pokemon_v2_pokedexversiongroup_min_fields + stddev: pokemon_v2_pokedexversiongroup_stddev_fields + stddev_pop: pokemon_v2_pokedexversiongroup_stddev_pop_fields + stddev_samp: pokemon_v2_pokedexversiongroup_stddev_samp_fields + sum: pokemon_v2_pokedexversiongroup_sum_fields + var_pop: pokemon_v2_pokedexversiongroup_var_pop_fields + var_samp: pokemon_v2_pokedexversiongroup_var_samp_fields + variance: pokemon_v2_pokedexversiongroup_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_pokedexversiongroup" +""" +input pokemon_v2_pokedexversiongroup_aggregate_order_by { + avg: pokemon_v2_pokedexversiongroup_avg_order_by + count: order_by + max: pokemon_v2_pokedexversiongroup_max_order_by + min: pokemon_v2_pokedexversiongroup_min_order_by + stddev: pokemon_v2_pokedexversiongroup_stddev_order_by + stddev_pop: pokemon_v2_pokedexversiongroup_stddev_pop_order_by + stddev_samp: pokemon_v2_pokedexversiongroup_stddev_samp_order_by + sum: pokemon_v2_pokedexversiongroup_sum_order_by + var_pop: pokemon_v2_pokedexversiongroup_var_pop_order_by + var_samp: pokemon_v2_pokedexversiongroup_var_samp_order_by + variance: pokemon_v2_pokedexversiongroup_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_pokedexversiongroup_avg_fields { + id: Float + pokedex_id: Float + version_group_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_pokedexversiongroup" +""" +input pokemon_v2_pokedexversiongroup_avg_order_by { + id: order_by + pokedex_id: order_by + version_group_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokedexversiongroup". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokedexversiongroup_bool_exp { + _and: [pokemon_v2_pokedexversiongroup_bool_exp!] + _not: pokemon_v2_pokedexversiongroup_bool_exp + _or: [pokemon_v2_pokedexversiongroup_bool_exp!] + id: Int_comparison_exp + pokedex_id: Int_comparison_exp + pokemon_v2_pokedex: pokemon_v2_pokedex_bool_exp + pokemon_v2_versiongroup: pokemon_v2_versiongroup_bool_exp + version_group_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokedexversiongroup_max_fields { + id: Int + pokedex_id: Int + version_group_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_pokedexversiongroup" +""" +input pokemon_v2_pokedexversiongroup_max_order_by { + id: order_by + pokedex_id: order_by + version_group_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_pokedexversiongroup_min_fields { + id: Int + pokedex_id: Int + version_group_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_pokedexversiongroup" +""" +input pokemon_v2_pokedexversiongroup_min_order_by { + id: order_by + pokedex_id: order_by + version_group_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_pokedexversiongroup". +""" +input pokemon_v2_pokedexversiongroup_order_by { + id: order_by + pokedex_id: order_by + pokemon_v2_pokedex: pokemon_v2_pokedex_order_by + pokemon_v2_versiongroup: pokemon_v2_versiongroup_order_by + version_group_id: order_by +} + +""" +select columns of table "pokemon_v2_pokedexversiongroup" +""" +enum pokemon_v2_pokedexversiongroup_select_column { + """column name""" + id + + """column name""" + pokedex_id + + """column name""" + version_group_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokedexversiongroup_stddev_fields { + id: Float + pokedex_id: Float + version_group_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_pokedexversiongroup" +""" +input pokemon_v2_pokedexversiongroup_stddev_order_by { + id: order_by + pokedex_id: order_by + version_group_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokedexversiongroup_stddev_pop_fields { + id: Float + pokedex_id: Float + version_group_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_pokedexversiongroup" +""" +input pokemon_v2_pokedexversiongroup_stddev_pop_order_by { + id: order_by + pokedex_id: order_by + version_group_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokedexversiongroup_stddev_samp_fields { + id: Float + pokedex_id: Float + version_group_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_pokedexversiongroup" +""" +input pokemon_v2_pokedexversiongroup_stddev_samp_order_by { + id: order_by + pokedex_id: order_by + version_group_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_pokedexversiongroup" +""" +input pokemon_v2_pokedexversiongroup_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokedexversiongroup_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokedexversiongroup_stream_cursor_value_input { + id: Int + pokedex_id: Int + version_group_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_pokedexversiongroup_sum_fields { + id: Int + pokedex_id: Int + version_group_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_pokedexversiongroup" +""" +input pokemon_v2_pokedexversiongroup_sum_order_by { + id: order_by + pokedex_id: order_by + version_group_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokedexversiongroup_var_pop_fields { + id: Float + pokedex_id: Float + version_group_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_pokedexversiongroup" +""" +input pokemon_v2_pokedexversiongroup_var_pop_order_by { + id: order_by + pokedex_id: order_by + version_group_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokedexversiongroup_var_samp_fields { + id: Float + pokedex_id: Float + version_group_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_pokedexversiongroup" +""" +input pokemon_v2_pokedexversiongroup_var_samp_order_by { + id: order_by + pokedex_id: order_by + version_group_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_pokedexversiongroup_variance_fields { + id: Float + pokedex_id: Float + version_group_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_pokedexversiongroup" +""" +input pokemon_v2_pokedexversiongroup_variance_order_by { + id: order_by + pokedex_id: order_by + version_group_id: order_by +} + +""" +columns and relationships of "pokemon_v2_pokemon" +""" +type pokemon_v2_pokemon { + base_experience: Int + height: Int + id: Int! + is_default: Boolean! + name: String! + order: Int + pokemon_species_id: Int + + """An array relationship""" + pokemon_v2_encounters( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounter_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounter_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounter_bool_exp + ): [pokemon_v2_encounter!]! + + """An aggregate relationship""" + pokemon_v2_encounters_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounter_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounter_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounter_bool_exp + ): pokemon_v2_encounter_aggregate! + + """An array relationship""" + pokemon_v2_pokemonabilities( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonability_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonability_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonability_bool_exp + ): [pokemon_v2_pokemonability!]! + + """An aggregate relationship""" + pokemon_v2_pokemonabilities_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonability_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonability_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonability_bool_exp + ): pokemon_v2_pokemonability_aggregate! + + """An array relationship""" + pokemon_v2_pokemonabilitypasts( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonabilitypast_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonabilitypast_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonabilitypast_bool_exp + ): [pokemon_v2_pokemonabilitypast!]! + + """An aggregate relationship""" + pokemon_v2_pokemonabilitypasts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonabilitypast_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonabilitypast_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonabilitypast_bool_exp + ): pokemon_v2_pokemonabilitypast_aggregate! + + """An array relationship""" + pokemon_v2_pokemoncries( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemoncries_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemoncries_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemoncries_bool_exp + ): [pokemon_v2_pokemoncries!]! + + """An aggregate relationship""" + pokemon_v2_pokemoncries_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemoncries_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemoncries_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemoncries_bool_exp + ): pokemon_v2_pokemoncries_aggregate! + + """An array relationship""" + pokemon_v2_pokemonforms( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonform_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonform_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonform_bool_exp + ): [pokemon_v2_pokemonform!]! + + """An aggregate relationship""" + pokemon_v2_pokemonforms_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonform_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonform_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonform_bool_exp + ): pokemon_v2_pokemonform_aggregate! + + """An array relationship""" + pokemon_v2_pokemongameindices( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemongameindex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemongameindex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemongameindex_bool_exp + ): [pokemon_v2_pokemongameindex!]! + + """An aggregate relationship""" + pokemon_v2_pokemongameindices_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemongameindex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemongameindex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemongameindex_bool_exp + ): pokemon_v2_pokemongameindex_aggregate! + + """An array relationship""" + pokemon_v2_pokemonitems( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonitem_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonitem_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonitem_bool_exp + ): [pokemon_v2_pokemonitem!]! + + """An aggregate relationship""" + pokemon_v2_pokemonitems_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonitem_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonitem_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonitem_bool_exp + ): pokemon_v2_pokemonitem_aggregate! + + """An array relationship""" + pokemon_v2_pokemonmoves( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonmove_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonmove_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonmove_bool_exp + ): [pokemon_v2_pokemonmove!]! + + """An aggregate relationship""" + pokemon_v2_pokemonmoves_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonmove_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonmove_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonmove_bool_exp + ): pokemon_v2_pokemonmove_aggregate! + + """An object relationship""" + pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies + + """An array relationship""" + pokemon_v2_pokemonsprites( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonsprites_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonsprites_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonsprites_bool_exp + ): [pokemon_v2_pokemonsprites!]! + + """An aggregate relationship""" + pokemon_v2_pokemonsprites_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonsprites_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonsprites_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonsprites_bool_exp + ): pokemon_v2_pokemonsprites_aggregate! + + """An array relationship""" + pokemon_v2_pokemonstats( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonstat_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonstat_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonstat_bool_exp + ): [pokemon_v2_pokemonstat!]! + + """An aggregate relationship""" + pokemon_v2_pokemonstats_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonstat_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonstat_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonstat_bool_exp + ): pokemon_v2_pokemonstat_aggregate! + + """An array relationship""" + pokemon_v2_pokemontypepasts( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemontypepast_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemontypepast_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemontypepast_bool_exp + ): [pokemon_v2_pokemontypepast!]! + + """An aggregate relationship""" + pokemon_v2_pokemontypepasts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemontypepast_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemontypepast_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemontypepast_bool_exp + ): pokemon_v2_pokemontypepast_aggregate! + + """An array relationship""" + pokemon_v2_pokemontypes( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemontype_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemontype_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemontype_bool_exp + ): [pokemon_v2_pokemontype!]! + + """An aggregate relationship""" + pokemon_v2_pokemontypes_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemontype_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemontype_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemontype_bool_exp + ): pokemon_v2_pokemontype_aggregate! + weight: Int +} + +""" +aggregated selection of "pokemon_v2_pokemon" +""" +type pokemon_v2_pokemon_aggregate { + aggregate: pokemon_v2_pokemon_aggregate_fields + nodes: [pokemon_v2_pokemon!]! +} + +input pokemon_v2_pokemon_aggregate_bool_exp { + bool_and: pokemon_v2_pokemon_aggregate_bool_exp_bool_and + bool_or: pokemon_v2_pokemon_aggregate_bool_exp_bool_or + count: pokemon_v2_pokemon_aggregate_bool_exp_count +} + +input pokemon_v2_pokemon_aggregate_bool_exp_bool_and { + arguments: pokemon_v2_pokemon_select_column_pokemon_v2_pokemon_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: pokemon_v2_pokemon_bool_exp + predicate: Boolean_comparison_exp! +} + +input pokemon_v2_pokemon_aggregate_bool_exp_bool_or { + arguments: pokemon_v2_pokemon_select_column_pokemon_v2_pokemon_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: pokemon_v2_pokemon_bool_exp + predicate: Boolean_comparison_exp! +} + +input pokemon_v2_pokemon_aggregate_bool_exp_count { + arguments: [pokemon_v2_pokemon_select_column!] + distinct: Boolean + filter: pokemon_v2_pokemon_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_pokemon" +""" +type pokemon_v2_pokemon_aggregate_fields { + avg: pokemon_v2_pokemon_avg_fields + count(columns: [pokemon_v2_pokemon_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokemon_max_fields + min: pokemon_v2_pokemon_min_fields + stddev: pokemon_v2_pokemon_stddev_fields + stddev_pop: pokemon_v2_pokemon_stddev_pop_fields + stddev_samp: pokemon_v2_pokemon_stddev_samp_fields + sum: pokemon_v2_pokemon_sum_fields + var_pop: pokemon_v2_pokemon_var_pop_fields + var_samp: pokemon_v2_pokemon_var_samp_fields + variance: pokemon_v2_pokemon_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_pokemon" +""" +input pokemon_v2_pokemon_aggregate_order_by { + avg: pokemon_v2_pokemon_avg_order_by + count: order_by + max: pokemon_v2_pokemon_max_order_by + min: pokemon_v2_pokemon_min_order_by + stddev: pokemon_v2_pokemon_stddev_order_by + stddev_pop: pokemon_v2_pokemon_stddev_pop_order_by + stddev_samp: pokemon_v2_pokemon_stddev_samp_order_by + sum: pokemon_v2_pokemon_sum_order_by + var_pop: pokemon_v2_pokemon_var_pop_order_by + var_samp: pokemon_v2_pokemon_var_samp_order_by + variance: pokemon_v2_pokemon_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_pokemon_avg_fields { + base_experience: Float + height: Float + id: Float + order: Float + pokemon_species_id: Float + weight: Float +} + +""" +order by avg() on columns of table "pokemon_v2_pokemon" +""" +input pokemon_v2_pokemon_avg_order_by { + base_experience: order_by + height: order_by + id: order_by + order: order_by + pokemon_species_id: order_by + weight: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokemon". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokemon_bool_exp { + _and: [pokemon_v2_pokemon_bool_exp!] + _not: pokemon_v2_pokemon_bool_exp + _or: [pokemon_v2_pokemon_bool_exp!] + base_experience: Int_comparison_exp + height: Int_comparison_exp + id: Int_comparison_exp + is_default: Boolean_comparison_exp + name: String_comparison_exp + order: Int_comparison_exp + pokemon_species_id: Int_comparison_exp + pokemon_v2_encounters: pokemon_v2_encounter_bool_exp + pokemon_v2_encounters_aggregate: pokemon_v2_encounter_aggregate_bool_exp + pokemon_v2_pokemonabilities: pokemon_v2_pokemonability_bool_exp + pokemon_v2_pokemonabilities_aggregate: pokemon_v2_pokemonability_aggregate_bool_exp + pokemon_v2_pokemonabilitypasts: pokemon_v2_pokemonabilitypast_bool_exp + pokemon_v2_pokemonabilitypasts_aggregate: pokemon_v2_pokemonabilitypast_aggregate_bool_exp + pokemon_v2_pokemoncries: pokemon_v2_pokemoncries_bool_exp + pokemon_v2_pokemoncries_aggregate: pokemon_v2_pokemoncries_aggregate_bool_exp + pokemon_v2_pokemonforms: pokemon_v2_pokemonform_bool_exp + pokemon_v2_pokemonforms_aggregate: pokemon_v2_pokemonform_aggregate_bool_exp + pokemon_v2_pokemongameindices: pokemon_v2_pokemongameindex_bool_exp + pokemon_v2_pokemongameindices_aggregate: pokemon_v2_pokemongameindex_aggregate_bool_exp + pokemon_v2_pokemonitems: pokemon_v2_pokemonitem_bool_exp + pokemon_v2_pokemonitems_aggregate: pokemon_v2_pokemonitem_aggregate_bool_exp + pokemon_v2_pokemonmoves: pokemon_v2_pokemonmove_bool_exp + pokemon_v2_pokemonmoves_aggregate: pokemon_v2_pokemonmove_aggregate_bool_exp + pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_bool_exp + pokemon_v2_pokemonsprites: pokemon_v2_pokemonsprites_bool_exp + pokemon_v2_pokemonsprites_aggregate: pokemon_v2_pokemonsprites_aggregate_bool_exp + pokemon_v2_pokemonstats: pokemon_v2_pokemonstat_bool_exp + pokemon_v2_pokemonstats_aggregate: pokemon_v2_pokemonstat_aggregate_bool_exp + pokemon_v2_pokemontypepasts: pokemon_v2_pokemontypepast_bool_exp + pokemon_v2_pokemontypepasts_aggregate: pokemon_v2_pokemontypepast_aggregate_bool_exp + pokemon_v2_pokemontypes: pokemon_v2_pokemontype_bool_exp + pokemon_v2_pokemontypes_aggregate: pokemon_v2_pokemontype_aggregate_bool_exp + weight: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokemon_max_fields { + base_experience: Int + height: Int + id: Int + name: String + order: Int + pokemon_species_id: Int + weight: Int +} + +""" +order by max() on columns of table "pokemon_v2_pokemon" +""" +input pokemon_v2_pokemon_max_order_by { + base_experience: order_by + height: order_by + id: order_by + name: order_by + order: order_by + pokemon_species_id: order_by + weight: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_pokemon_min_fields { + base_experience: Int + height: Int + id: Int + name: String + order: Int + pokemon_species_id: Int + weight: Int +} + +""" +order by min() on columns of table "pokemon_v2_pokemon" +""" +input pokemon_v2_pokemon_min_order_by { + base_experience: order_by + height: order_by + id: order_by + name: order_by + order: order_by + pokemon_species_id: order_by + weight: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_pokemon".""" +input pokemon_v2_pokemon_order_by { + base_experience: order_by + height: order_by + id: order_by + is_default: order_by + name: order_by + order: order_by + pokemon_species_id: order_by + pokemon_v2_encounters_aggregate: pokemon_v2_encounter_aggregate_order_by + pokemon_v2_pokemonabilities_aggregate: pokemon_v2_pokemonability_aggregate_order_by + pokemon_v2_pokemonabilitypasts_aggregate: pokemon_v2_pokemonabilitypast_aggregate_order_by + pokemon_v2_pokemoncries_aggregate: pokemon_v2_pokemoncries_aggregate_order_by + pokemon_v2_pokemonforms_aggregate: pokemon_v2_pokemonform_aggregate_order_by + pokemon_v2_pokemongameindices_aggregate: pokemon_v2_pokemongameindex_aggregate_order_by + pokemon_v2_pokemonitems_aggregate: pokemon_v2_pokemonitem_aggregate_order_by + pokemon_v2_pokemonmoves_aggregate: pokemon_v2_pokemonmove_aggregate_order_by + pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_order_by + pokemon_v2_pokemonsprites_aggregate: pokemon_v2_pokemonsprites_aggregate_order_by + pokemon_v2_pokemonstats_aggregate: pokemon_v2_pokemonstat_aggregate_order_by + pokemon_v2_pokemontypepasts_aggregate: pokemon_v2_pokemontypepast_aggregate_order_by + pokemon_v2_pokemontypes_aggregate: pokemon_v2_pokemontype_aggregate_order_by + weight: order_by +} + +""" +select columns of table "pokemon_v2_pokemon" +""" +enum pokemon_v2_pokemon_select_column { + """column name""" + base_experience + + """column name""" + height + + """column name""" + id + + """column name""" + is_default + + """column name""" + name + + """column name""" + order + + """column name""" + pokemon_species_id + + """column name""" + weight +} + +""" +select "pokemon_v2_pokemon_aggregate_bool_exp_bool_and_arguments_columns" columns of table "pokemon_v2_pokemon" +""" +enum pokemon_v2_pokemon_select_column_pokemon_v2_pokemon_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + is_default +} + +""" +select "pokemon_v2_pokemon_aggregate_bool_exp_bool_or_arguments_columns" columns of table "pokemon_v2_pokemon" +""" +enum pokemon_v2_pokemon_select_column_pokemon_v2_pokemon_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + is_default +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokemon_stddev_fields { + base_experience: Float + height: Float + id: Float + order: Float + pokemon_species_id: Float + weight: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_pokemon" +""" +input pokemon_v2_pokemon_stddev_order_by { + base_experience: order_by + height: order_by + id: order_by + order: order_by + pokemon_species_id: order_by + weight: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokemon_stddev_pop_fields { + base_experience: Float + height: Float + id: Float + order: Float + pokemon_species_id: Float + weight: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_pokemon" +""" +input pokemon_v2_pokemon_stddev_pop_order_by { + base_experience: order_by + height: order_by + id: order_by + order: order_by + pokemon_species_id: order_by + weight: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokemon_stddev_samp_fields { + base_experience: Float + height: Float + id: Float + order: Float + pokemon_species_id: Float + weight: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_pokemon" +""" +input pokemon_v2_pokemon_stddev_samp_order_by { + base_experience: order_by + height: order_by + id: order_by + order: order_by + pokemon_species_id: order_by + weight: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_pokemon" +""" +input pokemon_v2_pokemon_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokemon_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokemon_stream_cursor_value_input { + base_experience: Int + height: Int + id: Int + is_default: Boolean + name: String + order: Int + pokemon_species_id: Int + weight: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_pokemon_sum_fields { + base_experience: Int + height: Int + id: Int + order: Int + pokemon_species_id: Int + weight: Int +} + +""" +order by sum() on columns of table "pokemon_v2_pokemon" +""" +input pokemon_v2_pokemon_sum_order_by { + base_experience: order_by + height: order_by + id: order_by + order: order_by + pokemon_species_id: order_by + weight: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokemon_var_pop_fields { + base_experience: Float + height: Float + id: Float + order: Float + pokemon_species_id: Float + weight: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_pokemon" +""" +input pokemon_v2_pokemon_var_pop_order_by { + base_experience: order_by + height: order_by + id: order_by + order: order_by + pokemon_species_id: order_by + weight: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokemon_var_samp_fields { + base_experience: Float + height: Float + id: Float + order: Float + pokemon_species_id: Float + weight: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_pokemon" +""" +input pokemon_v2_pokemon_var_samp_order_by { + base_experience: order_by + height: order_by + id: order_by + order: order_by + pokemon_species_id: order_by + weight: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_pokemon_variance_fields { + base_experience: Float + height: Float + id: Float + order: Float + pokemon_species_id: Float + weight: Float +} + +""" +order by variance() on columns of table "pokemon_v2_pokemon" +""" +input pokemon_v2_pokemon_variance_order_by { + base_experience: order_by + height: order_by + id: order_by + order: order_by + pokemon_species_id: order_by + weight: order_by +} + +""" +columns and relationships of "pokemon_v2_pokemonability" +""" +type pokemon_v2_pokemonability { + ability_id: Int + id: Int! + is_hidden: Boolean! + pokemon_id: Int + + """An object relationship""" + pokemon_v2_ability: pokemon_v2_ability + + """An object relationship""" + pokemon_v2_pokemon: pokemon_v2_pokemon + slot: Int! +} + +""" +aggregated selection of "pokemon_v2_pokemonability" +""" +type pokemon_v2_pokemonability_aggregate { + aggregate: pokemon_v2_pokemonability_aggregate_fields + nodes: [pokemon_v2_pokemonability!]! +} + +input pokemon_v2_pokemonability_aggregate_bool_exp { + bool_and: pokemon_v2_pokemonability_aggregate_bool_exp_bool_and + bool_or: pokemon_v2_pokemonability_aggregate_bool_exp_bool_or + count: pokemon_v2_pokemonability_aggregate_bool_exp_count +} + +input pokemon_v2_pokemonability_aggregate_bool_exp_bool_and { + arguments: pokemon_v2_pokemonability_select_column_pokemon_v2_pokemonability_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: pokemon_v2_pokemonability_bool_exp + predicate: Boolean_comparison_exp! +} + +input pokemon_v2_pokemonability_aggregate_bool_exp_bool_or { + arguments: pokemon_v2_pokemonability_select_column_pokemon_v2_pokemonability_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: pokemon_v2_pokemonability_bool_exp + predicate: Boolean_comparison_exp! +} + +input pokemon_v2_pokemonability_aggregate_bool_exp_count { + arguments: [pokemon_v2_pokemonability_select_column!] + distinct: Boolean + filter: pokemon_v2_pokemonability_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_pokemonability" +""" +type pokemon_v2_pokemonability_aggregate_fields { + avg: pokemon_v2_pokemonability_avg_fields + count(columns: [pokemon_v2_pokemonability_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokemonability_max_fields + min: pokemon_v2_pokemonability_min_fields + stddev: pokemon_v2_pokemonability_stddev_fields + stddev_pop: pokemon_v2_pokemonability_stddev_pop_fields + stddev_samp: pokemon_v2_pokemonability_stddev_samp_fields + sum: pokemon_v2_pokemonability_sum_fields + var_pop: pokemon_v2_pokemonability_var_pop_fields + var_samp: pokemon_v2_pokemonability_var_samp_fields + variance: pokemon_v2_pokemonability_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_pokemonability" +""" +input pokemon_v2_pokemonability_aggregate_order_by { + avg: pokemon_v2_pokemonability_avg_order_by + count: order_by + max: pokemon_v2_pokemonability_max_order_by + min: pokemon_v2_pokemonability_min_order_by + stddev: pokemon_v2_pokemonability_stddev_order_by + stddev_pop: pokemon_v2_pokemonability_stddev_pop_order_by + stddev_samp: pokemon_v2_pokemonability_stddev_samp_order_by + sum: pokemon_v2_pokemonability_sum_order_by + var_pop: pokemon_v2_pokemonability_var_pop_order_by + var_samp: pokemon_v2_pokemonability_var_samp_order_by + variance: pokemon_v2_pokemonability_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_pokemonability_avg_fields { + ability_id: Float + id: Float + pokemon_id: Float + slot: Float +} + +""" +order by avg() on columns of table "pokemon_v2_pokemonability" +""" +input pokemon_v2_pokemonability_avg_order_by { + ability_id: order_by + id: order_by + pokemon_id: order_by + slot: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokemonability". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokemonability_bool_exp { + _and: [pokemon_v2_pokemonability_bool_exp!] + _not: pokemon_v2_pokemonability_bool_exp + _or: [pokemon_v2_pokemonability_bool_exp!] + ability_id: Int_comparison_exp + id: Int_comparison_exp + is_hidden: Boolean_comparison_exp + pokemon_id: Int_comparison_exp + pokemon_v2_ability: pokemon_v2_ability_bool_exp + pokemon_v2_pokemon: pokemon_v2_pokemon_bool_exp + slot: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokemonability_max_fields { + ability_id: Int + id: Int + pokemon_id: Int + slot: Int +} + +""" +order by max() on columns of table "pokemon_v2_pokemonability" +""" +input pokemon_v2_pokemonability_max_order_by { + ability_id: order_by + id: order_by + pokemon_id: order_by + slot: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_pokemonability_min_fields { + ability_id: Int + id: Int + pokemon_id: Int + slot: Int +} + +""" +order by min() on columns of table "pokemon_v2_pokemonability" +""" +input pokemon_v2_pokemonability_min_order_by { + ability_id: order_by + id: order_by + pokemon_id: order_by + slot: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_pokemonability".""" +input pokemon_v2_pokemonability_order_by { + ability_id: order_by + id: order_by + is_hidden: order_by + pokemon_id: order_by + pokemon_v2_ability: pokemon_v2_ability_order_by + pokemon_v2_pokemon: pokemon_v2_pokemon_order_by + slot: order_by +} + +""" +select columns of table "pokemon_v2_pokemonability" +""" +enum pokemon_v2_pokemonability_select_column { + """column name""" + ability_id + + """column name""" + id + + """column name""" + is_hidden + + """column name""" + pokemon_id + + """column name""" + slot +} + +""" +select "pokemon_v2_pokemonability_aggregate_bool_exp_bool_and_arguments_columns" columns of table "pokemon_v2_pokemonability" +""" +enum pokemon_v2_pokemonability_select_column_pokemon_v2_pokemonability_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + is_hidden +} + +""" +select "pokemon_v2_pokemonability_aggregate_bool_exp_bool_or_arguments_columns" columns of table "pokemon_v2_pokemonability" +""" +enum pokemon_v2_pokemonability_select_column_pokemon_v2_pokemonability_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + is_hidden +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokemonability_stddev_fields { + ability_id: Float + id: Float + pokemon_id: Float + slot: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_pokemonability" +""" +input pokemon_v2_pokemonability_stddev_order_by { + ability_id: order_by + id: order_by + pokemon_id: order_by + slot: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokemonability_stddev_pop_fields { + ability_id: Float + id: Float + pokemon_id: Float + slot: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_pokemonability" +""" +input pokemon_v2_pokemonability_stddev_pop_order_by { + ability_id: order_by + id: order_by + pokemon_id: order_by + slot: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokemonability_stddev_samp_fields { + ability_id: Float + id: Float + pokemon_id: Float + slot: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_pokemonability" +""" +input pokemon_v2_pokemonability_stddev_samp_order_by { + ability_id: order_by + id: order_by + pokemon_id: order_by + slot: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_pokemonability" +""" +input pokemon_v2_pokemonability_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokemonability_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokemonability_stream_cursor_value_input { + ability_id: Int + id: Int + is_hidden: Boolean + pokemon_id: Int + slot: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_pokemonability_sum_fields { + ability_id: Int + id: Int + pokemon_id: Int + slot: Int +} + +""" +order by sum() on columns of table "pokemon_v2_pokemonability" +""" +input pokemon_v2_pokemonability_sum_order_by { + ability_id: order_by + id: order_by + pokemon_id: order_by + slot: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokemonability_var_pop_fields { + ability_id: Float + id: Float + pokemon_id: Float + slot: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_pokemonability" +""" +input pokemon_v2_pokemonability_var_pop_order_by { + ability_id: order_by + id: order_by + pokemon_id: order_by + slot: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokemonability_var_samp_fields { + ability_id: Float + id: Float + pokemon_id: Float + slot: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_pokemonability" +""" +input pokemon_v2_pokemonability_var_samp_order_by { + ability_id: order_by + id: order_by + pokemon_id: order_by + slot: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_pokemonability_variance_fields { + ability_id: Float + id: Float + pokemon_id: Float + slot: Float +} + +""" +order by variance() on columns of table "pokemon_v2_pokemonability" +""" +input pokemon_v2_pokemonability_variance_order_by { + ability_id: order_by + id: order_by + pokemon_id: order_by + slot: order_by +} + +""" +columns and relationships of "pokemon_v2_pokemonabilitypast" +""" +type pokemon_v2_pokemonabilitypast { + ability_id: Int + generation_id: Int + id: Int! + is_hidden: Boolean! + pokemon_id: Int + + """An object relationship""" + pokemon_v2_ability: pokemon_v2_ability + + """An object relationship""" + pokemon_v2_generation: pokemon_v2_generation + + """An object relationship""" + pokemon_v2_pokemon: pokemon_v2_pokemon + slot: Int! +} + +""" +aggregated selection of "pokemon_v2_pokemonabilitypast" +""" +type pokemon_v2_pokemonabilitypast_aggregate { + aggregate: pokemon_v2_pokemonabilitypast_aggregate_fields + nodes: [pokemon_v2_pokemonabilitypast!]! +} + +input pokemon_v2_pokemonabilitypast_aggregate_bool_exp { + bool_and: pokemon_v2_pokemonabilitypast_aggregate_bool_exp_bool_and + bool_or: pokemon_v2_pokemonabilitypast_aggregate_bool_exp_bool_or + count: pokemon_v2_pokemonabilitypast_aggregate_bool_exp_count +} + +input pokemon_v2_pokemonabilitypast_aggregate_bool_exp_bool_and { + arguments: pokemon_v2_pokemonabilitypast_select_column_pokemon_v2_pokemonabilitypast_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: pokemon_v2_pokemonabilitypast_bool_exp + predicate: Boolean_comparison_exp! +} + +input pokemon_v2_pokemonabilitypast_aggregate_bool_exp_bool_or { + arguments: pokemon_v2_pokemonabilitypast_select_column_pokemon_v2_pokemonabilitypast_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: pokemon_v2_pokemonabilitypast_bool_exp + predicate: Boolean_comparison_exp! +} + +input pokemon_v2_pokemonabilitypast_aggregate_bool_exp_count { + arguments: [pokemon_v2_pokemonabilitypast_select_column!] + distinct: Boolean + filter: pokemon_v2_pokemonabilitypast_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_pokemonabilitypast" +""" +type pokemon_v2_pokemonabilitypast_aggregate_fields { + avg: pokemon_v2_pokemonabilitypast_avg_fields + count(columns: [pokemon_v2_pokemonabilitypast_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokemonabilitypast_max_fields + min: pokemon_v2_pokemonabilitypast_min_fields + stddev: pokemon_v2_pokemonabilitypast_stddev_fields + stddev_pop: pokemon_v2_pokemonabilitypast_stddev_pop_fields + stddev_samp: pokemon_v2_pokemonabilitypast_stddev_samp_fields + sum: pokemon_v2_pokemonabilitypast_sum_fields + var_pop: pokemon_v2_pokemonabilitypast_var_pop_fields + var_samp: pokemon_v2_pokemonabilitypast_var_samp_fields + variance: pokemon_v2_pokemonabilitypast_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_pokemonabilitypast" +""" +input pokemon_v2_pokemonabilitypast_aggregate_order_by { + avg: pokemon_v2_pokemonabilitypast_avg_order_by + count: order_by + max: pokemon_v2_pokemonabilitypast_max_order_by + min: pokemon_v2_pokemonabilitypast_min_order_by + stddev: pokemon_v2_pokemonabilitypast_stddev_order_by + stddev_pop: pokemon_v2_pokemonabilitypast_stddev_pop_order_by + stddev_samp: pokemon_v2_pokemonabilitypast_stddev_samp_order_by + sum: pokemon_v2_pokemonabilitypast_sum_order_by + var_pop: pokemon_v2_pokemonabilitypast_var_pop_order_by + var_samp: pokemon_v2_pokemonabilitypast_var_samp_order_by + variance: pokemon_v2_pokemonabilitypast_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_pokemonabilitypast_avg_fields { + ability_id: Float + generation_id: Float + id: Float + pokemon_id: Float + slot: Float +} + +""" +order by avg() on columns of table "pokemon_v2_pokemonabilitypast" +""" +input pokemon_v2_pokemonabilitypast_avg_order_by { + ability_id: order_by + generation_id: order_by + id: order_by + pokemon_id: order_by + slot: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokemonabilitypast". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokemonabilitypast_bool_exp { + _and: [pokemon_v2_pokemonabilitypast_bool_exp!] + _not: pokemon_v2_pokemonabilitypast_bool_exp + _or: [pokemon_v2_pokemonabilitypast_bool_exp!] + ability_id: Int_comparison_exp + generation_id: Int_comparison_exp + id: Int_comparison_exp + is_hidden: Boolean_comparison_exp + pokemon_id: Int_comparison_exp + pokemon_v2_ability: pokemon_v2_ability_bool_exp + pokemon_v2_generation: pokemon_v2_generation_bool_exp + pokemon_v2_pokemon: pokemon_v2_pokemon_bool_exp + slot: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokemonabilitypast_max_fields { + ability_id: Int + generation_id: Int + id: Int + pokemon_id: Int + slot: Int +} + +""" +order by max() on columns of table "pokemon_v2_pokemonabilitypast" +""" +input pokemon_v2_pokemonabilitypast_max_order_by { + ability_id: order_by + generation_id: order_by + id: order_by + pokemon_id: order_by + slot: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_pokemonabilitypast_min_fields { + ability_id: Int + generation_id: Int + id: Int + pokemon_id: Int + slot: Int +} + +""" +order by min() on columns of table "pokemon_v2_pokemonabilitypast" +""" +input pokemon_v2_pokemonabilitypast_min_order_by { + ability_id: order_by + generation_id: order_by + id: order_by + pokemon_id: order_by + slot: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_pokemonabilitypast". +""" +input pokemon_v2_pokemonabilitypast_order_by { + ability_id: order_by + generation_id: order_by + id: order_by + is_hidden: order_by + pokemon_id: order_by + pokemon_v2_ability: pokemon_v2_ability_order_by + pokemon_v2_generation: pokemon_v2_generation_order_by + pokemon_v2_pokemon: pokemon_v2_pokemon_order_by + slot: order_by +} + +""" +select columns of table "pokemon_v2_pokemonabilitypast" +""" +enum pokemon_v2_pokemonabilitypast_select_column { + """column name""" + ability_id + + """column name""" + generation_id + + """column name""" + id + + """column name""" + is_hidden + + """column name""" + pokemon_id + + """column name""" + slot +} + +""" +select "pokemon_v2_pokemonabilitypast_aggregate_bool_exp_bool_and_arguments_columns" columns of table "pokemon_v2_pokemonabilitypast" +""" +enum pokemon_v2_pokemonabilitypast_select_column_pokemon_v2_pokemonabilitypast_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + is_hidden +} + +""" +select "pokemon_v2_pokemonabilitypast_aggregate_bool_exp_bool_or_arguments_columns" columns of table "pokemon_v2_pokemonabilitypast" +""" +enum pokemon_v2_pokemonabilitypast_select_column_pokemon_v2_pokemonabilitypast_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + is_hidden +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokemonabilitypast_stddev_fields { + ability_id: Float + generation_id: Float + id: Float + pokemon_id: Float + slot: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_pokemonabilitypast" +""" +input pokemon_v2_pokemonabilitypast_stddev_order_by { + ability_id: order_by + generation_id: order_by + id: order_by + pokemon_id: order_by + slot: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokemonabilitypast_stddev_pop_fields { + ability_id: Float + generation_id: Float + id: Float + pokemon_id: Float + slot: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_pokemonabilitypast" +""" +input pokemon_v2_pokemonabilitypast_stddev_pop_order_by { + ability_id: order_by + generation_id: order_by + id: order_by + pokemon_id: order_by + slot: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokemonabilitypast_stddev_samp_fields { + ability_id: Float + generation_id: Float + id: Float + pokemon_id: Float + slot: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_pokemonabilitypast" +""" +input pokemon_v2_pokemonabilitypast_stddev_samp_order_by { + ability_id: order_by + generation_id: order_by + id: order_by + pokemon_id: order_by + slot: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_pokemonabilitypast" +""" +input pokemon_v2_pokemonabilitypast_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokemonabilitypast_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokemonabilitypast_stream_cursor_value_input { + ability_id: Int + generation_id: Int + id: Int + is_hidden: Boolean + pokemon_id: Int + slot: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_pokemonabilitypast_sum_fields { + ability_id: Int + generation_id: Int + id: Int + pokemon_id: Int + slot: Int +} + +""" +order by sum() on columns of table "pokemon_v2_pokemonabilitypast" +""" +input pokemon_v2_pokemonabilitypast_sum_order_by { + ability_id: order_by + generation_id: order_by + id: order_by + pokemon_id: order_by + slot: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokemonabilitypast_var_pop_fields { + ability_id: Float + generation_id: Float + id: Float + pokemon_id: Float + slot: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_pokemonabilitypast" +""" +input pokemon_v2_pokemonabilitypast_var_pop_order_by { + ability_id: order_by + generation_id: order_by + id: order_by + pokemon_id: order_by + slot: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokemonabilitypast_var_samp_fields { + ability_id: Float + generation_id: Float + id: Float + pokemon_id: Float + slot: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_pokemonabilitypast" +""" +input pokemon_v2_pokemonabilitypast_var_samp_order_by { + ability_id: order_by + generation_id: order_by + id: order_by + pokemon_id: order_by + slot: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_pokemonabilitypast_variance_fields { + ability_id: Float + generation_id: Float + id: Float + pokemon_id: Float + slot: Float +} + +""" +order by variance() on columns of table "pokemon_v2_pokemonabilitypast" +""" +input pokemon_v2_pokemonabilitypast_variance_order_by { + ability_id: order_by + generation_id: order_by + id: order_by + pokemon_id: order_by + slot: order_by +} + +""" +columns and relationships of "pokemon_v2_pokemoncolor" +""" +type pokemon_v2_pokemoncolor { + id: Int! + name: String! + + """An array relationship""" + pokemon_v2_pokemoncolornames( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemoncolorname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemoncolorname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemoncolorname_bool_exp + ): [pokemon_v2_pokemoncolorname!]! + + """An aggregate relationship""" + pokemon_v2_pokemoncolornames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemoncolorname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemoncolorname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemoncolorname_bool_exp + ): pokemon_v2_pokemoncolorname_aggregate! + + """An array relationship""" + pokemon_v2_pokemonspecies( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspecies_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspecies_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspecies_bool_exp + ): [pokemon_v2_pokemonspecies!]! + + """An aggregate relationship""" + pokemon_v2_pokemonspecies_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspecies_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspecies_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspecies_bool_exp + ): pokemon_v2_pokemonspecies_aggregate! +} + +""" +aggregated selection of "pokemon_v2_pokemoncolor" +""" +type pokemon_v2_pokemoncolor_aggregate { + aggregate: pokemon_v2_pokemoncolor_aggregate_fields + nodes: [pokemon_v2_pokemoncolor!]! +} + +""" +aggregate fields of "pokemon_v2_pokemoncolor" +""" +type pokemon_v2_pokemoncolor_aggregate_fields { + avg: pokemon_v2_pokemoncolor_avg_fields + count(columns: [pokemon_v2_pokemoncolor_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokemoncolor_max_fields + min: pokemon_v2_pokemoncolor_min_fields + stddev: pokemon_v2_pokemoncolor_stddev_fields + stddev_pop: pokemon_v2_pokemoncolor_stddev_pop_fields + stddev_samp: pokemon_v2_pokemoncolor_stddev_samp_fields + sum: pokemon_v2_pokemoncolor_sum_fields + var_pop: pokemon_v2_pokemoncolor_var_pop_fields + var_samp: pokemon_v2_pokemoncolor_var_samp_fields + variance: pokemon_v2_pokemoncolor_variance_fields +} + +"""aggregate avg on columns""" +type pokemon_v2_pokemoncolor_avg_fields { + id: Float +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokemoncolor". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokemoncolor_bool_exp { + _and: [pokemon_v2_pokemoncolor_bool_exp!] + _not: pokemon_v2_pokemoncolor_bool_exp + _or: [pokemon_v2_pokemoncolor_bool_exp!] + id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_pokemoncolornames: pokemon_v2_pokemoncolorname_bool_exp + pokemon_v2_pokemoncolornames_aggregate: pokemon_v2_pokemoncolorname_aggregate_bool_exp + pokemon_v2_pokemonspecies: pokemon_v2_pokemonspecies_bool_exp + pokemon_v2_pokemonspecies_aggregate: pokemon_v2_pokemonspecies_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokemoncolor_max_fields { + id: Int + name: String +} + +"""aggregate min on columns""" +type pokemon_v2_pokemoncolor_min_fields { + id: Int + name: String +} + +"""Ordering options when selecting data from "pokemon_v2_pokemoncolor".""" +input pokemon_v2_pokemoncolor_order_by { + id: order_by + name: order_by + pokemon_v2_pokemoncolornames_aggregate: pokemon_v2_pokemoncolorname_aggregate_order_by + pokemon_v2_pokemonspecies_aggregate: pokemon_v2_pokemonspecies_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_pokemoncolor" +""" +enum pokemon_v2_pokemoncolor_select_column { + """column name""" + id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokemoncolor_stddev_fields { + id: Float +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokemoncolor_stddev_pop_fields { + id: Float +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokemoncolor_stddev_samp_fields { + id: Float +} + +""" +Streaming cursor of the table "pokemon_v2_pokemoncolor" +""" +input pokemon_v2_pokemoncolor_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokemoncolor_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokemoncolor_stream_cursor_value_input { + id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_pokemoncolor_sum_fields { + id: Int +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokemoncolor_var_pop_fields { + id: Float +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokemoncolor_var_samp_fields { + id: Float +} + +"""aggregate variance on columns""" +type pokemon_v2_pokemoncolor_variance_fields { + id: Float +} + +""" +columns and relationships of "pokemon_v2_pokemoncolorname" +""" +type pokemon_v2_pokemoncolorname { + id: Int! + language_id: Int + name: String! + pokemon_color_id: Int + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_pokemoncolor: pokemon_v2_pokemoncolor +} + +""" +aggregated selection of "pokemon_v2_pokemoncolorname" +""" +type pokemon_v2_pokemoncolorname_aggregate { + aggregate: pokemon_v2_pokemoncolorname_aggregate_fields + nodes: [pokemon_v2_pokemoncolorname!]! +} + +input pokemon_v2_pokemoncolorname_aggregate_bool_exp { + count: pokemon_v2_pokemoncolorname_aggregate_bool_exp_count +} + +input pokemon_v2_pokemoncolorname_aggregate_bool_exp_count { + arguments: [pokemon_v2_pokemoncolorname_select_column!] + distinct: Boolean + filter: pokemon_v2_pokemoncolorname_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_pokemoncolorname" +""" +type pokemon_v2_pokemoncolorname_aggregate_fields { + avg: pokemon_v2_pokemoncolorname_avg_fields + count(columns: [pokemon_v2_pokemoncolorname_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokemoncolorname_max_fields + min: pokemon_v2_pokemoncolorname_min_fields + stddev: pokemon_v2_pokemoncolorname_stddev_fields + stddev_pop: pokemon_v2_pokemoncolorname_stddev_pop_fields + stddev_samp: pokemon_v2_pokemoncolorname_stddev_samp_fields + sum: pokemon_v2_pokemoncolorname_sum_fields + var_pop: pokemon_v2_pokemoncolorname_var_pop_fields + var_samp: pokemon_v2_pokemoncolorname_var_samp_fields + variance: pokemon_v2_pokemoncolorname_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_pokemoncolorname" +""" +input pokemon_v2_pokemoncolorname_aggregate_order_by { + avg: pokemon_v2_pokemoncolorname_avg_order_by + count: order_by + max: pokemon_v2_pokemoncolorname_max_order_by + min: pokemon_v2_pokemoncolorname_min_order_by + stddev: pokemon_v2_pokemoncolorname_stddev_order_by + stddev_pop: pokemon_v2_pokemoncolorname_stddev_pop_order_by + stddev_samp: pokemon_v2_pokemoncolorname_stddev_samp_order_by + sum: pokemon_v2_pokemoncolorname_sum_order_by + var_pop: pokemon_v2_pokemoncolorname_var_pop_order_by + var_samp: pokemon_v2_pokemoncolorname_var_samp_order_by + variance: pokemon_v2_pokemoncolorname_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_pokemoncolorname_avg_fields { + id: Float + language_id: Float + pokemon_color_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_pokemoncolorname" +""" +input pokemon_v2_pokemoncolorname_avg_order_by { + id: order_by + language_id: order_by + pokemon_color_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokemoncolorname". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokemoncolorname_bool_exp { + _and: [pokemon_v2_pokemoncolorname_bool_exp!] + _not: pokemon_v2_pokemoncolorname_bool_exp + _or: [pokemon_v2_pokemoncolorname_bool_exp!] + id: Int_comparison_exp + language_id: Int_comparison_exp + name: String_comparison_exp + pokemon_color_id: Int_comparison_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_pokemoncolor: pokemon_v2_pokemoncolor_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokemoncolorname_max_fields { + id: Int + language_id: Int + name: String + pokemon_color_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_pokemoncolorname" +""" +input pokemon_v2_pokemoncolorname_max_order_by { + id: order_by + language_id: order_by + name: order_by + pokemon_color_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_pokemoncolorname_min_fields { + id: Int + language_id: Int + name: String + pokemon_color_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_pokemoncolorname" +""" +input pokemon_v2_pokemoncolorname_min_order_by { + id: order_by + language_id: order_by + name: order_by + pokemon_color_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_pokemoncolorname". +""" +input pokemon_v2_pokemoncolorname_order_by { + id: order_by + language_id: order_by + name: order_by + pokemon_color_id: order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_pokemoncolor: pokemon_v2_pokemoncolor_order_by +} + +""" +select columns of table "pokemon_v2_pokemoncolorname" +""" +enum pokemon_v2_pokemoncolorname_select_column { + """column name""" + id + + """column name""" + language_id + + """column name""" + name + + """column name""" + pokemon_color_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokemoncolorname_stddev_fields { + id: Float + language_id: Float + pokemon_color_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_pokemoncolorname" +""" +input pokemon_v2_pokemoncolorname_stddev_order_by { + id: order_by + language_id: order_by + pokemon_color_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokemoncolorname_stddev_pop_fields { + id: Float + language_id: Float + pokemon_color_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_pokemoncolorname" +""" +input pokemon_v2_pokemoncolorname_stddev_pop_order_by { + id: order_by + language_id: order_by + pokemon_color_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokemoncolorname_stddev_samp_fields { + id: Float + language_id: Float + pokemon_color_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_pokemoncolorname" +""" +input pokemon_v2_pokemoncolorname_stddev_samp_order_by { + id: order_by + language_id: order_by + pokemon_color_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_pokemoncolorname" +""" +input pokemon_v2_pokemoncolorname_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokemoncolorname_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokemoncolorname_stream_cursor_value_input { + id: Int + language_id: Int + name: String + pokemon_color_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_pokemoncolorname_sum_fields { + id: Int + language_id: Int + pokemon_color_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_pokemoncolorname" +""" +input pokemon_v2_pokemoncolorname_sum_order_by { + id: order_by + language_id: order_by + pokemon_color_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokemoncolorname_var_pop_fields { + id: Float + language_id: Float + pokemon_color_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_pokemoncolorname" +""" +input pokemon_v2_pokemoncolorname_var_pop_order_by { + id: order_by + language_id: order_by + pokemon_color_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokemoncolorname_var_samp_fields { + id: Float + language_id: Float + pokemon_color_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_pokemoncolorname" +""" +input pokemon_v2_pokemoncolorname_var_samp_order_by { + id: order_by + language_id: order_by + pokemon_color_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_pokemoncolorname_variance_fields { + id: Float + language_id: Float + pokemon_color_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_pokemoncolorname" +""" +input pokemon_v2_pokemoncolorname_variance_order_by { + id: order_by + language_id: order_by + pokemon_color_id: order_by +} + +""" +columns and relationships of "pokemon_v2_pokemoncries" +""" +type pokemon_v2_pokemoncries { + cries( + """JSON select path""" + path: String + ): jsonb! + id: Int! + pokemon_id: Int + + """An object relationship""" + pokemon_v2_pokemon: pokemon_v2_pokemon +} + +""" +aggregated selection of "pokemon_v2_pokemoncries" +""" +type pokemon_v2_pokemoncries_aggregate { + aggregate: pokemon_v2_pokemoncries_aggregate_fields + nodes: [pokemon_v2_pokemoncries!]! +} + +input pokemon_v2_pokemoncries_aggregate_bool_exp { + count: pokemon_v2_pokemoncries_aggregate_bool_exp_count +} + +input pokemon_v2_pokemoncries_aggregate_bool_exp_count { + arguments: [pokemon_v2_pokemoncries_select_column!] + distinct: Boolean + filter: pokemon_v2_pokemoncries_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_pokemoncries" +""" +type pokemon_v2_pokemoncries_aggregate_fields { + avg: pokemon_v2_pokemoncries_avg_fields + count(columns: [pokemon_v2_pokemoncries_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokemoncries_max_fields + min: pokemon_v2_pokemoncries_min_fields + stddev: pokemon_v2_pokemoncries_stddev_fields + stddev_pop: pokemon_v2_pokemoncries_stddev_pop_fields + stddev_samp: pokemon_v2_pokemoncries_stddev_samp_fields + sum: pokemon_v2_pokemoncries_sum_fields + var_pop: pokemon_v2_pokemoncries_var_pop_fields + var_samp: pokemon_v2_pokemoncries_var_samp_fields + variance: pokemon_v2_pokemoncries_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_pokemoncries" +""" +input pokemon_v2_pokemoncries_aggregate_order_by { + avg: pokemon_v2_pokemoncries_avg_order_by + count: order_by + max: pokemon_v2_pokemoncries_max_order_by + min: pokemon_v2_pokemoncries_min_order_by + stddev: pokemon_v2_pokemoncries_stddev_order_by + stddev_pop: pokemon_v2_pokemoncries_stddev_pop_order_by + stddev_samp: pokemon_v2_pokemoncries_stddev_samp_order_by + sum: pokemon_v2_pokemoncries_sum_order_by + var_pop: pokemon_v2_pokemoncries_var_pop_order_by + var_samp: pokemon_v2_pokemoncries_var_samp_order_by + variance: pokemon_v2_pokemoncries_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_pokemoncries_avg_fields { + id: Float + pokemon_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_pokemoncries" +""" +input pokemon_v2_pokemoncries_avg_order_by { + id: order_by + pokemon_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokemoncries". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokemoncries_bool_exp { + _and: [pokemon_v2_pokemoncries_bool_exp!] + _not: pokemon_v2_pokemoncries_bool_exp + _or: [pokemon_v2_pokemoncries_bool_exp!] + cries: jsonb_comparison_exp + id: Int_comparison_exp + pokemon_id: Int_comparison_exp + pokemon_v2_pokemon: pokemon_v2_pokemon_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokemoncries_max_fields { + id: Int + pokemon_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_pokemoncries" +""" +input pokemon_v2_pokemoncries_max_order_by { + id: order_by + pokemon_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_pokemoncries_min_fields { + id: Int + pokemon_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_pokemoncries" +""" +input pokemon_v2_pokemoncries_min_order_by { + id: order_by + pokemon_id: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_pokemoncries".""" +input pokemon_v2_pokemoncries_order_by { + cries: order_by + id: order_by + pokemon_id: order_by + pokemon_v2_pokemon: pokemon_v2_pokemon_order_by +} + +""" +select columns of table "pokemon_v2_pokemoncries" +""" +enum pokemon_v2_pokemoncries_select_column { + """column name""" + cries + + """column name""" + id + + """column name""" + pokemon_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokemoncries_stddev_fields { + id: Float + pokemon_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_pokemoncries" +""" +input pokemon_v2_pokemoncries_stddev_order_by { + id: order_by + pokemon_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokemoncries_stddev_pop_fields { + id: Float + pokemon_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_pokemoncries" +""" +input pokemon_v2_pokemoncries_stddev_pop_order_by { + id: order_by + pokemon_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokemoncries_stddev_samp_fields { + id: Float + pokemon_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_pokemoncries" +""" +input pokemon_v2_pokemoncries_stddev_samp_order_by { + id: order_by + pokemon_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_pokemoncries" +""" +input pokemon_v2_pokemoncries_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokemoncries_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokemoncries_stream_cursor_value_input { + cries: jsonb + id: Int + pokemon_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_pokemoncries_sum_fields { + id: Int + pokemon_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_pokemoncries" +""" +input pokemon_v2_pokemoncries_sum_order_by { + id: order_by + pokemon_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokemoncries_var_pop_fields { + id: Float + pokemon_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_pokemoncries" +""" +input pokemon_v2_pokemoncries_var_pop_order_by { + id: order_by + pokemon_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokemoncries_var_samp_fields { + id: Float + pokemon_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_pokemoncries" +""" +input pokemon_v2_pokemoncries_var_samp_order_by { + id: order_by + pokemon_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_pokemoncries_variance_fields { + id: Float + pokemon_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_pokemoncries" +""" +input pokemon_v2_pokemoncries_variance_order_by { + id: order_by + pokemon_id: order_by +} + +""" +columns and relationships of "pokemon_v2_pokemondexnumber" +""" +type pokemon_v2_pokemondexnumber { + id: Int! + pokedex_id: Int + pokedex_number: Int! + pokemon_species_id: Int + + """An object relationship""" + pokemon_v2_pokedex: pokemon_v2_pokedex + + """An object relationship""" + pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies +} + +""" +aggregated selection of "pokemon_v2_pokemondexnumber" +""" +type pokemon_v2_pokemondexnumber_aggregate { + aggregate: pokemon_v2_pokemondexnumber_aggregate_fields + nodes: [pokemon_v2_pokemondexnumber!]! +} + +input pokemon_v2_pokemondexnumber_aggregate_bool_exp { + count: pokemon_v2_pokemondexnumber_aggregate_bool_exp_count +} + +input pokemon_v2_pokemondexnumber_aggregate_bool_exp_count { + arguments: [pokemon_v2_pokemondexnumber_select_column!] + distinct: Boolean + filter: pokemon_v2_pokemondexnumber_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_pokemondexnumber" +""" +type pokemon_v2_pokemondexnumber_aggregate_fields { + avg: pokemon_v2_pokemondexnumber_avg_fields + count(columns: [pokemon_v2_pokemondexnumber_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokemondexnumber_max_fields + min: pokemon_v2_pokemondexnumber_min_fields + stddev: pokemon_v2_pokemondexnumber_stddev_fields + stddev_pop: pokemon_v2_pokemondexnumber_stddev_pop_fields + stddev_samp: pokemon_v2_pokemondexnumber_stddev_samp_fields + sum: pokemon_v2_pokemondexnumber_sum_fields + var_pop: pokemon_v2_pokemondexnumber_var_pop_fields + var_samp: pokemon_v2_pokemondexnumber_var_samp_fields + variance: pokemon_v2_pokemondexnumber_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_pokemondexnumber" +""" +input pokemon_v2_pokemondexnumber_aggregate_order_by { + avg: pokemon_v2_pokemondexnumber_avg_order_by + count: order_by + max: pokemon_v2_pokemondexnumber_max_order_by + min: pokemon_v2_pokemondexnumber_min_order_by + stddev: pokemon_v2_pokemondexnumber_stddev_order_by + stddev_pop: pokemon_v2_pokemondexnumber_stddev_pop_order_by + stddev_samp: pokemon_v2_pokemondexnumber_stddev_samp_order_by + sum: pokemon_v2_pokemondexnumber_sum_order_by + var_pop: pokemon_v2_pokemondexnumber_var_pop_order_by + var_samp: pokemon_v2_pokemondexnumber_var_samp_order_by + variance: pokemon_v2_pokemondexnumber_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_pokemondexnumber_avg_fields { + id: Float + pokedex_id: Float + pokedex_number: Float + pokemon_species_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_pokemondexnumber" +""" +input pokemon_v2_pokemondexnumber_avg_order_by { + id: order_by + pokedex_id: order_by + pokedex_number: order_by + pokemon_species_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokemondexnumber". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokemondexnumber_bool_exp { + _and: [pokemon_v2_pokemondexnumber_bool_exp!] + _not: pokemon_v2_pokemondexnumber_bool_exp + _or: [pokemon_v2_pokemondexnumber_bool_exp!] + id: Int_comparison_exp + pokedex_id: Int_comparison_exp + pokedex_number: Int_comparison_exp + pokemon_species_id: Int_comparison_exp + pokemon_v2_pokedex: pokemon_v2_pokedex_bool_exp + pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokemondexnumber_max_fields { + id: Int + pokedex_id: Int + pokedex_number: Int + pokemon_species_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_pokemondexnumber" +""" +input pokemon_v2_pokemondexnumber_max_order_by { + id: order_by + pokedex_id: order_by + pokedex_number: order_by + pokemon_species_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_pokemondexnumber_min_fields { + id: Int + pokedex_id: Int + pokedex_number: Int + pokemon_species_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_pokemondexnumber" +""" +input pokemon_v2_pokemondexnumber_min_order_by { + id: order_by + pokedex_id: order_by + pokedex_number: order_by + pokemon_species_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_pokemondexnumber". +""" +input pokemon_v2_pokemondexnumber_order_by { + id: order_by + pokedex_id: order_by + pokedex_number: order_by + pokemon_species_id: order_by + pokemon_v2_pokedex: pokemon_v2_pokedex_order_by + pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_order_by +} + +""" +select columns of table "pokemon_v2_pokemondexnumber" +""" +enum pokemon_v2_pokemondexnumber_select_column { + """column name""" + id + + """column name""" + pokedex_id + + """column name""" + pokedex_number + + """column name""" + pokemon_species_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokemondexnumber_stddev_fields { + id: Float + pokedex_id: Float + pokedex_number: Float + pokemon_species_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_pokemondexnumber" +""" +input pokemon_v2_pokemondexnumber_stddev_order_by { + id: order_by + pokedex_id: order_by + pokedex_number: order_by + pokemon_species_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokemondexnumber_stddev_pop_fields { + id: Float + pokedex_id: Float + pokedex_number: Float + pokemon_species_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_pokemondexnumber" +""" +input pokemon_v2_pokemondexnumber_stddev_pop_order_by { + id: order_by + pokedex_id: order_by + pokedex_number: order_by + pokemon_species_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokemondexnumber_stddev_samp_fields { + id: Float + pokedex_id: Float + pokedex_number: Float + pokemon_species_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_pokemondexnumber" +""" +input pokemon_v2_pokemondexnumber_stddev_samp_order_by { + id: order_by + pokedex_id: order_by + pokedex_number: order_by + pokemon_species_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_pokemondexnumber" +""" +input pokemon_v2_pokemondexnumber_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokemondexnumber_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokemondexnumber_stream_cursor_value_input { + id: Int + pokedex_id: Int + pokedex_number: Int + pokemon_species_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_pokemondexnumber_sum_fields { + id: Int + pokedex_id: Int + pokedex_number: Int + pokemon_species_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_pokemondexnumber" +""" +input pokemon_v2_pokemondexnumber_sum_order_by { + id: order_by + pokedex_id: order_by + pokedex_number: order_by + pokemon_species_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokemondexnumber_var_pop_fields { + id: Float + pokedex_id: Float + pokedex_number: Float + pokemon_species_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_pokemondexnumber" +""" +input pokemon_v2_pokemondexnumber_var_pop_order_by { + id: order_by + pokedex_id: order_by + pokedex_number: order_by + pokemon_species_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokemondexnumber_var_samp_fields { + id: Float + pokedex_id: Float + pokedex_number: Float + pokemon_species_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_pokemondexnumber" +""" +input pokemon_v2_pokemondexnumber_var_samp_order_by { + id: order_by + pokedex_id: order_by + pokedex_number: order_by + pokemon_species_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_pokemondexnumber_variance_fields { + id: Float + pokedex_id: Float + pokedex_number: Float + pokemon_species_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_pokemondexnumber" +""" +input pokemon_v2_pokemondexnumber_variance_order_by { + id: order_by + pokedex_id: order_by + pokedex_number: order_by + pokemon_species_id: order_by +} + +""" +columns and relationships of "pokemon_v2_pokemonegggroup" +""" +type pokemon_v2_pokemonegggroup { + egg_group_id: Int + id: Int! + pokemon_species_id: Int + + """An object relationship""" + pokemon_v2_egggroup: pokemon_v2_egggroup + + """An object relationship""" + pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies +} + +""" +aggregated selection of "pokemon_v2_pokemonegggroup" +""" +type pokemon_v2_pokemonegggroup_aggregate { + aggregate: pokemon_v2_pokemonegggroup_aggregate_fields + nodes: [pokemon_v2_pokemonegggroup!]! +} + +input pokemon_v2_pokemonegggroup_aggregate_bool_exp { + count: pokemon_v2_pokemonegggroup_aggregate_bool_exp_count +} + +input pokemon_v2_pokemonegggroup_aggregate_bool_exp_count { + arguments: [pokemon_v2_pokemonegggroup_select_column!] + distinct: Boolean + filter: pokemon_v2_pokemonegggroup_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_pokemonegggroup" +""" +type pokemon_v2_pokemonegggroup_aggregate_fields { + avg: pokemon_v2_pokemonegggroup_avg_fields + count(columns: [pokemon_v2_pokemonegggroup_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokemonegggroup_max_fields + min: pokemon_v2_pokemonegggroup_min_fields + stddev: pokemon_v2_pokemonegggroup_stddev_fields + stddev_pop: pokemon_v2_pokemonegggroup_stddev_pop_fields + stddev_samp: pokemon_v2_pokemonegggroup_stddev_samp_fields + sum: pokemon_v2_pokemonegggroup_sum_fields + var_pop: pokemon_v2_pokemonegggroup_var_pop_fields + var_samp: pokemon_v2_pokemonegggroup_var_samp_fields + variance: pokemon_v2_pokemonegggroup_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_pokemonegggroup" +""" +input pokemon_v2_pokemonegggroup_aggregate_order_by { + avg: pokemon_v2_pokemonegggroup_avg_order_by + count: order_by + max: pokemon_v2_pokemonegggroup_max_order_by + min: pokemon_v2_pokemonegggroup_min_order_by + stddev: pokemon_v2_pokemonegggroup_stddev_order_by + stddev_pop: pokemon_v2_pokemonegggroup_stddev_pop_order_by + stddev_samp: pokemon_v2_pokemonegggroup_stddev_samp_order_by + sum: pokemon_v2_pokemonegggroup_sum_order_by + var_pop: pokemon_v2_pokemonegggroup_var_pop_order_by + var_samp: pokemon_v2_pokemonegggroup_var_samp_order_by + variance: pokemon_v2_pokemonegggroup_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_pokemonegggroup_avg_fields { + egg_group_id: Float + id: Float + pokemon_species_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_pokemonegggroup" +""" +input pokemon_v2_pokemonegggroup_avg_order_by { + egg_group_id: order_by + id: order_by + pokemon_species_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokemonegggroup". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokemonegggroup_bool_exp { + _and: [pokemon_v2_pokemonegggroup_bool_exp!] + _not: pokemon_v2_pokemonegggroup_bool_exp + _or: [pokemon_v2_pokemonegggroup_bool_exp!] + egg_group_id: Int_comparison_exp + id: Int_comparison_exp + pokemon_species_id: Int_comparison_exp + pokemon_v2_egggroup: pokemon_v2_egggroup_bool_exp + pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokemonegggroup_max_fields { + egg_group_id: Int + id: Int + pokemon_species_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_pokemonegggroup" +""" +input pokemon_v2_pokemonegggroup_max_order_by { + egg_group_id: order_by + id: order_by + pokemon_species_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_pokemonegggroup_min_fields { + egg_group_id: Int + id: Int + pokemon_species_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_pokemonegggroup" +""" +input pokemon_v2_pokemonegggroup_min_order_by { + egg_group_id: order_by + id: order_by + pokemon_species_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_pokemonegggroup". +""" +input pokemon_v2_pokemonegggroup_order_by { + egg_group_id: order_by + id: order_by + pokemon_species_id: order_by + pokemon_v2_egggroup: pokemon_v2_egggroup_order_by + pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_order_by +} + +""" +select columns of table "pokemon_v2_pokemonegggroup" +""" +enum pokemon_v2_pokemonegggroup_select_column { + """column name""" + egg_group_id + + """column name""" + id + + """column name""" + pokemon_species_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokemonegggroup_stddev_fields { + egg_group_id: Float + id: Float + pokemon_species_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_pokemonegggroup" +""" +input pokemon_v2_pokemonegggroup_stddev_order_by { + egg_group_id: order_by + id: order_by + pokemon_species_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokemonegggroup_stddev_pop_fields { + egg_group_id: Float + id: Float + pokemon_species_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_pokemonegggroup" +""" +input pokemon_v2_pokemonegggroup_stddev_pop_order_by { + egg_group_id: order_by + id: order_by + pokemon_species_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokemonegggroup_stddev_samp_fields { + egg_group_id: Float + id: Float + pokemon_species_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_pokemonegggroup" +""" +input pokemon_v2_pokemonegggroup_stddev_samp_order_by { + egg_group_id: order_by + id: order_by + pokemon_species_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_pokemonegggroup" +""" +input pokemon_v2_pokemonegggroup_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokemonegggroup_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokemonegggroup_stream_cursor_value_input { + egg_group_id: Int + id: Int + pokemon_species_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_pokemonegggroup_sum_fields { + egg_group_id: Int + id: Int + pokemon_species_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_pokemonegggroup" +""" +input pokemon_v2_pokemonegggroup_sum_order_by { + egg_group_id: order_by + id: order_by + pokemon_species_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokemonegggroup_var_pop_fields { + egg_group_id: Float + id: Float + pokemon_species_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_pokemonegggroup" +""" +input pokemon_v2_pokemonegggroup_var_pop_order_by { + egg_group_id: order_by + id: order_by + pokemon_species_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokemonegggroup_var_samp_fields { + egg_group_id: Float + id: Float + pokemon_species_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_pokemonegggroup" +""" +input pokemon_v2_pokemonegggroup_var_samp_order_by { + egg_group_id: order_by + id: order_by + pokemon_species_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_pokemonegggroup_variance_fields { + egg_group_id: Float + id: Float + pokemon_species_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_pokemonegggroup" +""" +input pokemon_v2_pokemonegggroup_variance_order_by { + egg_group_id: order_by + id: order_by + pokemon_species_id: order_by +} + +""" +columns and relationships of "pokemon_v2_pokemonevolution" +""" +type pokemon_v2_pokemonevolution { + evolution_item_id: Int + evolution_trigger_id: Int + evolved_species_id: Int + gender_id: Int + held_item_id: Int + id: Int! + known_move_id: Int + known_move_type_id: Int + location_id: Int + min_affection: Int + min_beauty: Int + min_happiness: Int + min_level: Int + needs_overworld_rain: Boolean! + party_species_id: Int + party_type_id: Int + + """An object relationship""" + pokemonV2ItemByHeldItemId: pokemon_v2_item + + """An object relationship""" + pokemonV2PokemonspecyByPartySpeciesId: pokemon_v2_pokemonspecies + + """An object relationship""" + pokemonV2PokemonspecyByTradeSpeciesId: pokemon_v2_pokemonspecies + + """An object relationship""" + pokemonV2TypeByPartyTypeId: pokemon_v2_type + + """An object relationship""" + pokemon_v2_evolutiontrigger: pokemon_v2_evolutiontrigger + + """An object relationship""" + pokemon_v2_gender: pokemon_v2_gender + + """An object relationship""" + pokemon_v2_item: pokemon_v2_item + + """An object relationship""" + pokemon_v2_location: pokemon_v2_location + + """An object relationship""" + pokemon_v2_move: pokemon_v2_move + + """An object relationship""" + pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies + + """An object relationship""" + pokemon_v2_type: pokemon_v2_type + relative_physical_stats: Int + time_of_day: String + trade_species_id: Int + turn_upside_down: Boolean! +} + +""" +aggregated selection of "pokemon_v2_pokemonevolution" +""" +type pokemon_v2_pokemonevolution_aggregate { + aggregate: pokemon_v2_pokemonevolution_aggregate_fields + nodes: [pokemon_v2_pokemonevolution!]! +} + +input pokemon_v2_pokemonevolution_aggregate_bool_exp { + bool_and: pokemon_v2_pokemonevolution_aggregate_bool_exp_bool_and + bool_or: pokemon_v2_pokemonevolution_aggregate_bool_exp_bool_or + count: pokemon_v2_pokemonevolution_aggregate_bool_exp_count +} + +input pokemon_v2_pokemonevolution_aggregate_bool_exp_bool_and { + arguments: pokemon_v2_pokemonevolution_select_column_pokemon_v2_pokemonevolution_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: pokemon_v2_pokemonevolution_bool_exp + predicate: Boolean_comparison_exp! +} + +input pokemon_v2_pokemonevolution_aggregate_bool_exp_bool_or { + arguments: pokemon_v2_pokemonevolution_select_column_pokemon_v2_pokemonevolution_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: pokemon_v2_pokemonevolution_bool_exp + predicate: Boolean_comparison_exp! +} + +input pokemon_v2_pokemonevolution_aggregate_bool_exp_count { + arguments: [pokemon_v2_pokemonevolution_select_column!] + distinct: Boolean + filter: pokemon_v2_pokemonevolution_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_pokemonevolution" +""" +type pokemon_v2_pokemonevolution_aggregate_fields { + avg: pokemon_v2_pokemonevolution_avg_fields + count(columns: [pokemon_v2_pokemonevolution_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokemonevolution_max_fields + min: pokemon_v2_pokemonevolution_min_fields + stddev: pokemon_v2_pokemonevolution_stddev_fields + stddev_pop: pokemon_v2_pokemonevolution_stddev_pop_fields + stddev_samp: pokemon_v2_pokemonevolution_stddev_samp_fields + sum: pokemon_v2_pokemonevolution_sum_fields + var_pop: pokemon_v2_pokemonevolution_var_pop_fields + var_samp: pokemon_v2_pokemonevolution_var_samp_fields + variance: pokemon_v2_pokemonevolution_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_pokemonevolution" +""" +input pokemon_v2_pokemonevolution_aggregate_order_by { + avg: pokemon_v2_pokemonevolution_avg_order_by + count: order_by + max: pokemon_v2_pokemonevolution_max_order_by + min: pokemon_v2_pokemonevolution_min_order_by + stddev: pokemon_v2_pokemonevolution_stddev_order_by + stddev_pop: pokemon_v2_pokemonevolution_stddev_pop_order_by + stddev_samp: pokemon_v2_pokemonevolution_stddev_samp_order_by + sum: pokemon_v2_pokemonevolution_sum_order_by + var_pop: pokemon_v2_pokemonevolution_var_pop_order_by + var_samp: pokemon_v2_pokemonevolution_var_samp_order_by + variance: pokemon_v2_pokemonevolution_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_pokemonevolution_avg_fields { + evolution_item_id: Float + evolution_trigger_id: Float + evolved_species_id: Float + gender_id: Float + held_item_id: Float + id: Float + known_move_id: Float + known_move_type_id: Float + location_id: Float + min_affection: Float + min_beauty: Float + min_happiness: Float + min_level: Float + party_species_id: Float + party_type_id: Float + relative_physical_stats: Float + trade_species_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_pokemonevolution" +""" +input pokemon_v2_pokemonevolution_avg_order_by { + evolution_item_id: order_by + evolution_trigger_id: order_by + evolved_species_id: order_by + gender_id: order_by + held_item_id: order_by + id: order_by + known_move_id: order_by + known_move_type_id: order_by + location_id: order_by + min_affection: order_by + min_beauty: order_by + min_happiness: order_by + min_level: order_by + party_species_id: order_by + party_type_id: order_by + relative_physical_stats: order_by + trade_species_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokemonevolution". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokemonevolution_bool_exp { + _and: [pokemon_v2_pokemonevolution_bool_exp!] + _not: pokemon_v2_pokemonevolution_bool_exp + _or: [pokemon_v2_pokemonevolution_bool_exp!] + evolution_item_id: Int_comparison_exp + evolution_trigger_id: Int_comparison_exp + evolved_species_id: Int_comparison_exp + gender_id: Int_comparison_exp + held_item_id: Int_comparison_exp + id: Int_comparison_exp + known_move_id: Int_comparison_exp + known_move_type_id: Int_comparison_exp + location_id: Int_comparison_exp + min_affection: Int_comparison_exp + min_beauty: Int_comparison_exp + min_happiness: Int_comparison_exp + min_level: Int_comparison_exp + needs_overworld_rain: Boolean_comparison_exp + party_species_id: Int_comparison_exp + party_type_id: Int_comparison_exp + pokemonV2ItemByHeldItemId: pokemon_v2_item_bool_exp + pokemonV2PokemonspecyByPartySpeciesId: pokemon_v2_pokemonspecies_bool_exp + pokemonV2PokemonspecyByTradeSpeciesId: pokemon_v2_pokemonspecies_bool_exp + pokemonV2TypeByPartyTypeId: pokemon_v2_type_bool_exp + pokemon_v2_evolutiontrigger: pokemon_v2_evolutiontrigger_bool_exp + pokemon_v2_gender: pokemon_v2_gender_bool_exp + pokemon_v2_item: pokemon_v2_item_bool_exp + pokemon_v2_location: pokemon_v2_location_bool_exp + pokemon_v2_move: pokemon_v2_move_bool_exp + pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_bool_exp + pokemon_v2_type: pokemon_v2_type_bool_exp + relative_physical_stats: Int_comparison_exp + time_of_day: String_comparison_exp + trade_species_id: Int_comparison_exp + turn_upside_down: Boolean_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokemonevolution_max_fields { + evolution_item_id: Int + evolution_trigger_id: Int + evolved_species_id: Int + gender_id: Int + held_item_id: Int + id: Int + known_move_id: Int + known_move_type_id: Int + location_id: Int + min_affection: Int + min_beauty: Int + min_happiness: Int + min_level: Int + party_species_id: Int + party_type_id: Int + relative_physical_stats: Int + time_of_day: String + trade_species_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_pokemonevolution" +""" +input pokemon_v2_pokemonevolution_max_order_by { + evolution_item_id: order_by + evolution_trigger_id: order_by + evolved_species_id: order_by + gender_id: order_by + held_item_id: order_by + id: order_by + known_move_id: order_by + known_move_type_id: order_by + location_id: order_by + min_affection: order_by + min_beauty: order_by + min_happiness: order_by + min_level: order_by + party_species_id: order_by + party_type_id: order_by + relative_physical_stats: order_by + time_of_day: order_by + trade_species_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_pokemonevolution_min_fields { + evolution_item_id: Int + evolution_trigger_id: Int + evolved_species_id: Int + gender_id: Int + held_item_id: Int + id: Int + known_move_id: Int + known_move_type_id: Int + location_id: Int + min_affection: Int + min_beauty: Int + min_happiness: Int + min_level: Int + party_species_id: Int + party_type_id: Int + relative_physical_stats: Int + time_of_day: String + trade_species_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_pokemonevolution" +""" +input pokemon_v2_pokemonevolution_min_order_by { + evolution_item_id: order_by + evolution_trigger_id: order_by + evolved_species_id: order_by + gender_id: order_by + held_item_id: order_by + id: order_by + known_move_id: order_by + known_move_type_id: order_by + location_id: order_by + min_affection: order_by + min_beauty: order_by + min_happiness: order_by + min_level: order_by + party_species_id: order_by + party_type_id: order_by + relative_physical_stats: order_by + time_of_day: order_by + trade_species_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_pokemonevolution". +""" +input pokemon_v2_pokemonevolution_order_by { + evolution_item_id: order_by + evolution_trigger_id: order_by + evolved_species_id: order_by + gender_id: order_by + held_item_id: order_by + id: order_by + known_move_id: order_by + known_move_type_id: order_by + location_id: order_by + min_affection: order_by + min_beauty: order_by + min_happiness: order_by + min_level: order_by + needs_overworld_rain: order_by + party_species_id: order_by + party_type_id: order_by + pokemonV2ItemByHeldItemId: pokemon_v2_item_order_by + pokemonV2PokemonspecyByPartySpeciesId: pokemon_v2_pokemonspecies_order_by + pokemonV2PokemonspecyByTradeSpeciesId: pokemon_v2_pokemonspecies_order_by + pokemonV2TypeByPartyTypeId: pokemon_v2_type_order_by + pokemon_v2_evolutiontrigger: pokemon_v2_evolutiontrigger_order_by + pokemon_v2_gender: pokemon_v2_gender_order_by + pokemon_v2_item: pokemon_v2_item_order_by + pokemon_v2_location: pokemon_v2_location_order_by + pokemon_v2_move: pokemon_v2_move_order_by + pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_order_by + pokemon_v2_type: pokemon_v2_type_order_by + relative_physical_stats: order_by + time_of_day: order_by + trade_species_id: order_by + turn_upside_down: order_by +} + +""" +select columns of table "pokemon_v2_pokemonevolution" +""" +enum pokemon_v2_pokemonevolution_select_column { + """column name""" + evolution_item_id + + """column name""" + evolution_trigger_id + + """column name""" + evolved_species_id + + """column name""" + gender_id + + """column name""" + held_item_id + + """column name""" + id + + """column name""" + known_move_id + + """column name""" + known_move_type_id + + """column name""" + location_id + + """column name""" + min_affection + + """column name""" + min_beauty + + """column name""" + min_happiness + + """column name""" + min_level + + """column name""" + needs_overworld_rain + + """column name""" + party_species_id + + """column name""" + party_type_id + + """column name""" + relative_physical_stats + + """column name""" + time_of_day + + """column name""" + trade_species_id + + """column name""" + turn_upside_down +} + +""" +select "pokemon_v2_pokemonevolution_aggregate_bool_exp_bool_and_arguments_columns" columns of table "pokemon_v2_pokemonevolution" +""" +enum pokemon_v2_pokemonevolution_select_column_pokemon_v2_pokemonevolution_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + needs_overworld_rain + + """column name""" + turn_upside_down +} + +""" +select "pokemon_v2_pokemonevolution_aggregate_bool_exp_bool_or_arguments_columns" columns of table "pokemon_v2_pokemonevolution" +""" +enum pokemon_v2_pokemonevolution_select_column_pokemon_v2_pokemonevolution_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + needs_overworld_rain + + """column name""" + turn_upside_down +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokemonevolution_stddev_fields { + evolution_item_id: Float + evolution_trigger_id: Float + evolved_species_id: Float + gender_id: Float + held_item_id: Float + id: Float + known_move_id: Float + known_move_type_id: Float + location_id: Float + min_affection: Float + min_beauty: Float + min_happiness: Float + min_level: Float + party_species_id: Float + party_type_id: Float + relative_physical_stats: Float + trade_species_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_pokemonevolution" +""" +input pokemon_v2_pokemonevolution_stddev_order_by { + evolution_item_id: order_by + evolution_trigger_id: order_by + evolved_species_id: order_by + gender_id: order_by + held_item_id: order_by + id: order_by + known_move_id: order_by + known_move_type_id: order_by + location_id: order_by + min_affection: order_by + min_beauty: order_by + min_happiness: order_by + min_level: order_by + party_species_id: order_by + party_type_id: order_by + relative_physical_stats: order_by + trade_species_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokemonevolution_stddev_pop_fields { + evolution_item_id: Float + evolution_trigger_id: Float + evolved_species_id: Float + gender_id: Float + held_item_id: Float + id: Float + known_move_id: Float + known_move_type_id: Float + location_id: Float + min_affection: Float + min_beauty: Float + min_happiness: Float + min_level: Float + party_species_id: Float + party_type_id: Float + relative_physical_stats: Float + trade_species_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_pokemonevolution" +""" +input pokemon_v2_pokemonevolution_stddev_pop_order_by { + evolution_item_id: order_by + evolution_trigger_id: order_by + evolved_species_id: order_by + gender_id: order_by + held_item_id: order_by + id: order_by + known_move_id: order_by + known_move_type_id: order_by + location_id: order_by + min_affection: order_by + min_beauty: order_by + min_happiness: order_by + min_level: order_by + party_species_id: order_by + party_type_id: order_by + relative_physical_stats: order_by + trade_species_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokemonevolution_stddev_samp_fields { + evolution_item_id: Float + evolution_trigger_id: Float + evolved_species_id: Float + gender_id: Float + held_item_id: Float + id: Float + known_move_id: Float + known_move_type_id: Float + location_id: Float + min_affection: Float + min_beauty: Float + min_happiness: Float + min_level: Float + party_species_id: Float + party_type_id: Float + relative_physical_stats: Float + trade_species_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_pokemonevolution" +""" +input pokemon_v2_pokemonevolution_stddev_samp_order_by { + evolution_item_id: order_by + evolution_trigger_id: order_by + evolved_species_id: order_by + gender_id: order_by + held_item_id: order_by + id: order_by + known_move_id: order_by + known_move_type_id: order_by + location_id: order_by + min_affection: order_by + min_beauty: order_by + min_happiness: order_by + min_level: order_by + party_species_id: order_by + party_type_id: order_by + relative_physical_stats: order_by + trade_species_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_pokemonevolution" +""" +input pokemon_v2_pokemonevolution_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokemonevolution_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokemonevolution_stream_cursor_value_input { + evolution_item_id: Int + evolution_trigger_id: Int + evolved_species_id: Int + gender_id: Int + held_item_id: Int + id: Int + known_move_id: Int + known_move_type_id: Int + location_id: Int + min_affection: Int + min_beauty: Int + min_happiness: Int + min_level: Int + needs_overworld_rain: Boolean + party_species_id: Int + party_type_id: Int + relative_physical_stats: Int + time_of_day: String + trade_species_id: Int + turn_upside_down: Boolean +} + +"""aggregate sum on columns""" +type pokemon_v2_pokemonevolution_sum_fields { + evolution_item_id: Int + evolution_trigger_id: Int + evolved_species_id: Int + gender_id: Int + held_item_id: Int + id: Int + known_move_id: Int + known_move_type_id: Int + location_id: Int + min_affection: Int + min_beauty: Int + min_happiness: Int + min_level: Int + party_species_id: Int + party_type_id: Int + relative_physical_stats: Int + trade_species_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_pokemonevolution" +""" +input pokemon_v2_pokemonevolution_sum_order_by { + evolution_item_id: order_by + evolution_trigger_id: order_by + evolved_species_id: order_by + gender_id: order_by + held_item_id: order_by + id: order_by + known_move_id: order_by + known_move_type_id: order_by + location_id: order_by + min_affection: order_by + min_beauty: order_by + min_happiness: order_by + min_level: order_by + party_species_id: order_by + party_type_id: order_by + relative_physical_stats: order_by + trade_species_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokemonevolution_var_pop_fields { + evolution_item_id: Float + evolution_trigger_id: Float + evolved_species_id: Float + gender_id: Float + held_item_id: Float + id: Float + known_move_id: Float + known_move_type_id: Float + location_id: Float + min_affection: Float + min_beauty: Float + min_happiness: Float + min_level: Float + party_species_id: Float + party_type_id: Float + relative_physical_stats: Float + trade_species_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_pokemonevolution" +""" +input pokemon_v2_pokemonevolution_var_pop_order_by { + evolution_item_id: order_by + evolution_trigger_id: order_by + evolved_species_id: order_by + gender_id: order_by + held_item_id: order_by + id: order_by + known_move_id: order_by + known_move_type_id: order_by + location_id: order_by + min_affection: order_by + min_beauty: order_by + min_happiness: order_by + min_level: order_by + party_species_id: order_by + party_type_id: order_by + relative_physical_stats: order_by + trade_species_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokemonevolution_var_samp_fields { + evolution_item_id: Float + evolution_trigger_id: Float + evolved_species_id: Float + gender_id: Float + held_item_id: Float + id: Float + known_move_id: Float + known_move_type_id: Float + location_id: Float + min_affection: Float + min_beauty: Float + min_happiness: Float + min_level: Float + party_species_id: Float + party_type_id: Float + relative_physical_stats: Float + trade_species_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_pokemonevolution" +""" +input pokemon_v2_pokemonevolution_var_samp_order_by { + evolution_item_id: order_by + evolution_trigger_id: order_by + evolved_species_id: order_by + gender_id: order_by + held_item_id: order_by + id: order_by + known_move_id: order_by + known_move_type_id: order_by + location_id: order_by + min_affection: order_by + min_beauty: order_by + min_happiness: order_by + min_level: order_by + party_species_id: order_by + party_type_id: order_by + relative_physical_stats: order_by + trade_species_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_pokemonevolution_variance_fields { + evolution_item_id: Float + evolution_trigger_id: Float + evolved_species_id: Float + gender_id: Float + held_item_id: Float + id: Float + known_move_id: Float + known_move_type_id: Float + location_id: Float + min_affection: Float + min_beauty: Float + min_happiness: Float + min_level: Float + party_species_id: Float + party_type_id: Float + relative_physical_stats: Float + trade_species_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_pokemonevolution" +""" +input pokemon_v2_pokemonevolution_variance_order_by { + evolution_item_id: order_by + evolution_trigger_id: order_by + evolved_species_id: order_by + gender_id: order_by + held_item_id: order_by + id: order_by + known_move_id: order_by + known_move_type_id: order_by + location_id: order_by + min_affection: order_by + min_beauty: order_by + min_happiness: order_by + min_level: order_by + party_species_id: order_by + party_type_id: order_by + relative_physical_stats: order_by + trade_species_id: order_by +} + +""" +columns and relationships of "pokemon_v2_pokemonform" +""" +type pokemon_v2_pokemonform { + form_name: String! + form_order: Int + id: Int! + is_battle_only: Boolean! + is_default: Boolean! + is_mega: Boolean! + name: String! + order: Int + pokemon_id: Int + + """An object relationship""" + pokemon_v2_pokemon: pokemon_v2_pokemon + + """An array relationship""" + pokemon_v2_pokemonformgenerations( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonformgeneration_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonformgeneration_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonformgeneration_bool_exp + ): [pokemon_v2_pokemonformgeneration!]! + + """An aggregate relationship""" + pokemon_v2_pokemonformgenerations_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonformgeneration_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonformgeneration_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonformgeneration_bool_exp + ): pokemon_v2_pokemonformgeneration_aggregate! + + """An array relationship""" + pokemon_v2_pokemonformnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonformname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonformname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonformname_bool_exp + ): [pokemon_v2_pokemonformname!]! + + """An aggregate relationship""" + pokemon_v2_pokemonformnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonformname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonformname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonformname_bool_exp + ): pokemon_v2_pokemonformname_aggregate! + + """An array relationship""" + pokemon_v2_pokemonformsprites( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonformsprites_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonformsprites_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonformsprites_bool_exp + ): [pokemon_v2_pokemonformsprites!]! + + """An aggregate relationship""" + pokemon_v2_pokemonformsprites_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonformsprites_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonformsprites_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonformsprites_bool_exp + ): pokemon_v2_pokemonformsprites_aggregate! + + """An array relationship""" + pokemon_v2_pokemonformtypes( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonformtype_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonformtype_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonformtype_bool_exp + ): [pokemon_v2_pokemonformtype!]! + + """An aggregate relationship""" + pokemon_v2_pokemonformtypes_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonformtype_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonformtype_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonformtype_bool_exp + ): pokemon_v2_pokemonformtype_aggregate! + + """An object relationship""" + pokemon_v2_versiongroup: pokemon_v2_versiongroup + version_group_id: Int +} + +""" +aggregated selection of "pokemon_v2_pokemonform" +""" +type pokemon_v2_pokemonform_aggregate { + aggregate: pokemon_v2_pokemonform_aggregate_fields + nodes: [pokemon_v2_pokemonform!]! +} + +input pokemon_v2_pokemonform_aggregate_bool_exp { + bool_and: pokemon_v2_pokemonform_aggregate_bool_exp_bool_and + bool_or: pokemon_v2_pokemonform_aggregate_bool_exp_bool_or + count: pokemon_v2_pokemonform_aggregate_bool_exp_count +} + +input pokemon_v2_pokemonform_aggregate_bool_exp_bool_and { + arguments: pokemon_v2_pokemonform_select_column_pokemon_v2_pokemonform_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: pokemon_v2_pokemonform_bool_exp + predicate: Boolean_comparison_exp! +} + +input pokemon_v2_pokemonform_aggregate_bool_exp_bool_or { + arguments: pokemon_v2_pokemonform_select_column_pokemon_v2_pokemonform_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: pokemon_v2_pokemonform_bool_exp + predicate: Boolean_comparison_exp! +} + +input pokemon_v2_pokemonform_aggregate_bool_exp_count { + arguments: [pokemon_v2_pokemonform_select_column!] + distinct: Boolean + filter: pokemon_v2_pokemonform_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_pokemonform" +""" +type pokemon_v2_pokemonform_aggregate_fields { + avg: pokemon_v2_pokemonform_avg_fields + count(columns: [pokemon_v2_pokemonform_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokemonform_max_fields + min: pokemon_v2_pokemonform_min_fields + stddev: pokemon_v2_pokemonform_stddev_fields + stddev_pop: pokemon_v2_pokemonform_stddev_pop_fields + stddev_samp: pokemon_v2_pokemonform_stddev_samp_fields + sum: pokemon_v2_pokemonform_sum_fields + var_pop: pokemon_v2_pokemonform_var_pop_fields + var_samp: pokemon_v2_pokemonform_var_samp_fields + variance: pokemon_v2_pokemonform_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_pokemonform" +""" +input pokemon_v2_pokemonform_aggregate_order_by { + avg: pokemon_v2_pokemonform_avg_order_by + count: order_by + max: pokemon_v2_pokemonform_max_order_by + min: pokemon_v2_pokemonform_min_order_by + stddev: pokemon_v2_pokemonform_stddev_order_by + stddev_pop: pokemon_v2_pokemonform_stddev_pop_order_by + stddev_samp: pokemon_v2_pokemonform_stddev_samp_order_by + sum: pokemon_v2_pokemonform_sum_order_by + var_pop: pokemon_v2_pokemonform_var_pop_order_by + var_samp: pokemon_v2_pokemonform_var_samp_order_by + variance: pokemon_v2_pokemonform_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_pokemonform_avg_fields { + form_order: Float + id: Float + order: Float + pokemon_id: Float + version_group_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_pokemonform" +""" +input pokemon_v2_pokemonform_avg_order_by { + form_order: order_by + id: order_by + order: order_by + pokemon_id: order_by + version_group_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokemonform". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokemonform_bool_exp { + _and: [pokemon_v2_pokemonform_bool_exp!] + _not: pokemon_v2_pokemonform_bool_exp + _or: [pokemon_v2_pokemonform_bool_exp!] + form_name: String_comparison_exp + form_order: Int_comparison_exp + id: Int_comparison_exp + is_battle_only: Boolean_comparison_exp + is_default: Boolean_comparison_exp + is_mega: Boolean_comparison_exp + name: String_comparison_exp + order: Int_comparison_exp + pokemon_id: Int_comparison_exp + pokemon_v2_pokemon: pokemon_v2_pokemon_bool_exp + pokemon_v2_pokemonformgenerations: pokemon_v2_pokemonformgeneration_bool_exp + pokemon_v2_pokemonformgenerations_aggregate: pokemon_v2_pokemonformgeneration_aggregate_bool_exp + pokemon_v2_pokemonformnames: pokemon_v2_pokemonformname_bool_exp + pokemon_v2_pokemonformnames_aggregate: pokemon_v2_pokemonformname_aggregate_bool_exp + pokemon_v2_pokemonformsprites: pokemon_v2_pokemonformsprites_bool_exp + pokemon_v2_pokemonformsprites_aggregate: pokemon_v2_pokemonformsprites_aggregate_bool_exp + pokemon_v2_pokemonformtypes: pokemon_v2_pokemonformtype_bool_exp + pokemon_v2_pokemonformtypes_aggregate: pokemon_v2_pokemonformtype_aggregate_bool_exp + pokemon_v2_versiongroup: pokemon_v2_versiongroup_bool_exp + version_group_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokemonform_max_fields { + form_name: String + form_order: Int + id: Int + name: String + order: Int + pokemon_id: Int + version_group_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_pokemonform" +""" +input pokemon_v2_pokemonform_max_order_by { + form_name: order_by + form_order: order_by + id: order_by + name: order_by + order: order_by + pokemon_id: order_by + version_group_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_pokemonform_min_fields { + form_name: String + form_order: Int + id: Int + name: String + order: Int + pokemon_id: Int + version_group_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_pokemonform" +""" +input pokemon_v2_pokemonform_min_order_by { + form_name: order_by + form_order: order_by + id: order_by + name: order_by + order: order_by + pokemon_id: order_by + version_group_id: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_pokemonform".""" +input pokemon_v2_pokemonform_order_by { + form_name: order_by + form_order: order_by + id: order_by + is_battle_only: order_by + is_default: order_by + is_mega: order_by + name: order_by + order: order_by + pokemon_id: order_by + pokemon_v2_pokemon: pokemon_v2_pokemon_order_by + pokemon_v2_pokemonformgenerations_aggregate: pokemon_v2_pokemonformgeneration_aggregate_order_by + pokemon_v2_pokemonformnames_aggregate: pokemon_v2_pokemonformname_aggregate_order_by + pokemon_v2_pokemonformsprites_aggregate: pokemon_v2_pokemonformsprites_aggregate_order_by + pokemon_v2_pokemonformtypes_aggregate: pokemon_v2_pokemonformtype_aggregate_order_by + pokemon_v2_versiongroup: pokemon_v2_versiongroup_order_by + version_group_id: order_by +} + +""" +select columns of table "pokemon_v2_pokemonform" +""" +enum pokemon_v2_pokemonform_select_column { + """column name""" + form_name + + """column name""" + form_order + + """column name""" + id + + """column name""" + is_battle_only + + """column name""" + is_default + + """column name""" + is_mega + + """column name""" + name + + """column name""" + order + + """column name""" + pokemon_id + + """column name""" + version_group_id +} + +""" +select "pokemon_v2_pokemonform_aggregate_bool_exp_bool_and_arguments_columns" columns of table "pokemon_v2_pokemonform" +""" +enum pokemon_v2_pokemonform_select_column_pokemon_v2_pokemonform_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + is_battle_only + + """column name""" + is_default + + """column name""" + is_mega +} + +""" +select "pokemon_v2_pokemonform_aggregate_bool_exp_bool_or_arguments_columns" columns of table "pokemon_v2_pokemonform" +""" +enum pokemon_v2_pokemonform_select_column_pokemon_v2_pokemonform_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + is_battle_only + + """column name""" + is_default + + """column name""" + is_mega +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokemonform_stddev_fields { + form_order: Float + id: Float + order: Float + pokemon_id: Float + version_group_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_pokemonform" +""" +input pokemon_v2_pokemonform_stddev_order_by { + form_order: order_by + id: order_by + order: order_by + pokemon_id: order_by + version_group_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokemonform_stddev_pop_fields { + form_order: Float + id: Float + order: Float + pokemon_id: Float + version_group_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_pokemonform" +""" +input pokemon_v2_pokemonform_stddev_pop_order_by { + form_order: order_by + id: order_by + order: order_by + pokemon_id: order_by + version_group_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokemonform_stddev_samp_fields { + form_order: Float + id: Float + order: Float + pokemon_id: Float + version_group_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_pokemonform" +""" +input pokemon_v2_pokemonform_stddev_samp_order_by { + form_order: order_by + id: order_by + order: order_by + pokemon_id: order_by + version_group_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_pokemonform" +""" +input pokemon_v2_pokemonform_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokemonform_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokemonform_stream_cursor_value_input { + form_name: String + form_order: Int + id: Int + is_battle_only: Boolean + is_default: Boolean + is_mega: Boolean + name: String + order: Int + pokemon_id: Int + version_group_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_pokemonform_sum_fields { + form_order: Int + id: Int + order: Int + pokemon_id: Int + version_group_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_pokemonform" +""" +input pokemon_v2_pokemonform_sum_order_by { + form_order: order_by + id: order_by + order: order_by + pokemon_id: order_by + version_group_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokemonform_var_pop_fields { + form_order: Float + id: Float + order: Float + pokemon_id: Float + version_group_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_pokemonform" +""" +input pokemon_v2_pokemonform_var_pop_order_by { + form_order: order_by + id: order_by + order: order_by + pokemon_id: order_by + version_group_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokemonform_var_samp_fields { + form_order: Float + id: Float + order: Float + pokemon_id: Float + version_group_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_pokemonform" +""" +input pokemon_v2_pokemonform_var_samp_order_by { + form_order: order_by + id: order_by + order: order_by + pokemon_id: order_by + version_group_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_pokemonform_variance_fields { + form_order: Float + id: Float + order: Float + pokemon_id: Float + version_group_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_pokemonform" +""" +input pokemon_v2_pokemonform_variance_order_by { + form_order: order_by + id: order_by + order: order_by + pokemon_id: order_by + version_group_id: order_by +} + +""" +columns and relationships of "pokemon_v2_pokemonformgeneration" +""" +type pokemon_v2_pokemonformgeneration { + game_index: Int! + generation_id: Int + id: Int! + pokemon_form_id: Int + + """An object relationship""" + pokemon_v2_generation: pokemon_v2_generation + + """An object relationship""" + pokemon_v2_pokemonform: pokemon_v2_pokemonform +} + +""" +aggregated selection of "pokemon_v2_pokemonformgeneration" +""" +type pokemon_v2_pokemonformgeneration_aggregate { + aggregate: pokemon_v2_pokemonformgeneration_aggregate_fields + nodes: [pokemon_v2_pokemonformgeneration!]! +} + +input pokemon_v2_pokemonformgeneration_aggregate_bool_exp { + count: pokemon_v2_pokemonformgeneration_aggregate_bool_exp_count +} + +input pokemon_v2_pokemonformgeneration_aggregate_bool_exp_count { + arguments: [pokemon_v2_pokemonformgeneration_select_column!] + distinct: Boolean + filter: pokemon_v2_pokemonformgeneration_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_pokemonformgeneration" +""" +type pokemon_v2_pokemonformgeneration_aggregate_fields { + avg: pokemon_v2_pokemonformgeneration_avg_fields + count(columns: [pokemon_v2_pokemonformgeneration_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokemonformgeneration_max_fields + min: pokemon_v2_pokemonformgeneration_min_fields + stddev: pokemon_v2_pokemonformgeneration_stddev_fields + stddev_pop: pokemon_v2_pokemonformgeneration_stddev_pop_fields + stddev_samp: pokemon_v2_pokemonformgeneration_stddev_samp_fields + sum: pokemon_v2_pokemonformgeneration_sum_fields + var_pop: pokemon_v2_pokemonformgeneration_var_pop_fields + var_samp: pokemon_v2_pokemonformgeneration_var_samp_fields + variance: pokemon_v2_pokemonformgeneration_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_pokemonformgeneration" +""" +input pokemon_v2_pokemonformgeneration_aggregate_order_by { + avg: pokemon_v2_pokemonformgeneration_avg_order_by + count: order_by + max: pokemon_v2_pokemonformgeneration_max_order_by + min: pokemon_v2_pokemonformgeneration_min_order_by + stddev: pokemon_v2_pokemonformgeneration_stddev_order_by + stddev_pop: pokemon_v2_pokemonformgeneration_stddev_pop_order_by + stddev_samp: pokemon_v2_pokemonformgeneration_stddev_samp_order_by + sum: pokemon_v2_pokemonformgeneration_sum_order_by + var_pop: pokemon_v2_pokemonformgeneration_var_pop_order_by + var_samp: pokemon_v2_pokemonformgeneration_var_samp_order_by + variance: pokemon_v2_pokemonformgeneration_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_pokemonformgeneration_avg_fields { + game_index: Float + generation_id: Float + id: Float + pokemon_form_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_pokemonformgeneration" +""" +input pokemon_v2_pokemonformgeneration_avg_order_by { + game_index: order_by + generation_id: order_by + id: order_by + pokemon_form_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokemonformgeneration". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokemonformgeneration_bool_exp { + _and: [pokemon_v2_pokemonformgeneration_bool_exp!] + _not: pokemon_v2_pokemonformgeneration_bool_exp + _or: [pokemon_v2_pokemonformgeneration_bool_exp!] + game_index: Int_comparison_exp + generation_id: Int_comparison_exp + id: Int_comparison_exp + pokemon_form_id: Int_comparison_exp + pokemon_v2_generation: pokemon_v2_generation_bool_exp + pokemon_v2_pokemonform: pokemon_v2_pokemonform_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokemonformgeneration_max_fields { + game_index: Int + generation_id: Int + id: Int + pokemon_form_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_pokemonformgeneration" +""" +input pokemon_v2_pokemonformgeneration_max_order_by { + game_index: order_by + generation_id: order_by + id: order_by + pokemon_form_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_pokemonformgeneration_min_fields { + game_index: Int + generation_id: Int + id: Int + pokemon_form_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_pokemonformgeneration" +""" +input pokemon_v2_pokemonformgeneration_min_order_by { + game_index: order_by + generation_id: order_by + id: order_by + pokemon_form_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_pokemonformgeneration". +""" +input pokemon_v2_pokemonformgeneration_order_by { + game_index: order_by + generation_id: order_by + id: order_by + pokemon_form_id: order_by + pokemon_v2_generation: pokemon_v2_generation_order_by + pokemon_v2_pokemonform: pokemon_v2_pokemonform_order_by +} + +""" +select columns of table "pokemon_v2_pokemonformgeneration" +""" +enum pokemon_v2_pokemonformgeneration_select_column { + """column name""" + game_index + + """column name""" + generation_id + + """column name""" + id + + """column name""" + pokemon_form_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokemonformgeneration_stddev_fields { + game_index: Float + generation_id: Float + id: Float + pokemon_form_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_pokemonformgeneration" +""" +input pokemon_v2_pokemonformgeneration_stddev_order_by { + game_index: order_by + generation_id: order_by + id: order_by + pokemon_form_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokemonformgeneration_stddev_pop_fields { + game_index: Float + generation_id: Float + id: Float + pokemon_form_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_pokemonformgeneration" +""" +input pokemon_v2_pokemonformgeneration_stddev_pop_order_by { + game_index: order_by + generation_id: order_by + id: order_by + pokemon_form_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokemonformgeneration_stddev_samp_fields { + game_index: Float + generation_id: Float + id: Float + pokemon_form_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_pokemonformgeneration" +""" +input pokemon_v2_pokemonformgeneration_stddev_samp_order_by { + game_index: order_by + generation_id: order_by + id: order_by + pokemon_form_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_pokemonformgeneration" +""" +input pokemon_v2_pokemonformgeneration_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokemonformgeneration_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokemonformgeneration_stream_cursor_value_input { + game_index: Int + generation_id: Int + id: Int + pokemon_form_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_pokemonformgeneration_sum_fields { + game_index: Int + generation_id: Int + id: Int + pokemon_form_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_pokemonformgeneration" +""" +input pokemon_v2_pokemonformgeneration_sum_order_by { + game_index: order_by + generation_id: order_by + id: order_by + pokemon_form_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokemonformgeneration_var_pop_fields { + game_index: Float + generation_id: Float + id: Float + pokemon_form_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_pokemonformgeneration" +""" +input pokemon_v2_pokemonformgeneration_var_pop_order_by { + game_index: order_by + generation_id: order_by + id: order_by + pokemon_form_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokemonformgeneration_var_samp_fields { + game_index: Float + generation_id: Float + id: Float + pokemon_form_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_pokemonformgeneration" +""" +input pokemon_v2_pokemonformgeneration_var_samp_order_by { + game_index: order_by + generation_id: order_by + id: order_by + pokemon_form_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_pokemonformgeneration_variance_fields { + game_index: Float + generation_id: Float + id: Float + pokemon_form_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_pokemonformgeneration" +""" +input pokemon_v2_pokemonformgeneration_variance_order_by { + game_index: order_by + generation_id: order_by + id: order_by + pokemon_form_id: order_by +} + +""" +columns and relationships of "pokemon_v2_pokemonformname" +""" +type pokemon_v2_pokemonformname { + id: Int! + language_id: Int + name: String! + pokemon_form_id: Int + pokemon_name: String! + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_pokemonform: pokemon_v2_pokemonform +} + +""" +aggregated selection of "pokemon_v2_pokemonformname" +""" +type pokemon_v2_pokemonformname_aggregate { + aggregate: pokemon_v2_pokemonformname_aggregate_fields + nodes: [pokemon_v2_pokemonformname!]! +} + +input pokemon_v2_pokemonformname_aggregate_bool_exp { + count: pokemon_v2_pokemonformname_aggregate_bool_exp_count +} + +input pokemon_v2_pokemonformname_aggregate_bool_exp_count { + arguments: [pokemon_v2_pokemonformname_select_column!] + distinct: Boolean + filter: pokemon_v2_pokemonformname_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_pokemonformname" +""" +type pokemon_v2_pokemonformname_aggregate_fields { + avg: pokemon_v2_pokemonformname_avg_fields + count(columns: [pokemon_v2_pokemonformname_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokemonformname_max_fields + min: pokemon_v2_pokemonformname_min_fields + stddev: pokemon_v2_pokemonformname_stddev_fields + stddev_pop: pokemon_v2_pokemonformname_stddev_pop_fields + stddev_samp: pokemon_v2_pokemonformname_stddev_samp_fields + sum: pokemon_v2_pokemonformname_sum_fields + var_pop: pokemon_v2_pokemonformname_var_pop_fields + var_samp: pokemon_v2_pokemonformname_var_samp_fields + variance: pokemon_v2_pokemonformname_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_pokemonformname" +""" +input pokemon_v2_pokemonformname_aggregate_order_by { + avg: pokemon_v2_pokemonformname_avg_order_by + count: order_by + max: pokemon_v2_pokemonformname_max_order_by + min: pokemon_v2_pokemonformname_min_order_by + stddev: pokemon_v2_pokemonformname_stddev_order_by + stddev_pop: pokemon_v2_pokemonformname_stddev_pop_order_by + stddev_samp: pokemon_v2_pokemonformname_stddev_samp_order_by + sum: pokemon_v2_pokemonformname_sum_order_by + var_pop: pokemon_v2_pokemonformname_var_pop_order_by + var_samp: pokemon_v2_pokemonformname_var_samp_order_by + variance: pokemon_v2_pokemonformname_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_pokemonformname_avg_fields { + id: Float + language_id: Float + pokemon_form_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_pokemonformname" +""" +input pokemon_v2_pokemonformname_avg_order_by { + id: order_by + language_id: order_by + pokemon_form_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokemonformname". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokemonformname_bool_exp { + _and: [pokemon_v2_pokemonformname_bool_exp!] + _not: pokemon_v2_pokemonformname_bool_exp + _or: [pokemon_v2_pokemonformname_bool_exp!] + id: Int_comparison_exp + language_id: Int_comparison_exp + name: String_comparison_exp + pokemon_form_id: Int_comparison_exp + pokemon_name: String_comparison_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_pokemonform: pokemon_v2_pokemonform_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokemonformname_max_fields { + id: Int + language_id: Int + name: String + pokemon_form_id: Int + pokemon_name: String +} + +""" +order by max() on columns of table "pokemon_v2_pokemonformname" +""" +input pokemon_v2_pokemonformname_max_order_by { + id: order_by + language_id: order_by + name: order_by + pokemon_form_id: order_by + pokemon_name: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_pokemonformname_min_fields { + id: Int + language_id: Int + name: String + pokemon_form_id: Int + pokemon_name: String +} + +""" +order by min() on columns of table "pokemon_v2_pokemonformname" +""" +input pokemon_v2_pokemonformname_min_order_by { + id: order_by + language_id: order_by + name: order_by + pokemon_form_id: order_by + pokemon_name: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_pokemonformname". +""" +input pokemon_v2_pokemonformname_order_by { + id: order_by + language_id: order_by + name: order_by + pokemon_form_id: order_by + pokemon_name: order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_pokemonform: pokemon_v2_pokemonform_order_by +} + +""" +select columns of table "pokemon_v2_pokemonformname" +""" +enum pokemon_v2_pokemonformname_select_column { + """column name""" + id + + """column name""" + language_id + + """column name""" + name + + """column name""" + pokemon_form_id + + """column name""" + pokemon_name +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokemonformname_stddev_fields { + id: Float + language_id: Float + pokemon_form_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_pokemonformname" +""" +input pokemon_v2_pokemonformname_stddev_order_by { + id: order_by + language_id: order_by + pokemon_form_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokemonformname_stddev_pop_fields { + id: Float + language_id: Float + pokemon_form_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_pokemonformname" +""" +input pokemon_v2_pokemonformname_stddev_pop_order_by { + id: order_by + language_id: order_by + pokemon_form_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokemonformname_stddev_samp_fields { + id: Float + language_id: Float + pokemon_form_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_pokemonformname" +""" +input pokemon_v2_pokemonformname_stddev_samp_order_by { + id: order_by + language_id: order_by + pokemon_form_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_pokemonformname" +""" +input pokemon_v2_pokemonformname_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokemonformname_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokemonformname_stream_cursor_value_input { + id: Int + language_id: Int + name: String + pokemon_form_id: Int + pokemon_name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_pokemonformname_sum_fields { + id: Int + language_id: Int + pokemon_form_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_pokemonformname" +""" +input pokemon_v2_pokemonformname_sum_order_by { + id: order_by + language_id: order_by + pokemon_form_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokemonformname_var_pop_fields { + id: Float + language_id: Float + pokemon_form_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_pokemonformname" +""" +input pokemon_v2_pokemonformname_var_pop_order_by { + id: order_by + language_id: order_by + pokemon_form_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokemonformname_var_samp_fields { + id: Float + language_id: Float + pokemon_form_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_pokemonformname" +""" +input pokemon_v2_pokemonformname_var_samp_order_by { + id: order_by + language_id: order_by + pokemon_form_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_pokemonformname_variance_fields { + id: Float + language_id: Float + pokemon_form_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_pokemonformname" +""" +input pokemon_v2_pokemonformname_variance_order_by { + id: order_by + language_id: order_by + pokemon_form_id: order_by +} + +""" +columns and relationships of "pokemon_v2_pokemonformsprites" +""" +type pokemon_v2_pokemonformsprites { + id: Int! + pokemon_form_id: Int + + """An object relationship""" + pokemon_v2_pokemonform: pokemon_v2_pokemonform + sprites( + """JSON select path""" + path: String + ): jsonb! +} + +""" +aggregated selection of "pokemon_v2_pokemonformsprites" +""" +type pokemon_v2_pokemonformsprites_aggregate { + aggregate: pokemon_v2_pokemonformsprites_aggregate_fields + nodes: [pokemon_v2_pokemonformsprites!]! +} + +input pokemon_v2_pokemonformsprites_aggregate_bool_exp { + count: pokemon_v2_pokemonformsprites_aggregate_bool_exp_count +} + +input pokemon_v2_pokemonformsprites_aggregate_bool_exp_count { + arguments: [pokemon_v2_pokemonformsprites_select_column!] + distinct: Boolean + filter: pokemon_v2_pokemonformsprites_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_pokemonformsprites" +""" +type pokemon_v2_pokemonformsprites_aggregate_fields { + avg: pokemon_v2_pokemonformsprites_avg_fields + count(columns: [pokemon_v2_pokemonformsprites_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokemonformsprites_max_fields + min: pokemon_v2_pokemonformsprites_min_fields + stddev: pokemon_v2_pokemonformsprites_stddev_fields + stddev_pop: pokemon_v2_pokemonformsprites_stddev_pop_fields + stddev_samp: pokemon_v2_pokemonformsprites_stddev_samp_fields + sum: pokemon_v2_pokemonformsprites_sum_fields + var_pop: pokemon_v2_pokemonformsprites_var_pop_fields + var_samp: pokemon_v2_pokemonformsprites_var_samp_fields + variance: pokemon_v2_pokemonformsprites_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_pokemonformsprites" +""" +input pokemon_v2_pokemonformsprites_aggregate_order_by { + avg: pokemon_v2_pokemonformsprites_avg_order_by + count: order_by + max: pokemon_v2_pokemonformsprites_max_order_by + min: pokemon_v2_pokemonformsprites_min_order_by + stddev: pokemon_v2_pokemonformsprites_stddev_order_by + stddev_pop: pokemon_v2_pokemonformsprites_stddev_pop_order_by + stddev_samp: pokemon_v2_pokemonformsprites_stddev_samp_order_by + sum: pokemon_v2_pokemonformsprites_sum_order_by + var_pop: pokemon_v2_pokemonformsprites_var_pop_order_by + var_samp: pokemon_v2_pokemonformsprites_var_samp_order_by + variance: pokemon_v2_pokemonformsprites_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_pokemonformsprites_avg_fields { + id: Float + pokemon_form_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_pokemonformsprites" +""" +input pokemon_v2_pokemonformsprites_avg_order_by { + id: order_by + pokemon_form_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokemonformsprites". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokemonformsprites_bool_exp { + _and: [pokemon_v2_pokemonformsprites_bool_exp!] + _not: pokemon_v2_pokemonformsprites_bool_exp + _or: [pokemon_v2_pokemonformsprites_bool_exp!] + id: Int_comparison_exp + pokemon_form_id: Int_comparison_exp + pokemon_v2_pokemonform: pokemon_v2_pokemonform_bool_exp + sprites: jsonb_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokemonformsprites_max_fields { + id: Int + pokemon_form_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_pokemonformsprites" +""" +input pokemon_v2_pokemonformsprites_max_order_by { + id: order_by + pokemon_form_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_pokemonformsprites_min_fields { + id: Int + pokemon_form_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_pokemonformsprites" +""" +input pokemon_v2_pokemonformsprites_min_order_by { + id: order_by + pokemon_form_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_pokemonformsprites". +""" +input pokemon_v2_pokemonformsprites_order_by { + id: order_by + pokemon_form_id: order_by + pokemon_v2_pokemonform: pokemon_v2_pokemonform_order_by + sprites: order_by +} + +""" +select columns of table "pokemon_v2_pokemonformsprites" +""" +enum pokemon_v2_pokemonformsprites_select_column { + """column name""" + id + + """column name""" + pokemon_form_id + + """column name""" + sprites +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokemonformsprites_stddev_fields { + id: Float + pokemon_form_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_pokemonformsprites" +""" +input pokemon_v2_pokemonformsprites_stddev_order_by { + id: order_by + pokemon_form_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokemonformsprites_stddev_pop_fields { + id: Float + pokemon_form_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_pokemonformsprites" +""" +input pokemon_v2_pokemonformsprites_stddev_pop_order_by { + id: order_by + pokemon_form_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokemonformsprites_stddev_samp_fields { + id: Float + pokemon_form_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_pokemonformsprites" +""" +input pokemon_v2_pokemonformsprites_stddev_samp_order_by { + id: order_by + pokemon_form_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_pokemonformsprites" +""" +input pokemon_v2_pokemonformsprites_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokemonformsprites_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokemonformsprites_stream_cursor_value_input { + id: Int + pokemon_form_id: Int + sprites: jsonb +} + +"""aggregate sum on columns""" +type pokemon_v2_pokemonformsprites_sum_fields { + id: Int + pokemon_form_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_pokemonformsprites" +""" +input pokemon_v2_pokemonformsprites_sum_order_by { + id: order_by + pokemon_form_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokemonformsprites_var_pop_fields { + id: Float + pokemon_form_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_pokemonformsprites" +""" +input pokemon_v2_pokemonformsprites_var_pop_order_by { + id: order_by + pokemon_form_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokemonformsprites_var_samp_fields { + id: Float + pokemon_form_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_pokemonformsprites" +""" +input pokemon_v2_pokemonformsprites_var_samp_order_by { + id: order_by + pokemon_form_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_pokemonformsprites_variance_fields { + id: Float + pokemon_form_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_pokemonformsprites" +""" +input pokemon_v2_pokemonformsprites_variance_order_by { + id: order_by + pokemon_form_id: order_by +} + +""" +columns and relationships of "pokemon_v2_pokemonformtype" +""" +type pokemon_v2_pokemonformtype { + id: Int! + pokemon_form_id: Int + + """An object relationship""" + pokemon_v2_pokemonform: pokemon_v2_pokemonform + + """An object relationship""" + pokemon_v2_type: pokemon_v2_type + slot: Int! + type_id: Int +} + +""" +aggregated selection of "pokemon_v2_pokemonformtype" +""" +type pokemon_v2_pokemonformtype_aggregate { + aggregate: pokemon_v2_pokemonformtype_aggregate_fields + nodes: [pokemon_v2_pokemonformtype!]! +} + +input pokemon_v2_pokemonformtype_aggregate_bool_exp { + count: pokemon_v2_pokemonformtype_aggregate_bool_exp_count +} + +input pokemon_v2_pokemonformtype_aggregate_bool_exp_count { + arguments: [pokemon_v2_pokemonformtype_select_column!] + distinct: Boolean + filter: pokemon_v2_pokemonformtype_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_pokemonformtype" +""" +type pokemon_v2_pokemonformtype_aggregate_fields { + avg: pokemon_v2_pokemonformtype_avg_fields + count(columns: [pokemon_v2_pokemonformtype_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokemonformtype_max_fields + min: pokemon_v2_pokemonformtype_min_fields + stddev: pokemon_v2_pokemonformtype_stddev_fields + stddev_pop: pokemon_v2_pokemonformtype_stddev_pop_fields + stddev_samp: pokemon_v2_pokemonformtype_stddev_samp_fields + sum: pokemon_v2_pokemonformtype_sum_fields + var_pop: pokemon_v2_pokemonformtype_var_pop_fields + var_samp: pokemon_v2_pokemonformtype_var_samp_fields + variance: pokemon_v2_pokemonformtype_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_pokemonformtype" +""" +input pokemon_v2_pokemonformtype_aggregate_order_by { + avg: pokemon_v2_pokemonformtype_avg_order_by + count: order_by + max: pokemon_v2_pokemonformtype_max_order_by + min: pokemon_v2_pokemonformtype_min_order_by + stddev: pokemon_v2_pokemonformtype_stddev_order_by + stddev_pop: pokemon_v2_pokemonformtype_stddev_pop_order_by + stddev_samp: pokemon_v2_pokemonformtype_stddev_samp_order_by + sum: pokemon_v2_pokemonformtype_sum_order_by + var_pop: pokemon_v2_pokemonformtype_var_pop_order_by + var_samp: pokemon_v2_pokemonformtype_var_samp_order_by + variance: pokemon_v2_pokemonformtype_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_pokemonformtype_avg_fields { + id: Float + pokemon_form_id: Float + slot: Float + type_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_pokemonformtype" +""" +input pokemon_v2_pokemonformtype_avg_order_by { + id: order_by + pokemon_form_id: order_by + slot: order_by + type_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokemonformtype". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokemonformtype_bool_exp { + _and: [pokemon_v2_pokemonformtype_bool_exp!] + _not: pokemon_v2_pokemonformtype_bool_exp + _or: [pokemon_v2_pokemonformtype_bool_exp!] + id: Int_comparison_exp + pokemon_form_id: Int_comparison_exp + pokemon_v2_pokemonform: pokemon_v2_pokemonform_bool_exp + pokemon_v2_type: pokemon_v2_type_bool_exp + slot: Int_comparison_exp + type_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokemonformtype_max_fields { + id: Int + pokemon_form_id: Int + slot: Int + type_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_pokemonformtype" +""" +input pokemon_v2_pokemonformtype_max_order_by { + id: order_by + pokemon_form_id: order_by + slot: order_by + type_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_pokemonformtype_min_fields { + id: Int + pokemon_form_id: Int + slot: Int + type_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_pokemonformtype" +""" +input pokemon_v2_pokemonformtype_min_order_by { + id: order_by + pokemon_form_id: order_by + slot: order_by + type_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_pokemonformtype". +""" +input pokemon_v2_pokemonformtype_order_by { + id: order_by + pokemon_form_id: order_by + pokemon_v2_pokemonform: pokemon_v2_pokemonform_order_by + pokemon_v2_type: pokemon_v2_type_order_by + slot: order_by + type_id: order_by +} + +""" +select columns of table "pokemon_v2_pokemonformtype" +""" +enum pokemon_v2_pokemonformtype_select_column { + """column name""" + id + + """column name""" + pokemon_form_id + + """column name""" + slot + + """column name""" + type_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokemonformtype_stddev_fields { + id: Float + pokemon_form_id: Float + slot: Float + type_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_pokemonformtype" +""" +input pokemon_v2_pokemonformtype_stddev_order_by { + id: order_by + pokemon_form_id: order_by + slot: order_by + type_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokemonformtype_stddev_pop_fields { + id: Float + pokemon_form_id: Float + slot: Float + type_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_pokemonformtype" +""" +input pokemon_v2_pokemonformtype_stddev_pop_order_by { + id: order_by + pokemon_form_id: order_by + slot: order_by + type_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokemonformtype_stddev_samp_fields { + id: Float + pokemon_form_id: Float + slot: Float + type_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_pokemonformtype" +""" +input pokemon_v2_pokemonformtype_stddev_samp_order_by { + id: order_by + pokemon_form_id: order_by + slot: order_by + type_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_pokemonformtype" +""" +input pokemon_v2_pokemonformtype_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokemonformtype_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokemonformtype_stream_cursor_value_input { + id: Int + pokemon_form_id: Int + slot: Int + type_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_pokemonformtype_sum_fields { + id: Int + pokemon_form_id: Int + slot: Int + type_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_pokemonformtype" +""" +input pokemon_v2_pokemonformtype_sum_order_by { + id: order_by + pokemon_form_id: order_by + slot: order_by + type_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokemonformtype_var_pop_fields { + id: Float + pokemon_form_id: Float + slot: Float + type_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_pokemonformtype" +""" +input pokemon_v2_pokemonformtype_var_pop_order_by { + id: order_by + pokemon_form_id: order_by + slot: order_by + type_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokemonformtype_var_samp_fields { + id: Float + pokemon_form_id: Float + slot: Float + type_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_pokemonformtype" +""" +input pokemon_v2_pokemonformtype_var_samp_order_by { + id: order_by + pokemon_form_id: order_by + slot: order_by + type_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_pokemonformtype_variance_fields { + id: Float + pokemon_form_id: Float + slot: Float + type_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_pokemonformtype" +""" +input pokemon_v2_pokemonformtype_variance_order_by { + id: order_by + pokemon_form_id: order_by + slot: order_by + type_id: order_by +} + +""" +columns and relationships of "pokemon_v2_pokemongameindex" +""" +type pokemon_v2_pokemongameindex { + game_index: Int! + id: Int! + pokemon_id: Int + + """An object relationship""" + pokemon_v2_pokemon: pokemon_v2_pokemon + + """An object relationship""" + pokemon_v2_version: pokemon_v2_version + version_id: Int +} + +""" +aggregated selection of "pokemon_v2_pokemongameindex" +""" +type pokemon_v2_pokemongameindex_aggregate { + aggregate: pokemon_v2_pokemongameindex_aggregate_fields + nodes: [pokemon_v2_pokemongameindex!]! +} + +input pokemon_v2_pokemongameindex_aggregate_bool_exp { + count: pokemon_v2_pokemongameindex_aggregate_bool_exp_count +} + +input pokemon_v2_pokemongameindex_aggregate_bool_exp_count { + arguments: [pokemon_v2_pokemongameindex_select_column!] + distinct: Boolean + filter: pokemon_v2_pokemongameindex_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_pokemongameindex" +""" +type pokemon_v2_pokemongameindex_aggregate_fields { + avg: pokemon_v2_pokemongameindex_avg_fields + count(columns: [pokemon_v2_pokemongameindex_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokemongameindex_max_fields + min: pokemon_v2_pokemongameindex_min_fields + stddev: pokemon_v2_pokemongameindex_stddev_fields + stddev_pop: pokemon_v2_pokemongameindex_stddev_pop_fields + stddev_samp: pokemon_v2_pokemongameindex_stddev_samp_fields + sum: pokemon_v2_pokemongameindex_sum_fields + var_pop: pokemon_v2_pokemongameindex_var_pop_fields + var_samp: pokemon_v2_pokemongameindex_var_samp_fields + variance: pokemon_v2_pokemongameindex_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_pokemongameindex" +""" +input pokemon_v2_pokemongameindex_aggregate_order_by { + avg: pokemon_v2_pokemongameindex_avg_order_by + count: order_by + max: pokemon_v2_pokemongameindex_max_order_by + min: pokemon_v2_pokemongameindex_min_order_by + stddev: pokemon_v2_pokemongameindex_stddev_order_by + stddev_pop: pokemon_v2_pokemongameindex_stddev_pop_order_by + stddev_samp: pokemon_v2_pokemongameindex_stddev_samp_order_by + sum: pokemon_v2_pokemongameindex_sum_order_by + var_pop: pokemon_v2_pokemongameindex_var_pop_order_by + var_samp: pokemon_v2_pokemongameindex_var_samp_order_by + variance: pokemon_v2_pokemongameindex_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_pokemongameindex_avg_fields { + game_index: Float + id: Float + pokemon_id: Float + version_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_pokemongameindex" +""" +input pokemon_v2_pokemongameindex_avg_order_by { + game_index: order_by + id: order_by + pokemon_id: order_by + version_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokemongameindex". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokemongameindex_bool_exp { + _and: [pokemon_v2_pokemongameindex_bool_exp!] + _not: pokemon_v2_pokemongameindex_bool_exp + _or: [pokemon_v2_pokemongameindex_bool_exp!] + game_index: Int_comparison_exp + id: Int_comparison_exp + pokemon_id: Int_comparison_exp + pokemon_v2_pokemon: pokemon_v2_pokemon_bool_exp + pokemon_v2_version: pokemon_v2_version_bool_exp + version_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokemongameindex_max_fields { + game_index: Int + id: Int + pokemon_id: Int + version_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_pokemongameindex" +""" +input pokemon_v2_pokemongameindex_max_order_by { + game_index: order_by + id: order_by + pokemon_id: order_by + version_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_pokemongameindex_min_fields { + game_index: Int + id: Int + pokemon_id: Int + version_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_pokemongameindex" +""" +input pokemon_v2_pokemongameindex_min_order_by { + game_index: order_by + id: order_by + pokemon_id: order_by + version_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_pokemongameindex". +""" +input pokemon_v2_pokemongameindex_order_by { + game_index: order_by + id: order_by + pokemon_id: order_by + pokemon_v2_pokemon: pokemon_v2_pokemon_order_by + pokemon_v2_version: pokemon_v2_version_order_by + version_id: order_by +} + +""" +select columns of table "pokemon_v2_pokemongameindex" +""" +enum pokemon_v2_pokemongameindex_select_column { + """column name""" + game_index + + """column name""" + id + + """column name""" + pokemon_id + + """column name""" + version_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokemongameindex_stddev_fields { + game_index: Float + id: Float + pokemon_id: Float + version_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_pokemongameindex" +""" +input pokemon_v2_pokemongameindex_stddev_order_by { + game_index: order_by + id: order_by + pokemon_id: order_by + version_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokemongameindex_stddev_pop_fields { + game_index: Float + id: Float + pokemon_id: Float + version_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_pokemongameindex" +""" +input pokemon_v2_pokemongameindex_stddev_pop_order_by { + game_index: order_by + id: order_by + pokemon_id: order_by + version_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokemongameindex_stddev_samp_fields { + game_index: Float + id: Float + pokemon_id: Float + version_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_pokemongameindex" +""" +input pokemon_v2_pokemongameindex_stddev_samp_order_by { + game_index: order_by + id: order_by + pokemon_id: order_by + version_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_pokemongameindex" +""" +input pokemon_v2_pokemongameindex_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokemongameindex_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokemongameindex_stream_cursor_value_input { + game_index: Int + id: Int + pokemon_id: Int + version_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_pokemongameindex_sum_fields { + game_index: Int + id: Int + pokemon_id: Int + version_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_pokemongameindex" +""" +input pokemon_v2_pokemongameindex_sum_order_by { + game_index: order_by + id: order_by + pokemon_id: order_by + version_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokemongameindex_var_pop_fields { + game_index: Float + id: Float + pokemon_id: Float + version_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_pokemongameindex" +""" +input pokemon_v2_pokemongameindex_var_pop_order_by { + game_index: order_by + id: order_by + pokemon_id: order_by + version_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokemongameindex_var_samp_fields { + game_index: Float + id: Float + pokemon_id: Float + version_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_pokemongameindex" +""" +input pokemon_v2_pokemongameindex_var_samp_order_by { + game_index: order_by + id: order_by + pokemon_id: order_by + version_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_pokemongameindex_variance_fields { + game_index: Float + id: Float + pokemon_id: Float + version_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_pokemongameindex" +""" +input pokemon_v2_pokemongameindex_variance_order_by { + game_index: order_by + id: order_by + pokemon_id: order_by + version_id: order_by +} + +""" +columns and relationships of "pokemon_v2_pokemonhabitat" +""" +type pokemon_v2_pokemonhabitat { + id: Int! + name: String! + + """An array relationship""" + pokemon_v2_pokemonhabitatnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonhabitatname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonhabitatname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonhabitatname_bool_exp + ): [pokemon_v2_pokemonhabitatname!]! + + """An aggregate relationship""" + pokemon_v2_pokemonhabitatnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonhabitatname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonhabitatname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonhabitatname_bool_exp + ): pokemon_v2_pokemonhabitatname_aggregate! + + """An array relationship""" + pokemon_v2_pokemonspecies( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspecies_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspecies_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspecies_bool_exp + ): [pokemon_v2_pokemonspecies!]! + + """An aggregate relationship""" + pokemon_v2_pokemonspecies_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspecies_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspecies_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspecies_bool_exp + ): pokemon_v2_pokemonspecies_aggregate! +} + +""" +aggregated selection of "pokemon_v2_pokemonhabitat" +""" +type pokemon_v2_pokemonhabitat_aggregate { + aggregate: pokemon_v2_pokemonhabitat_aggregate_fields + nodes: [pokemon_v2_pokemonhabitat!]! +} + +""" +aggregate fields of "pokemon_v2_pokemonhabitat" +""" +type pokemon_v2_pokemonhabitat_aggregate_fields { + avg: pokemon_v2_pokemonhabitat_avg_fields + count(columns: [pokemon_v2_pokemonhabitat_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokemonhabitat_max_fields + min: pokemon_v2_pokemonhabitat_min_fields + stddev: pokemon_v2_pokemonhabitat_stddev_fields + stddev_pop: pokemon_v2_pokemonhabitat_stddev_pop_fields + stddev_samp: pokemon_v2_pokemonhabitat_stddev_samp_fields + sum: pokemon_v2_pokemonhabitat_sum_fields + var_pop: pokemon_v2_pokemonhabitat_var_pop_fields + var_samp: pokemon_v2_pokemonhabitat_var_samp_fields + variance: pokemon_v2_pokemonhabitat_variance_fields +} + +"""aggregate avg on columns""" +type pokemon_v2_pokemonhabitat_avg_fields { + id: Float +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokemonhabitat". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokemonhabitat_bool_exp { + _and: [pokemon_v2_pokemonhabitat_bool_exp!] + _not: pokemon_v2_pokemonhabitat_bool_exp + _or: [pokemon_v2_pokemonhabitat_bool_exp!] + id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_pokemonhabitatnames: pokemon_v2_pokemonhabitatname_bool_exp + pokemon_v2_pokemonhabitatnames_aggregate: pokemon_v2_pokemonhabitatname_aggregate_bool_exp + pokemon_v2_pokemonspecies: pokemon_v2_pokemonspecies_bool_exp + pokemon_v2_pokemonspecies_aggregate: pokemon_v2_pokemonspecies_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokemonhabitat_max_fields { + id: Int + name: String +} + +"""aggregate min on columns""" +type pokemon_v2_pokemonhabitat_min_fields { + id: Int + name: String +} + +"""Ordering options when selecting data from "pokemon_v2_pokemonhabitat".""" +input pokemon_v2_pokemonhabitat_order_by { + id: order_by + name: order_by + pokemon_v2_pokemonhabitatnames_aggregate: pokemon_v2_pokemonhabitatname_aggregate_order_by + pokemon_v2_pokemonspecies_aggregate: pokemon_v2_pokemonspecies_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_pokemonhabitat" +""" +enum pokemon_v2_pokemonhabitat_select_column { + """column name""" + id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokemonhabitat_stddev_fields { + id: Float +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokemonhabitat_stddev_pop_fields { + id: Float +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokemonhabitat_stddev_samp_fields { + id: Float +} + +""" +Streaming cursor of the table "pokemon_v2_pokemonhabitat" +""" +input pokemon_v2_pokemonhabitat_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokemonhabitat_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokemonhabitat_stream_cursor_value_input { + id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_pokemonhabitat_sum_fields { + id: Int +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokemonhabitat_var_pop_fields { + id: Float +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokemonhabitat_var_samp_fields { + id: Float +} + +"""aggregate variance on columns""" +type pokemon_v2_pokemonhabitat_variance_fields { + id: Float +} + +""" +columns and relationships of "pokemon_v2_pokemonhabitatname" +""" +type pokemon_v2_pokemonhabitatname { + id: Int! + language_id: Int + name: String! + pokemon_habitat_id: Int + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_pokemonhabitat: pokemon_v2_pokemonhabitat +} + +""" +aggregated selection of "pokemon_v2_pokemonhabitatname" +""" +type pokemon_v2_pokemonhabitatname_aggregate { + aggregate: pokemon_v2_pokemonhabitatname_aggregate_fields + nodes: [pokemon_v2_pokemonhabitatname!]! +} + +input pokemon_v2_pokemonhabitatname_aggregate_bool_exp { + count: pokemon_v2_pokemonhabitatname_aggregate_bool_exp_count +} + +input pokemon_v2_pokemonhabitatname_aggregate_bool_exp_count { + arguments: [pokemon_v2_pokemonhabitatname_select_column!] + distinct: Boolean + filter: pokemon_v2_pokemonhabitatname_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_pokemonhabitatname" +""" +type pokemon_v2_pokemonhabitatname_aggregate_fields { + avg: pokemon_v2_pokemonhabitatname_avg_fields + count(columns: [pokemon_v2_pokemonhabitatname_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokemonhabitatname_max_fields + min: pokemon_v2_pokemonhabitatname_min_fields + stddev: pokemon_v2_pokemonhabitatname_stddev_fields + stddev_pop: pokemon_v2_pokemonhabitatname_stddev_pop_fields + stddev_samp: pokemon_v2_pokemonhabitatname_stddev_samp_fields + sum: pokemon_v2_pokemonhabitatname_sum_fields + var_pop: pokemon_v2_pokemonhabitatname_var_pop_fields + var_samp: pokemon_v2_pokemonhabitatname_var_samp_fields + variance: pokemon_v2_pokemonhabitatname_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_pokemonhabitatname" +""" +input pokemon_v2_pokemonhabitatname_aggregate_order_by { + avg: pokemon_v2_pokemonhabitatname_avg_order_by + count: order_by + max: pokemon_v2_pokemonhabitatname_max_order_by + min: pokemon_v2_pokemonhabitatname_min_order_by + stddev: pokemon_v2_pokemonhabitatname_stddev_order_by + stddev_pop: pokemon_v2_pokemonhabitatname_stddev_pop_order_by + stddev_samp: pokemon_v2_pokemonhabitatname_stddev_samp_order_by + sum: pokemon_v2_pokemonhabitatname_sum_order_by + var_pop: pokemon_v2_pokemonhabitatname_var_pop_order_by + var_samp: pokemon_v2_pokemonhabitatname_var_samp_order_by + variance: pokemon_v2_pokemonhabitatname_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_pokemonhabitatname_avg_fields { + id: Float + language_id: Float + pokemon_habitat_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_pokemonhabitatname" +""" +input pokemon_v2_pokemonhabitatname_avg_order_by { + id: order_by + language_id: order_by + pokemon_habitat_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokemonhabitatname". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokemonhabitatname_bool_exp { + _and: [pokemon_v2_pokemonhabitatname_bool_exp!] + _not: pokemon_v2_pokemonhabitatname_bool_exp + _or: [pokemon_v2_pokemonhabitatname_bool_exp!] + id: Int_comparison_exp + language_id: Int_comparison_exp + name: String_comparison_exp + pokemon_habitat_id: Int_comparison_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_pokemonhabitat: pokemon_v2_pokemonhabitat_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokemonhabitatname_max_fields { + id: Int + language_id: Int + name: String + pokemon_habitat_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_pokemonhabitatname" +""" +input pokemon_v2_pokemonhabitatname_max_order_by { + id: order_by + language_id: order_by + name: order_by + pokemon_habitat_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_pokemonhabitatname_min_fields { + id: Int + language_id: Int + name: String + pokemon_habitat_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_pokemonhabitatname" +""" +input pokemon_v2_pokemonhabitatname_min_order_by { + id: order_by + language_id: order_by + name: order_by + pokemon_habitat_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_pokemonhabitatname". +""" +input pokemon_v2_pokemonhabitatname_order_by { + id: order_by + language_id: order_by + name: order_by + pokemon_habitat_id: order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_pokemonhabitat: pokemon_v2_pokemonhabitat_order_by +} + +""" +select columns of table "pokemon_v2_pokemonhabitatname" +""" +enum pokemon_v2_pokemonhabitatname_select_column { + """column name""" + id + + """column name""" + language_id + + """column name""" + name + + """column name""" + pokemon_habitat_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokemonhabitatname_stddev_fields { + id: Float + language_id: Float + pokemon_habitat_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_pokemonhabitatname" +""" +input pokemon_v2_pokemonhabitatname_stddev_order_by { + id: order_by + language_id: order_by + pokemon_habitat_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokemonhabitatname_stddev_pop_fields { + id: Float + language_id: Float + pokemon_habitat_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_pokemonhabitatname" +""" +input pokemon_v2_pokemonhabitatname_stddev_pop_order_by { + id: order_by + language_id: order_by + pokemon_habitat_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokemonhabitatname_stddev_samp_fields { + id: Float + language_id: Float + pokemon_habitat_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_pokemonhabitatname" +""" +input pokemon_v2_pokemonhabitatname_stddev_samp_order_by { + id: order_by + language_id: order_by + pokemon_habitat_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_pokemonhabitatname" +""" +input pokemon_v2_pokemonhabitatname_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokemonhabitatname_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokemonhabitatname_stream_cursor_value_input { + id: Int + language_id: Int + name: String + pokemon_habitat_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_pokemonhabitatname_sum_fields { + id: Int + language_id: Int + pokemon_habitat_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_pokemonhabitatname" +""" +input pokemon_v2_pokemonhabitatname_sum_order_by { + id: order_by + language_id: order_by + pokemon_habitat_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokemonhabitatname_var_pop_fields { + id: Float + language_id: Float + pokemon_habitat_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_pokemonhabitatname" +""" +input pokemon_v2_pokemonhabitatname_var_pop_order_by { + id: order_by + language_id: order_by + pokemon_habitat_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokemonhabitatname_var_samp_fields { + id: Float + language_id: Float + pokemon_habitat_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_pokemonhabitatname" +""" +input pokemon_v2_pokemonhabitatname_var_samp_order_by { + id: order_by + language_id: order_by + pokemon_habitat_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_pokemonhabitatname_variance_fields { + id: Float + language_id: Float + pokemon_habitat_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_pokemonhabitatname" +""" +input pokemon_v2_pokemonhabitatname_variance_order_by { + id: order_by + language_id: order_by + pokemon_habitat_id: order_by +} + +""" +columns and relationships of "pokemon_v2_pokemonitem" +""" +type pokemon_v2_pokemonitem { + id: Int! + item_id: Int + pokemon_id: Int + + """An object relationship""" + pokemon_v2_item: pokemon_v2_item + + """An object relationship""" + pokemon_v2_pokemon: pokemon_v2_pokemon + + """An object relationship""" + pokemon_v2_version: pokemon_v2_version + rarity: Int! + version_id: Int +} + +""" +aggregated selection of "pokemon_v2_pokemonitem" +""" +type pokemon_v2_pokemonitem_aggregate { + aggregate: pokemon_v2_pokemonitem_aggregate_fields + nodes: [pokemon_v2_pokemonitem!]! +} + +input pokemon_v2_pokemonitem_aggregate_bool_exp { + count: pokemon_v2_pokemonitem_aggregate_bool_exp_count +} + +input pokemon_v2_pokemonitem_aggregate_bool_exp_count { + arguments: [pokemon_v2_pokemonitem_select_column!] + distinct: Boolean + filter: pokemon_v2_pokemonitem_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_pokemonitem" +""" +type pokemon_v2_pokemonitem_aggregate_fields { + avg: pokemon_v2_pokemonitem_avg_fields + count(columns: [pokemon_v2_pokemonitem_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokemonitem_max_fields + min: pokemon_v2_pokemonitem_min_fields + stddev: pokemon_v2_pokemonitem_stddev_fields + stddev_pop: pokemon_v2_pokemonitem_stddev_pop_fields + stddev_samp: pokemon_v2_pokemonitem_stddev_samp_fields + sum: pokemon_v2_pokemonitem_sum_fields + var_pop: pokemon_v2_pokemonitem_var_pop_fields + var_samp: pokemon_v2_pokemonitem_var_samp_fields + variance: pokemon_v2_pokemonitem_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_pokemonitem" +""" +input pokemon_v2_pokemonitem_aggregate_order_by { + avg: pokemon_v2_pokemonitem_avg_order_by + count: order_by + max: pokemon_v2_pokemonitem_max_order_by + min: pokemon_v2_pokemonitem_min_order_by + stddev: pokemon_v2_pokemonitem_stddev_order_by + stddev_pop: pokemon_v2_pokemonitem_stddev_pop_order_by + stddev_samp: pokemon_v2_pokemonitem_stddev_samp_order_by + sum: pokemon_v2_pokemonitem_sum_order_by + var_pop: pokemon_v2_pokemonitem_var_pop_order_by + var_samp: pokemon_v2_pokemonitem_var_samp_order_by + variance: pokemon_v2_pokemonitem_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_pokemonitem_avg_fields { + id: Float + item_id: Float + pokemon_id: Float + rarity: Float + version_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_pokemonitem" +""" +input pokemon_v2_pokemonitem_avg_order_by { + id: order_by + item_id: order_by + pokemon_id: order_by + rarity: order_by + version_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokemonitem". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokemonitem_bool_exp { + _and: [pokemon_v2_pokemonitem_bool_exp!] + _not: pokemon_v2_pokemonitem_bool_exp + _or: [pokemon_v2_pokemonitem_bool_exp!] + id: Int_comparison_exp + item_id: Int_comparison_exp + pokemon_id: Int_comparison_exp + pokemon_v2_item: pokemon_v2_item_bool_exp + pokemon_v2_pokemon: pokemon_v2_pokemon_bool_exp + pokemon_v2_version: pokemon_v2_version_bool_exp + rarity: Int_comparison_exp + version_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokemonitem_max_fields { + id: Int + item_id: Int + pokemon_id: Int + rarity: Int + version_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_pokemonitem" +""" +input pokemon_v2_pokemonitem_max_order_by { + id: order_by + item_id: order_by + pokemon_id: order_by + rarity: order_by + version_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_pokemonitem_min_fields { + id: Int + item_id: Int + pokemon_id: Int + rarity: Int + version_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_pokemonitem" +""" +input pokemon_v2_pokemonitem_min_order_by { + id: order_by + item_id: order_by + pokemon_id: order_by + rarity: order_by + version_id: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_pokemonitem".""" +input pokemon_v2_pokemonitem_order_by { + id: order_by + item_id: order_by + pokemon_id: order_by + pokemon_v2_item: pokemon_v2_item_order_by + pokemon_v2_pokemon: pokemon_v2_pokemon_order_by + pokemon_v2_version: pokemon_v2_version_order_by + rarity: order_by + version_id: order_by +} + +""" +select columns of table "pokemon_v2_pokemonitem" +""" +enum pokemon_v2_pokemonitem_select_column { + """column name""" + id + + """column name""" + item_id + + """column name""" + pokemon_id + + """column name""" + rarity + + """column name""" + version_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokemonitem_stddev_fields { + id: Float + item_id: Float + pokemon_id: Float + rarity: Float + version_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_pokemonitem" +""" +input pokemon_v2_pokemonitem_stddev_order_by { + id: order_by + item_id: order_by + pokemon_id: order_by + rarity: order_by + version_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokemonitem_stddev_pop_fields { + id: Float + item_id: Float + pokemon_id: Float + rarity: Float + version_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_pokemonitem" +""" +input pokemon_v2_pokemonitem_stddev_pop_order_by { + id: order_by + item_id: order_by + pokemon_id: order_by + rarity: order_by + version_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokemonitem_stddev_samp_fields { + id: Float + item_id: Float + pokemon_id: Float + rarity: Float + version_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_pokemonitem" +""" +input pokemon_v2_pokemonitem_stddev_samp_order_by { + id: order_by + item_id: order_by + pokemon_id: order_by + rarity: order_by + version_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_pokemonitem" +""" +input pokemon_v2_pokemonitem_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokemonitem_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokemonitem_stream_cursor_value_input { + id: Int + item_id: Int + pokemon_id: Int + rarity: Int + version_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_pokemonitem_sum_fields { + id: Int + item_id: Int + pokemon_id: Int + rarity: Int + version_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_pokemonitem" +""" +input pokemon_v2_pokemonitem_sum_order_by { + id: order_by + item_id: order_by + pokemon_id: order_by + rarity: order_by + version_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokemonitem_var_pop_fields { + id: Float + item_id: Float + pokemon_id: Float + rarity: Float + version_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_pokemonitem" +""" +input pokemon_v2_pokemonitem_var_pop_order_by { + id: order_by + item_id: order_by + pokemon_id: order_by + rarity: order_by + version_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokemonitem_var_samp_fields { + id: Float + item_id: Float + pokemon_id: Float + rarity: Float + version_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_pokemonitem" +""" +input pokemon_v2_pokemonitem_var_samp_order_by { + id: order_by + item_id: order_by + pokemon_id: order_by + rarity: order_by + version_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_pokemonitem_variance_fields { + id: Float + item_id: Float + pokemon_id: Float + rarity: Float + version_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_pokemonitem" +""" +input pokemon_v2_pokemonitem_variance_order_by { + id: order_by + item_id: order_by + pokemon_id: order_by + rarity: order_by + version_id: order_by +} + +""" +columns and relationships of "pokemon_v2_pokemonmove" +""" +type pokemon_v2_pokemonmove { + id: Int! + level: Int! + mastery: Int + move_id: Int + move_learn_method_id: Int + order: Int + pokemon_id: Int + + """An object relationship""" + pokemon_v2_move: pokemon_v2_move + + """An object relationship""" + pokemon_v2_movelearnmethod: pokemon_v2_movelearnmethod + + """An object relationship""" + pokemon_v2_pokemon: pokemon_v2_pokemon + + """An object relationship""" + pokemon_v2_versiongroup: pokemon_v2_versiongroup + version_group_id: Int +} + +""" +aggregated selection of "pokemon_v2_pokemonmove" +""" +type pokemon_v2_pokemonmove_aggregate { + aggregate: pokemon_v2_pokemonmove_aggregate_fields + nodes: [pokemon_v2_pokemonmove!]! +} + +input pokemon_v2_pokemonmove_aggregate_bool_exp { + count: pokemon_v2_pokemonmove_aggregate_bool_exp_count +} + +input pokemon_v2_pokemonmove_aggregate_bool_exp_count { + arguments: [pokemon_v2_pokemonmove_select_column!] + distinct: Boolean + filter: pokemon_v2_pokemonmove_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_pokemonmove" +""" +type pokemon_v2_pokemonmove_aggregate_fields { + avg: pokemon_v2_pokemonmove_avg_fields + count(columns: [pokemon_v2_pokemonmove_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokemonmove_max_fields + min: pokemon_v2_pokemonmove_min_fields + stddev: pokemon_v2_pokemonmove_stddev_fields + stddev_pop: pokemon_v2_pokemonmove_stddev_pop_fields + stddev_samp: pokemon_v2_pokemonmove_stddev_samp_fields + sum: pokemon_v2_pokemonmove_sum_fields + var_pop: pokemon_v2_pokemonmove_var_pop_fields + var_samp: pokemon_v2_pokemonmove_var_samp_fields + variance: pokemon_v2_pokemonmove_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_pokemonmove" +""" +input pokemon_v2_pokemonmove_aggregate_order_by { + avg: pokemon_v2_pokemonmove_avg_order_by + count: order_by + max: pokemon_v2_pokemonmove_max_order_by + min: pokemon_v2_pokemonmove_min_order_by + stddev: pokemon_v2_pokemonmove_stddev_order_by + stddev_pop: pokemon_v2_pokemonmove_stddev_pop_order_by + stddev_samp: pokemon_v2_pokemonmove_stddev_samp_order_by + sum: pokemon_v2_pokemonmove_sum_order_by + var_pop: pokemon_v2_pokemonmove_var_pop_order_by + var_samp: pokemon_v2_pokemonmove_var_samp_order_by + variance: pokemon_v2_pokemonmove_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_pokemonmove_avg_fields { + id: Float + level: Float + mastery: Float + move_id: Float + move_learn_method_id: Float + order: Float + pokemon_id: Float + version_group_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_pokemonmove" +""" +input pokemon_v2_pokemonmove_avg_order_by { + id: order_by + level: order_by + mastery: order_by + move_id: order_by + move_learn_method_id: order_by + order: order_by + pokemon_id: order_by + version_group_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokemonmove". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokemonmove_bool_exp { + _and: [pokemon_v2_pokemonmove_bool_exp!] + _not: pokemon_v2_pokemonmove_bool_exp + _or: [pokemon_v2_pokemonmove_bool_exp!] + id: Int_comparison_exp + level: Int_comparison_exp + mastery: Int_comparison_exp + move_id: Int_comparison_exp + move_learn_method_id: Int_comparison_exp + order: Int_comparison_exp + pokemon_id: Int_comparison_exp + pokemon_v2_move: pokemon_v2_move_bool_exp + pokemon_v2_movelearnmethod: pokemon_v2_movelearnmethod_bool_exp + pokemon_v2_pokemon: pokemon_v2_pokemon_bool_exp + pokemon_v2_versiongroup: pokemon_v2_versiongroup_bool_exp + version_group_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokemonmove_max_fields { + id: Int + level: Int + mastery: Int + move_id: Int + move_learn_method_id: Int + order: Int + pokemon_id: Int + version_group_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_pokemonmove" +""" +input pokemon_v2_pokemonmove_max_order_by { + id: order_by + level: order_by + mastery: order_by + move_id: order_by + move_learn_method_id: order_by + order: order_by + pokemon_id: order_by + version_group_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_pokemonmove_min_fields { + id: Int + level: Int + mastery: Int + move_id: Int + move_learn_method_id: Int + order: Int + pokemon_id: Int + version_group_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_pokemonmove" +""" +input pokemon_v2_pokemonmove_min_order_by { + id: order_by + level: order_by + mastery: order_by + move_id: order_by + move_learn_method_id: order_by + order: order_by + pokemon_id: order_by + version_group_id: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_pokemonmove".""" +input pokemon_v2_pokemonmove_order_by { + id: order_by + level: order_by + mastery: order_by + move_id: order_by + move_learn_method_id: order_by + order: order_by + pokemon_id: order_by + pokemon_v2_move: pokemon_v2_move_order_by + pokemon_v2_movelearnmethod: pokemon_v2_movelearnmethod_order_by + pokemon_v2_pokemon: pokemon_v2_pokemon_order_by + pokemon_v2_versiongroup: pokemon_v2_versiongroup_order_by + version_group_id: order_by +} + +""" +select columns of table "pokemon_v2_pokemonmove" +""" +enum pokemon_v2_pokemonmove_select_column { + """column name""" + id + + """column name""" + level + + """column name""" + mastery + + """column name""" + move_id + + """column name""" + move_learn_method_id + + """column name""" + order + + """column name""" + pokemon_id + + """column name""" + version_group_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokemonmove_stddev_fields { + id: Float + level: Float + mastery: Float + move_id: Float + move_learn_method_id: Float + order: Float + pokemon_id: Float + version_group_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_pokemonmove" +""" +input pokemon_v2_pokemonmove_stddev_order_by { + id: order_by + level: order_by + mastery: order_by + move_id: order_by + move_learn_method_id: order_by + order: order_by + pokemon_id: order_by + version_group_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokemonmove_stddev_pop_fields { + id: Float + level: Float + mastery: Float + move_id: Float + move_learn_method_id: Float + order: Float + pokemon_id: Float + version_group_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_pokemonmove" +""" +input pokemon_v2_pokemonmove_stddev_pop_order_by { + id: order_by + level: order_by + mastery: order_by + move_id: order_by + move_learn_method_id: order_by + order: order_by + pokemon_id: order_by + version_group_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokemonmove_stddev_samp_fields { + id: Float + level: Float + mastery: Float + move_id: Float + move_learn_method_id: Float + order: Float + pokemon_id: Float + version_group_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_pokemonmove" +""" +input pokemon_v2_pokemonmove_stddev_samp_order_by { + id: order_by + level: order_by + mastery: order_by + move_id: order_by + move_learn_method_id: order_by + order: order_by + pokemon_id: order_by + version_group_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_pokemonmove" +""" +input pokemon_v2_pokemonmove_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokemonmove_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokemonmove_stream_cursor_value_input { + id: Int + level: Int + mastery: Int + move_id: Int + move_learn_method_id: Int + order: Int + pokemon_id: Int + version_group_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_pokemonmove_sum_fields { + id: Int + level: Int + mastery: Int + move_id: Int + move_learn_method_id: Int + order: Int + pokemon_id: Int + version_group_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_pokemonmove" +""" +input pokemon_v2_pokemonmove_sum_order_by { + id: order_by + level: order_by + mastery: order_by + move_id: order_by + move_learn_method_id: order_by + order: order_by + pokemon_id: order_by + version_group_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokemonmove_var_pop_fields { + id: Float + level: Float + mastery: Float + move_id: Float + move_learn_method_id: Float + order: Float + pokemon_id: Float + version_group_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_pokemonmove" +""" +input pokemon_v2_pokemonmove_var_pop_order_by { + id: order_by + level: order_by + mastery: order_by + move_id: order_by + move_learn_method_id: order_by + order: order_by + pokemon_id: order_by + version_group_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokemonmove_var_samp_fields { + id: Float + level: Float + mastery: Float + move_id: Float + move_learn_method_id: Float + order: Float + pokemon_id: Float + version_group_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_pokemonmove" +""" +input pokemon_v2_pokemonmove_var_samp_order_by { + id: order_by + level: order_by + mastery: order_by + move_id: order_by + move_learn_method_id: order_by + order: order_by + pokemon_id: order_by + version_group_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_pokemonmove_variance_fields { + id: Float + level: Float + mastery: Float + move_id: Float + move_learn_method_id: Float + order: Float + pokemon_id: Float + version_group_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_pokemonmove" +""" +input pokemon_v2_pokemonmove_variance_order_by { + id: order_by + level: order_by + mastery: order_by + move_id: order_by + move_learn_method_id: order_by + order: order_by + pokemon_id: order_by + version_group_id: order_by +} + +""" +columns and relationships of "pokemon_v2_pokemonshape" +""" +type pokemon_v2_pokemonshape { + id: Int! + name: String! + + """An array relationship""" + pokemon_v2_pokemonshapenames( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonshapename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonshapename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonshapename_bool_exp + ): [pokemon_v2_pokemonshapename!]! + + """An aggregate relationship""" + pokemon_v2_pokemonshapenames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonshapename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonshapename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonshapename_bool_exp + ): pokemon_v2_pokemonshapename_aggregate! + + """An array relationship""" + pokemon_v2_pokemonspecies( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspecies_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspecies_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspecies_bool_exp + ): [pokemon_v2_pokemonspecies!]! + + """An aggregate relationship""" + pokemon_v2_pokemonspecies_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspecies_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspecies_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspecies_bool_exp + ): pokemon_v2_pokemonspecies_aggregate! +} + +""" +aggregated selection of "pokemon_v2_pokemonshape" +""" +type pokemon_v2_pokemonshape_aggregate { + aggregate: pokemon_v2_pokemonshape_aggregate_fields + nodes: [pokemon_v2_pokemonshape!]! +} + +""" +aggregate fields of "pokemon_v2_pokemonshape" +""" +type pokemon_v2_pokemonshape_aggregate_fields { + avg: pokemon_v2_pokemonshape_avg_fields + count(columns: [pokemon_v2_pokemonshape_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokemonshape_max_fields + min: pokemon_v2_pokemonshape_min_fields + stddev: pokemon_v2_pokemonshape_stddev_fields + stddev_pop: pokemon_v2_pokemonshape_stddev_pop_fields + stddev_samp: pokemon_v2_pokemonshape_stddev_samp_fields + sum: pokemon_v2_pokemonshape_sum_fields + var_pop: pokemon_v2_pokemonshape_var_pop_fields + var_samp: pokemon_v2_pokemonshape_var_samp_fields + variance: pokemon_v2_pokemonshape_variance_fields +} + +"""aggregate avg on columns""" +type pokemon_v2_pokemonshape_avg_fields { + id: Float +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokemonshape". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokemonshape_bool_exp { + _and: [pokemon_v2_pokemonshape_bool_exp!] + _not: pokemon_v2_pokemonshape_bool_exp + _or: [pokemon_v2_pokemonshape_bool_exp!] + id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_pokemonshapenames: pokemon_v2_pokemonshapename_bool_exp + pokemon_v2_pokemonshapenames_aggregate: pokemon_v2_pokemonshapename_aggregate_bool_exp + pokemon_v2_pokemonspecies: pokemon_v2_pokemonspecies_bool_exp + pokemon_v2_pokemonspecies_aggregate: pokemon_v2_pokemonspecies_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokemonshape_max_fields { + id: Int + name: String +} + +"""aggregate min on columns""" +type pokemon_v2_pokemonshape_min_fields { + id: Int + name: String +} + +"""Ordering options when selecting data from "pokemon_v2_pokemonshape".""" +input pokemon_v2_pokemonshape_order_by { + id: order_by + name: order_by + pokemon_v2_pokemonshapenames_aggregate: pokemon_v2_pokemonshapename_aggregate_order_by + pokemon_v2_pokemonspecies_aggregate: pokemon_v2_pokemonspecies_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_pokemonshape" +""" +enum pokemon_v2_pokemonshape_select_column { + """column name""" + id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokemonshape_stddev_fields { + id: Float +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokemonshape_stddev_pop_fields { + id: Float +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokemonshape_stddev_samp_fields { + id: Float +} + +""" +Streaming cursor of the table "pokemon_v2_pokemonshape" +""" +input pokemon_v2_pokemonshape_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokemonshape_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokemonshape_stream_cursor_value_input { + id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_pokemonshape_sum_fields { + id: Int +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokemonshape_var_pop_fields { + id: Float +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokemonshape_var_samp_fields { + id: Float +} + +"""aggregate variance on columns""" +type pokemon_v2_pokemonshape_variance_fields { + id: Float +} + +""" +columns and relationships of "pokemon_v2_pokemonshapename" +""" +type pokemon_v2_pokemonshapename { + awesome_name: String! + id: Int! + language_id: Int + name: String! + pokemon_shape_id: Int + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_pokemonshape: pokemon_v2_pokemonshape +} + +""" +aggregated selection of "pokemon_v2_pokemonshapename" +""" +type pokemon_v2_pokemonshapename_aggregate { + aggregate: pokemon_v2_pokemonshapename_aggregate_fields + nodes: [pokemon_v2_pokemonshapename!]! +} + +input pokemon_v2_pokemonshapename_aggregate_bool_exp { + count: pokemon_v2_pokemonshapename_aggregate_bool_exp_count +} + +input pokemon_v2_pokemonshapename_aggregate_bool_exp_count { + arguments: [pokemon_v2_pokemonshapename_select_column!] + distinct: Boolean + filter: pokemon_v2_pokemonshapename_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_pokemonshapename" +""" +type pokemon_v2_pokemonshapename_aggregate_fields { + avg: pokemon_v2_pokemonshapename_avg_fields + count(columns: [pokemon_v2_pokemonshapename_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokemonshapename_max_fields + min: pokemon_v2_pokemonshapename_min_fields + stddev: pokemon_v2_pokemonshapename_stddev_fields + stddev_pop: pokemon_v2_pokemonshapename_stddev_pop_fields + stddev_samp: pokemon_v2_pokemonshapename_stddev_samp_fields + sum: pokemon_v2_pokemonshapename_sum_fields + var_pop: pokemon_v2_pokemonshapename_var_pop_fields + var_samp: pokemon_v2_pokemonshapename_var_samp_fields + variance: pokemon_v2_pokemonshapename_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_pokemonshapename" +""" +input pokemon_v2_pokemonshapename_aggregate_order_by { + avg: pokemon_v2_pokemonshapename_avg_order_by + count: order_by + max: pokemon_v2_pokemonshapename_max_order_by + min: pokemon_v2_pokemonshapename_min_order_by + stddev: pokemon_v2_pokemonshapename_stddev_order_by + stddev_pop: pokemon_v2_pokemonshapename_stddev_pop_order_by + stddev_samp: pokemon_v2_pokemonshapename_stddev_samp_order_by + sum: pokemon_v2_pokemonshapename_sum_order_by + var_pop: pokemon_v2_pokemonshapename_var_pop_order_by + var_samp: pokemon_v2_pokemonshapename_var_samp_order_by + variance: pokemon_v2_pokemonshapename_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_pokemonshapename_avg_fields { + id: Float + language_id: Float + pokemon_shape_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_pokemonshapename" +""" +input pokemon_v2_pokemonshapename_avg_order_by { + id: order_by + language_id: order_by + pokemon_shape_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokemonshapename". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokemonshapename_bool_exp { + _and: [pokemon_v2_pokemonshapename_bool_exp!] + _not: pokemon_v2_pokemonshapename_bool_exp + _or: [pokemon_v2_pokemonshapename_bool_exp!] + awesome_name: String_comparison_exp + id: Int_comparison_exp + language_id: Int_comparison_exp + name: String_comparison_exp + pokemon_shape_id: Int_comparison_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_pokemonshape: pokemon_v2_pokemonshape_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokemonshapename_max_fields { + awesome_name: String + id: Int + language_id: Int + name: String + pokemon_shape_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_pokemonshapename" +""" +input pokemon_v2_pokemonshapename_max_order_by { + awesome_name: order_by + id: order_by + language_id: order_by + name: order_by + pokemon_shape_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_pokemonshapename_min_fields { + awesome_name: String + id: Int + language_id: Int + name: String + pokemon_shape_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_pokemonshapename" +""" +input pokemon_v2_pokemonshapename_min_order_by { + awesome_name: order_by + id: order_by + language_id: order_by + name: order_by + pokemon_shape_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_pokemonshapename". +""" +input pokemon_v2_pokemonshapename_order_by { + awesome_name: order_by + id: order_by + language_id: order_by + name: order_by + pokemon_shape_id: order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_pokemonshape: pokemon_v2_pokemonshape_order_by +} + +""" +select columns of table "pokemon_v2_pokemonshapename" +""" +enum pokemon_v2_pokemonshapename_select_column { + """column name""" + awesome_name + + """column name""" + id + + """column name""" + language_id + + """column name""" + name + + """column name""" + pokemon_shape_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokemonshapename_stddev_fields { + id: Float + language_id: Float + pokemon_shape_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_pokemonshapename" +""" +input pokemon_v2_pokemonshapename_stddev_order_by { + id: order_by + language_id: order_by + pokemon_shape_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokemonshapename_stddev_pop_fields { + id: Float + language_id: Float + pokemon_shape_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_pokemonshapename" +""" +input pokemon_v2_pokemonshapename_stddev_pop_order_by { + id: order_by + language_id: order_by + pokemon_shape_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokemonshapename_stddev_samp_fields { + id: Float + language_id: Float + pokemon_shape_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_pokemonshapename" +""" +input pokemon_v2_pokemonshapename_stddev_samp_order_by { + id: order_by + language_id: order_by + pokemon_shape_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_pokemonshapename" +""" +input pokemon_v2_pokemonshapename_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokemonshapename_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokemonshapename_stream_cursor_value_input { + awesome_name: String + id: Int + language_id: Int + name: String + pokemon_shape_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_pokemonshapename_sum_fields { + id: Int + language_id: Int + pokemon_shape_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_pokemonshapename" +""" +input pokemon_v2_pokemonshapename_sum_order_by { + id: order_by + language_id: order_by + pokemon_shape_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokemonshapename_var_pop_fields { + id: Float + language_id: Float + pokemon_shape_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_pokemonshapename" +""" +input pokemon_v2_pokemonshapename_var_pop_order_by { + id: order_by + language_id: order_by + pokemon_shape_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokemonshapename_var_samp_fields { + id: Float + language_id: Float + pokemon_shape_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_pokemonshapename" +""" +input pokemon_v2_pokemonshapename_var_samp_order_by { + id: order_by + language_id: order_by + pokemon_shape_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_pokemonshapename_variance_fields { + id: Float + language_id: Float + pokemon_shape_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_pokemonshapename" +""" +input pokemon_v2_pokemonshapename_variance_order_by { + id: order_by + language_id: order_by + pokemon_shape_id: order_by +} + +""" +columns and relationships of "pokemon_v2_pokemonspecies" +""" +type pokemon_v2_pokemonspecies { + base_happiness: Int + capture_rate: Int + evolution_chain_id: Int + evolves_from_species_id: Int + forms_switchable: Boolean! + gender_rate: Int + generation_id: Int + growth_rate_id: Int + has_gender_differences: Boolean! + hatch_counter: Int + id: Int! + is_baby: Boolean! + is_legendary: Boolean! + is_mythical: Boolean! + name: String! + order: Int + + """An array relationship""" + pokemonV2PokemonevolutionsByPartySpeciesId( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonevolution_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonevolution_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonevolution_bool_exp + ): [pokemon_v2_pokemonevolution!]! + + """An aggregate relationship""" + pokemonV2PokemonevolutionsByPartySpeciesId_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonevolution_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonevolution_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonevolution_bool_exp + ): pokemon_v2_pokemonevolution_aggregate! + + """An array relationship""" + pokemonV2PokemonevolutionsByTradeSpeciesId( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonevolution_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonevolution_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonevolution_bool_exp + ): [pokemon_v2_pokemonevolution!]! + + """An aggregate relationship""" + pokemonV2PokemonevolutionsByTradeSpeciesId_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonevolution_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonevolution_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonevolution_bool_exp + ): pokemon_v2_pokemonevolution_aggregate! + pokemon_color_id: Int + pokemon_habitat_id: Int + pokemon_shape_id: Int + + """An object relationship""" + pokemon_v2_evolutionchain: pokemon_v2_evolutionchain + + """An object relationship""" + pokemon_v2_generation: pokemon_v2_generation + + """An object relationship""" + pokemon_v2_growthrate: pokemon_v2_growthrate + + """An array relationship""" + pokemon_v2_palparks( + """distinct select on columns""" + distinct_on: [pokemon_v2_palpark_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_palpark_order_by!] + + """filter the rows returned""" + where: pokemon_v2_palpark_bool_exp + ): [pokemon_v2_palpark!]! + + """An aggregate relationship""" + pokemon_v2_palparks_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_palpark_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_palpark_order_by!] + + """filter the rows returned""" + where: pokemon_v2_palpark_bool_exp + ): pokemon_v2_palpark_aggregate! + + """An object relationship""" + pokemon_v2_pokemoncolor: pokemon_v2_pokemoncolor + + """An array relationship""" + pokemon_v2_pokemondexnumbers( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemondexnumber_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemondexnumber_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemondexnumber_bool_exp + ): [pokemon_v2_pokemondexnumber!]! + + """An aggregate relationship""" + pokemon_v2_pokemondexnumbers_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemondexnumber_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemondexnumber_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemondexnumber_bool_exp + ): pokemon_v2_pokemondexnumber_aggregate! + + """An array relationship""" + pokemon_v2_pokemonegggroups( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonegggroup_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonegggroup_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonegggroup_bool_exp + ): [pokemon_v2_pokemonegggroup!]! + + """An aggregate relationship""" + pokemon_v2_pokemonegggroups_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonegggroup_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonegggroup_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonegggroup_bool_exp + ): pokemon_v2_pokemonegggroup_aggregate! + + """An array relationship""" + pokemon_v2_pokemonevolutions( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonevolution_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonevolution_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonevolution_bool_exp + ): [pokemon_v2_pokemonevolution!]! + + """An aggregate relationship""" + pokemon_v2_pokemonevolutions_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonevolution_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonevolution_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonevolution_bool_exp + ): pokemon_v2_pokemonevolution_aggregate! + + """An object relationship""" + pokemon_v2_pokemonhabitat: pokemon_v2_pokemonhabitat + + """An array relationship""" + pokemon_v2_pokemons( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemon_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemon_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemon_bool_exp + ): [pokemon_v2_pokemon!]! + + """An aggregate relationship""" + pokemon_v2_pokemons_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemon_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemon_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemon_bool_exp + ): pokemon_v2_pokemon_aggregate! + + """An object relationship""" + pokemon_v2_pokemonshape: pokemon_v2_pokemonshape + + """An array relationship""" + pokemon_v2_pokemonspecies( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspecies_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspecies_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspecies_bool_exp + ): [pokemon_v2_pokemonspecies!]! + + """An aggregate relationship""" + pokemon_v2_pokemonspecies_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspecies_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspecies_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspecies_bool_exp + ): pokemon_v2_pokemonspecies_aggregate! + + """An array relationship""" + pokemon_v2_pokemonspeciesdescriptions( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspeciesdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspeciesdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspeciesdescription_bool_exp + ): [pokemon_v2_pokemonspeciesdescription!]! + + """An aggregate relationship""" + pokemon_v2_pokemonspeciesdescriptions_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspeciesdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspeciesdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspeciesdescription_bool_exp + ): pokemon_v2_pokemonspeciesdescription_aggregate! + + """An array relationship""" + pokemon_v2_pokemonspeciesflavortexts( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspeciesflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspeciesflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspeciesflavortext_bool_exp + ): [pokemon_v2_pokemonspeciesflavortext!]! + + """An aggregate relationship""" + pokemon_v2_pokemonspeciesflavortexts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspeciesflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspeciesflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspeciesflavortext_bool_exp + ): pokemon_v2_pokemonspeciesflavortext_aggregate! + + """An array relationship""" + pokemon_v2_pokemonspeciesnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspeciesname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspeciesname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspeciesname_bool_exp + ): [pokemon_v2_pokemonspeciesname!]! + + """An aggregate relationship""" + pokemon_v2_pokemonspeciesnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspeciesname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspeciesname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspeciesname_bool_exp + ): pokemon_v2_pokemonspeciesname_aggregate! + + """An object relationship""" + pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies +} + +""" +aggregated selection of "pokemon_v2_pokemonspecies" +""" +type pokemon_v2_pokemonspecies_aggregate { + aggregate: pokemon_v2_pokemonspecies_aggregate_fields + nodes: [pokemon_v2_pokemonspecies!]! +} + +input pokemon_v2_pokemonspecies_aggregate_bool_exp { + bool_and: pokemon_v2_pokemonspecies_aggregate_bool_exp_bool_and + bool_or: pokemon_v2_pokemonspecies_aggregate_bool_exp_bool_or + count: pokemon_v2_pokemonspecies_aggregate_bool_exp_count +} + +input pokemon_v2_pokemonspecies_aggregate_bool_exp_bool_and { + arguments: pokemon_v2_pokemonspecies_select_column_pokemon_v2_pokemonspecies_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: pokemon_v2_pokemonspecies_bool_exp + predicate: Boolean_comparison_exp! +} + +input pokemon_v2_pokemonspecies_aggregate_bool_exp_bool_or { + arguments: pokemon_v2_pokemonspecies_select_column_pokemon_v2_pokemonspecies_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: pokemon_v2_pokemonspecies_bool_exp + predicate: Boolean_comparison_exp! +} + +input pokemon_v2_pokemonspecies_aggregate_bool_exp_count { + arguments: [pokemon_v2_pokemonspecies_select_column!] + distinct: Boolean + filter: pokemon_v2_pokemonspecies_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_pokemonspecies" +""" +type pokemon_v2_pokemonspecies_aggregate_fields { + avg: pokemon_v2_pokemonspecies_avg_fields + count(columns: [pokemon_v2_pokemonspecies_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokemonspecies_max_fields + min: pokemon_v2_pokemonspecies_min_fields + stddev: pokemon_v2_pokemonspecies_stddev_fields + stddev_pop: pokemon_v2_pokemonspecies_stddev_pop_fields + stddev_samp: pokemon_v2_pokemonspecies_stddev_samp_fields + sum: pokemon_v2_pokemonspecies_sum_fields + var_pop: pokemon_v2_pokemonspecies_var_pop_fields + var_samp: pokemon_v2_pokemonspecies_var_samp_fields + variance: pokemon_v2_pokemonspecies_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_pokemonspecies" +""" +input pokemon_v2_pokemonspecies_aggregate_order_by { + avg: pokemon_v2_pokemonspecies_avg_order_by + count: order_by + max: pokemon_v2_pokemonspecies_max_order_by + min: pokemon_v2_pokemonspecies_min_order_by + stddev: pokemon_v2_pokemonspecies_stddev_order_by + stddev_pop: pokemon_v2_pokemonspecies_stddev_pop_order_by + stddev_samp: pokemon_v2_pokemonspecies_stddev_samp_order_by + sum: pokemon_v2_pokemonspecies_sum_order_by + var_pop: pokemon_v2_pokemonspecies_var_pop_order_by + var_samp: pokemon_v2_pokemonspecies_var_samp_order_by + variance: pokemon_v2_pokemonspecies_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_pokemonspecies_avg_fields { + base_happiness: Float + capture_rate: Float + evolution_chain_id: Float + evolves_from_species_id: Float + gender_rate: Float + generation_id: Float + growth_rate_id: Float + hatch_counter: Float + id: Float + order: Float + pokemon_color_id: Float + pokemon_habitat_id: Float + pokemon_shape_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_pokemonspecies" +""" +input pokemon_v2_pokemonspecies_avg_order_by { + base_happiness: order_by + capture_rate: order_by + evolution_chain_id: order_by + evolves_from_species_id: order_by + gender_rate: order_by + generation_id: order_by + growth_rate_id: order_by + hatch_counter: order_by + id: order_by + order: order_by + pokemon_color_id: order_by + pokemon_habitat_id: order_by + pokemon_shape_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokemonspecies". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokemonspecies_bool_exp { + _and: [pokemon_v2_pokemonspecies_bool_exp!] + _not: pokemon_v2_pokemonspecies_bool_exp + _or: [pokemon_v2_pokemonspecies_bool_exp!] + base_happiness: Int_comparison_exp + capture_rate: Int_comparison_exp + evolution_chain_id: Int_comparison_exp + evolves_from_species_id: Int_comparison_exp + forms_switchable: Boolean_comparison_exp + gender_rate: Int_comparison_exp + generation_id: Int_comparison_exp + growth_rate_id: Int_comparison_exp + has_gender_differences: Boolean_comparison_exp + hatch_counter: Int_comparison_exp + id: Int_comparison_exp + is_baby: Boolean_comparison_exp + is_legendary: Boolean_comparison_exp + is_mythical: Boolean_comparison_exp + name: String_comparison_exp + order: Int_comparison_exp + pokemonV2PokemonevolutionsByPartySpeciesId: pokemon_v2_pokemonevolution_bool_exp + pokemonV2PokemonevolutionsByPartySpeciesId_aggregate: pokemon_v2_pokemonevolution_aggregate_bool_exp + pokemonV2PokemonevolutionsByTradeSpeciesId: pokemon_v2_pokemonevolution_bool_exp + pokemonV2PokemonevolutionsByTradeSpeciesId_aggregate: pokemon_v2_pokemonevolution_aggregate_bool_exp + pokemon_color_id: Int_comparison_exp + pokemon_habitat_id: Int_comparison_exp + pokemon_shape_id: Int_comparison_exp + pokemon_v2_evolutionchain: pokemon_v2_evolutionchain_bool_exp + pokemon_v2_generation: pokemon_v2_generation_bool_exp + pokemon_v2_growthrate: pokemon_v2_growthrate_bool_exp + pokemon_v2_palparks: pokemon_v2_palpark_bool_exp + pokemon_v2_palparks_aggregate: pokemon_v2_palpark_aggregate_bool_exp + pokemon_v2_pokemoncolor: pokemon_v2_pokemoncolor_bool_exp + pokemon_v2_pokemondexnumbers: pokemon_v2_pokemondexnumber_bool_exp + pokemon_v2_pokemondexnumbers_aggregate: pokemon_v2_pokemondexnumber_aggregate_bool_exp + pokemon_v2_pokemonegggroups: pokemon_v2_pokemonegggroup_bool_exp + pokemon_v2_pokemonegggroups_aggregate: pokemon_v2_pokemonegggroup_aggregate_bool_exp + pokemon_v2_pokemonevolutions: pokemon_v2_pokemonevolution_bool_exp + pokemon_v2_pokemonevolutions_aggregate: pokemon_v2_pokemonevolution_aggregate_bool_exp + pokemon_v2_pokemonhabitat: pokemon_v2_pokemonhabitat_bool_exp + pokemon_v2_pokemons: pokemon_v2_pokemon_bool_exp + pokemon_v2_pokemons_aggregate: pokemon_v2_pokemon_aggregate_bool_exp + pokemon_v2_pokemonshape: pokemon_v2_pokemonshape_bool_exp + pokemon_v2_pokemonspecies: pokemon_v2_pokemonspecies_bool_exp + pokemon_v2_pokemonspecies_aggregate: pokemon_v2_pokemonspecies_aggregate_bool_exp + pokemon_v2_pokemonspeciesdescriptions: pokemon_v2_pokemonspeciesdescription_bool_exp + pokemon_v2_pokemonspeciesdescriptions_aggregate: pokemon_v2_pokemonspeciesdescription_aggregate_bool_exp + pokemon_v2_pokemonspeciesflavortexts: pokemon_v2_pokemonspeciesflavortext_bool_exp + pokemon_v2_pokemonspeciesflavortexts_aggregate: pokemon_v2_pokemonspeciesflavortext_aggregate_bool_exp + pokemon_v2_pokemonspeciesnames: pokemon_v2_pokemonspeciesname_bool_exp + pokemon_v2_pokemonspeciesnames_aggregate: pokemon_v2_pokemonspeciesname_aggregate_bool_exp + pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokemonspecies_max_fields { + base_happiness: Int + capture_rate: Int + evolution_chain_id: Int + evolves_from_species_id: Int + gender_rate: Int + generation_id: Int + growth_rate_id: Int + hatch_counter: Int + id: Int + name: String + order: Int + pokemon_color_id: Int + pokemon_habitat_id: Int + pokemon_shape_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_pokemonspecies" +""" +input pokemon_v2_pokemonspecies_max_order_by { + base_happiness: order_by + capture_rate: order_by + evolution_chain_id: order_by + evolves_from_species_id: order_by + gender_rate: order_by + generation_id: order_by + growth_rate_id: order_by + hatch_counter: order_by + id: order_by + name: order_by + order: order_by + pokemon_color_id: order_by + pokemon_habitat_id: order_by + pokemon_shape_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_pokemonspecies_min_fields { + base_happiness: Int + capture_rate: Int + evolution_chain_id: Int + evolves_from_species_id: Int + gender_rate: Int + generation_id: Int + growth_rate_id: Int + hatch_counter: Int + id: Int + name: String + order: Int + pokemon_color_id: Int + pokemon_habitat_id: Int + pokemon_shape_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_pokemonspecies" +""" +input pokemon_v2_pokemonspecies_min_order_by { + base_happiness: order_by + capture_rate: order_by + evolution_chain_id: order_by + evolves_from_species_id: order_by + gender_rate: order_by + generation_id: order_by + growth_rate_id: order_by + hatch_counter: order_by + id: order_by + name: order_by + order: order_by + pokemon_color_id: order_by + pokemon_habitat_id: order_by + pokemon_shape_id: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_pokemonspecies".""" +input pokemon_v2_pokemonspecies_order_by { + base_happiness: order_by + capture_rate: order_by + evolution_chain_id: order_by + evolves_from_species_id: order_by + forms_switchable: order_by + gender_rate: order_by + generation_id: order_by + growth_rate_id: order_by + has_gender_differences: order_by + hatch_counter: order_by + id: order_by + is_baby: order_by + is_legendary: order_by + is_mythical: order_by + name: order_by + order: order_by + pokemonV2PokemonevolutionsByPartySpeciesId_aggregate: pokemon_v2_pokemonevolution_aggregate_order_by + pokemonV2PokemonevolutionsByTradeSpeciesId_aggregate: pokemon_v2_pokemonevolution_aggregate_order_by + pokemon_color_id: order_by + pokemon_habitat_id: order_by + pokemon_shape_id: order_by + pokemon_v2_evolutionchain: pokemon_v2_evolutionchain_order_by + pokemon_v2_generation: pokemon_v2_generation_order_by + pokemon_v2_growthrate: pokemon_v2_growthrate_order_by + pokemon_v2_palparks_aggregate: pokemon_v2_palpark_aggregate_order_by + pokemon_v2_pokemoncolor: pokemon_v2_pokemoncolor_order_by + pokemon_v2_pokemondexnumbers_aggregate: pokemon_v2_pokemondexnumber_aggregate_order_by + pokemon_v2_pokemonegggroups_aggregate: pokemon_v2_pokemonegggroup_aggregate_order_by + pokemon_v2_pokemonevolutions_aggregate: pokemon_v2_pokemonevolution_aggregate_order_by + pokemon_v2_pokemonhabitat: pokemon_v2_pokemonhabitat_order_by + pokemon_v2_pokemons_aggregate: pokemon_v2_pokemon_aggregate_order_by + pokemon_v2_pokemonshape: pokemon_v2_pokemonshape_order_by + pokemon_v2_pokemonspecies_aggregate: pokemon_v2_pokemonspecies_aggregate_order_by + pokemon_v2_pokemonspeciesdescriptions_aggregate: pokemon_v2_pokemonspeciesdescription_aggregate_order_by + pokemon_v2_pokemonspeciesflavortexts_aggregate: pokemon_v2_pokemonspeciesflavortext_aggregate_order_by + pokemon_v2_pokemonspeciesnames_aggregate: pokemon_v2_pokemonspeciesname_aggregate_order_by + pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_order_by +} + +""" +select columns of table "pokemon_v2_pokemonspecies" +""" +enum pokemon_v2_pokemonspecies_select_column { + """column name""" + base_happiness + + """column name""" + capture_rate + + """column name""" + evolution_chain_id + + """column name""" + evolves_from_species_id + + """column name""" + forms_switchable + + """column name""" + gender_rate + + """column name""" + generation_id + + """column name""" + growth_rate_id + + """column name""" + has_gender_differences + + """column name""" + hatch_counter + + """column name""" + id + + """column name""" + is_baby + + """column name""" + is_legendary + + """column name""" + is_mythical + + """column name""" + name + + """column name""" + order + + """column name""" + pokemon_color_id + + """column name""" + pokemon_habitat_id + + """column name""" + pokemon_shape_id +} + +""" +select "pokemon_v2_pokemonspecies_aggregate_bool_exp_bool_and_arguments_columns" columns of table "pokemon_v2_pokemonspecies" +""" +enum pokemon_v2_pokemonspecies_select_column_pokemon_v2_pokemonspecies_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + forms_switchable + + """column name""" + has_gender_differences + + """column name""" + is_baby + + """column name""" + is_legendary + + """column name""" + is_mythical +} + +""" +select "pokemon_v2_pokemonspecies_aggregate_bool_exp_bool_or_arguments_columns" columns of table "pokemon_v2_pokemonspecies" +""" +enum pokemon_v2_pokemonspecies_select_column_pokemon_v2_pokemonspecies_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + forms_switchable + + """column name""" + has_gender_differences + + """column name""" + is_baby + + """column name""" + is_legendary + + """column name""" + is_mythical +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokemonspecies_stddev_fields { + base_happiness: Float + capture_rate: Float + evolution_chain_id: Float + evolves_from_species_id: Float + gender_rate: Float + generation_id: Float + growth_rate_id: Float + hatch_counter: Float + id: Float + order: Float + pokemon_color_id: Float + pokemon_habitat_id: Float + pokemon_shape_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_pokemonspecies" +""" +input pokemon_v2_pokemonspecies_stddev_order_by { + base_happiness: order_by + capture_rate: order_by + evolution_chain_id: order_by + evolves_from_species_id: order_by + gender_rate: order_by + generation_id: order_by + growth_rate_id: order_by + hatch_counter: order_by + id: order_by + order: order_by + pokemon_color_id: order_by + pokemon_habitat_id: order_by + pokemon_shape_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokemonspecies_stddev_pop_fields { + base_happiness: Float + capture_rate: Float + evolution_chain_id: Float + evolves_from_species_id: Float + gender_rate: Float + generation_id: Float + growth_rate_id: Float + hatch_counter: Float + id: Float + order: Float + pokemon_color_id: Float + pokemon_habitat_id: Float + pokemon_shape_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_pokemonspecies" +""" +input pokemon_v2_pokemonspecies_stddev_pop_order_by { + base_happiness: order_by + capture_rate: order_by + evolution_chain_id: order_by + evolves_from_species_id: order_by + gender_rate: order_by + generation_id: order_by + growth_rate_id: order_by + hatch_counter: order_by + id: order_by + order: order_by + pokemon_color_id: order_by + pokemon_habitat_id: order_by + pokemon_shape_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokemonspecies_stddev_samp_fields { + base_happiness: Float + capture_rate: Float + evolution_chain_id: Float + evolves_from_species_id: Float + gender_rate: Float + generation_id: Float + growth_rate_id: Float + hatch_counter: Float + id: Float + order: Float + pokemon_color_id: Float + pokemon_habitat_id: Float + pokemon_shape_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_pokemonspecies" +""" +input pokemon_v2_pokemonspecies_stddev_samp_order_by { + base_happiness: order_by + capture_rate: order_by + evolution_chain_id: order_by + evolves_from_species_id: order_by + gender_rate: order_by + generation_id: order_by + growth_rate_id: order_by + hatch_counter: order_by + id: order_by + order: order_by + pokemon_color_id: order_by + pokemon_habitat_id: order_by + pokemon_shape_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_pokemonspecies" +""" +input pokemon_v2_pokemonspecies_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokemonspecies_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokemonspecies_stream_cursor_value_input { + base_happiness: Int + capture_rate: Int + evolution_chain_id: Int + evolves_from_species_id: Int + forms_switchable: Boolean + gender_rate: Int + generation_id: Int + growth_rate_id: Int + has_gender_differences: Boolean + hatch_counter: Int + id: Int + is_baby: Boolean + is_legendary: Boolean + is_mythical: Boolean + name: String + order: Int + pokemon_color_id: Int + pokemon_habitat_id: Int + pokemon_shape_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_pokemonspecies_sum_fields { + base_happiness: Int + capture_rate: Int + evolution_chain_id: Int + evolves_from_species_id: Int + gender_rate: Int + generation_id: Int + growth_rate_id: Int + hatch_counter: Int + id: Int + order: Int + pokemon_color_id: Int + pokemon_habitat_id: Int + pokemon_shape_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_pokemonspecies" +""" +input pokemon_v2_pokemonspecies_sum_order_by { + base_happiness: order_by + capture_rate: order_by + evolution_chain_id: order_by + evolves_from_species_id: order_by + gender_rate: order_by + generation_id: order_by + growth_rate_id: order_by + hatch_counter: order_by + id: order_by + order: order_by + pokemon_color_id: order_by + pokemon_habitat_id: order_by + pokemon_shape_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokemonspecies_var_pop_fields { + base_happiness: Float + capture_rate: Float + evolution_chain_id: Float + evolves_from_species_id: Float + gender_rate: Float + generation_id: Float + growth_rate_id: Float + hatch_counter: Float + id: Float + order: Float + pokemon_color_id: Float + pokemon_habitat_id: Float + pokemon_shape_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_pokemonspecies" +""" +input pokemon_v2_pokemonspecies_var_pop_order_by { + base_happiness: order_by + capture_rate: order_by + evolution_chain_id: order_by + evolves_from_species_id: order_by + gender_rate: order_by + generation_id: order_by + growth_rate_id: order_by + hatch_counter: order_by + id: order_by + order: order_by + pokemon_color_id: order_by + pokemon_habitat_id: order_by + pokemon_shape_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokemonspecies_var_samp_fields { + base_happiness: Float + capture_rate: Float + evolution_chain_id: Float + evolves_from_species_id: Float + gender_rate: Float + generation_id: Float + growth_rate_id: Float + hatch_counter: Float + id: Float + order: Float + pokemon_color_id: Float + pokemon_habitat_id: Float + pokemon_shape_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_pokemonspecies" +""" +input pokemon_v2_pokemonspecies_var_samp_order_by { + base_happiness: order_by + capture_rate: order_by + evolution_chain_id: order_by + evolves_from_species_id: order_by + gender_rate: order_by + generation_id: order_by + growth_rate_id: order_by + hatch_counter: order_by + id: order_by + order: order_by + pokemon_color_id: order_by + pokemon_habitat_id: order_by + pokemon_shape_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_pokemonspecies_variance_fields { + base_happiness: Float + capture_rate: Float + evolution_chain_id: Float + evolves_from_species_id: Float + gender_rate: Float + generation_id: Float + growth_rate_id: Float + hatch_counter: Float + id: Float + order: Float + pokemon_color_id: Float + pokemon_habitat_id: Float + pokemon_shape_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_pokemonspecies" +""" +input pokemon_v2_pokemonspecies_variance_order_by { + base_happiness: order_by + capture_rate: order_by + evolution_chain_id: order_by + evolves_from_species_id: order_by + gender_rate: order_by + generation_id: order_by + growth_rate_id: order_by + hatch_counter: order_by + id: order_by + order: order_by + pokemon_color_id: order_by + pokemon_habitat_id: order_by + pokemon_shape_id: order_by +} + +""" +columns and relationships of "pokemon_v2_pokemonspeciesdescription" +""" +type pokemon_v2_pokemonspeciesdescription { + description: String! + id: Int! + language_id: Int + pokemon_species_id: Int + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies +} + +""" +aggregated selection of "pokemon_v2_pokemonspeciesdescription" +""" +type pokemon_v2_pokemonspeciesdescription_aggregate { + aggregate: pokemon_v2_pokemonspeciesdescription_aggregate_fields + nodes: [pokemon_v2_pokemonspeciesdescription!]! +} + +input pokemon_v2_pokemonspeciesdescription_aggregate_bool_exp { + count: pokemon_v2_pokemonspeciesdescription_aggregate_bool_exp_count +} + +input pokemon_v2_pokemonspeciesdescription_aggregate_bool_exp_count { + arguments: [pokemon_v2_pokemonspeciesdescription_select_column!] + distinct: Boolean + filter: pokemon_v2_pokemonspeciesdescription_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_pokemonspeciesdescription" +""" +type pokemon_v2_pokemonspeciesdescription_aggregate_fields { + avg: pokemon_v2_pokemonspeciesdescription_avg_fields + count(columns: [pokemon_v2_pokemonspeciesdescription_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokemonspeciesdescription_max_fields + min: pokemon_v2_pokemonspeciesdescription_min_fields + stddev: pokemon_v2_pokemonspeciesdescription_stddev_fields + stddev_pop: pokemon_v2_pokemonspeciesdescription_stddev_pop_fields + stddev_samp: pokemon_v2_pokemonspeciesdescription_stddev_samp_fields + sum: pokemon_v2_pokemonspeciesdescription_sum_fields + var_pop: pokemon_v2_pokemonspeciesdescription_var_pop_fields + var_samp: pokemon_v2_pokemonspeciesdescription_var_samp_fields + variance: pokemon_v2_pokemonspeciesdescription_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_pokemonspeciesdescription" +""" +input pokemon_v2_pokemonspeciesdescription_aggregate_order_by { + avg: pokemon_v2_pokemonspeciesdescription_avg_order_by + count: order_by + max: pokemon_v2_pokemonspeciesdescription_max_order_by + min: pokemon_v2_pokemonspeciesdescription_min_order_by + stddev: pokemon_v2_pokemonspeciesdescription_stddev_order_by + stddev_pop: pokemon_v2_pokemonspeciesdescription_stddev_pop_order_by + stddev_samp: pokemon_v2_pokemonspeciesdescription_stddev_samp_order_by + sum: pokemon_v2_pokemonspeciesdescription_sum_order_by + var_pop: pokemon_v2_pokemonspeciesdescription_var_pop_order_by + var_samp: pokemon_v2_pokemonspeciesdescription_var_samp_order_by + variance: pokemon_v2_pokemonspeciesdescription_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_pokemonspeciesdescription_avg_fields { + id: Float + language_id: Float + pokemon_species_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_pokemonspeciesdescription" +""" +input pokemon_v2_pokemonspeciesdescription_avg_order_by { + id: order_by + language_id: order_by + pokemon_species_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokemonspeciesdescription". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokemonspeciesdescription_bool_exp { + _and: [pokemon_v2_pokemonspeciesdescription_bool_exp!] + _not: pokemon_v2_pokemonspeciesdescription_bool_exp + _or: [pokemon_v2_pokemonspeciesdescription_bool_exp!] + description: String_comparison_exp + id: Int_comparison_exp + language_id: Int_comparison_exp + pokemon_species_id: Int_comparison_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokemonspeciesdescription_max_fields { + description: String + id: Int + language_id: Int + pokemon_species_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_pokemonspeciesdescription" +""" +input pokemon_v2_pokemonspeciesdescription_max_order_by { + description: order_by + id: order_by + language_id: order_by + pokemon_species_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_pokemonspeciesdescription_min_fields { + description: String + id: Int + language_id: Int + pokemon_species_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_pokemonspeciesdescription" +""" +input pokemon_v2_pokemonspeciesdescription_min_order_by { + description: order_by + id: order_by + language_id: order_by + pokemon_species_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_pokemonspeciesdescription". +""" +input pokemon_v2_pokemonspeciesdescription_order_by { + description: order_by + id: order_by + language_id: order_by + pokemon_species_id: order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_order_by +} + +""" +select columns of table "pokemon_v2_pokemonspeciesdescription" +""" +enum pokemon_v2_pokemonspeciesdescription_select_column { + """column name""" + description + + """column name""" + id + + """column name""" + language_id + + """column name""" + pokemon_species_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokemonspeciesdescription_stddev_fields { + id: Float + language_id: Float + pokemon_species_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_pokemonspeciesdescription" +""" +input pokemon_v2_pokemonspeciesdescription_stddev_order_by { + id: order_by + language_id: order_by + pokemon_species_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokemonspeciesdescription_stddev_pop_fields { + id: Float + language_id: Float + pokemon_species_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_pokemonspeciesdescription" +""" +input pokemon_v2_pokemonspeciesdescription_stddev_pop_order_by { + id: order_by + language_id: order_by + pokemon_species_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokemonspeciesdescription_stddev_samp_fields { + id: Float + language_id: Float + pokemon_species_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_pokemonspeciesdescription" +""" +input pokemon_v2_pokemonspeciesdescription_stddev_samp_order_by { + id: order_by + language_id: order_by + pokemon_species_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_pokemonspeciesdescription" +""" +input pokemon_v2_pokemonspeciesdescription_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokemonspeciesdescription_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokemonspeciesdescription_stream_cursor_value_input { + description: String + id: Int + language_id: Int + pokemon_species_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_pokemonspeciesdescription_sum_fields { + id: Int + language_id: Int + pokemon_species_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_pokemonspeciesdescription" +""" +input pokemon_v2_pokemonspeciesdescription_sum_order_by { + id: order_by + language_id: order_by + pokemon_species_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokemonspeciesdescription_var_pop_fields { + id: Float + language_id: Float + pokemon_species_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_pokemonspeciesdescription" +""" +input pokemon_v2_pokemonspeciesdescription_var_pop_order_by { + id: order_by + language_id: order_by + pokemon_species_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokemonspeciesdescription_var_samp_fields { + id: Float + language_id: Float + pokemon_species_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_pokemonspeciesdescription" +""" +input pokemon_v2_pokemonspeciesdescription_var_samp_order_by { + id: order_by + language_id: order_by + pokemon_species_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_pokemonspeciesdescription_variance_fields { + id: Float + language_id: Float + pokemon_species_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_pokemonspeciesdescription" +""" +input pokemon_v2_pokemonspeciesdescription_variance_order_by { + id: order_by + language_id: order_by + pokemon_species_id: order_by +} + +""" +columns and relationships of "pokemon_v2_pokemonspeciesflavortext" +""" +type pokemon_v2_pokemonspeciesflavortext { + flavor_text: String! + id: Int! + language_id: Int + pokemon_species_id: Int + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies + + """An object relationship""" + pokemon_v2_version: pokemon_v2_version + version_id: Int +} + +""" +aggregated selection of "pokemon_v2_pokemonspeciesflavortext" +""" +type pokemon_v2_pokemonspeciesflavortext_aggregate { + aggregate: pokemon_v2_pokemonspeciesflavortext_aggregate_fields + nodes: [pokemon_v2_pokemonspeciesflavortext!]! +} + +input pokemon_v2_pokemonspeciesflavortext_aggregate_bool_exp { + count: pokemon_v2_pokemonspeciesflavortext_aggregate_bool_exp_count +} + +input pokemon_v2_pokemonspeciesflavortext_aggregate_bool_exp_count { + arguments: [pokemon_v2_pokemonspeciesflavortext_select_column!] + distinct: Boolean + filter: pokemon_v2_pokemonspeciesflavortext_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_pokemonspeciesflavortext" +""" +type pokemon_v2_pokemonspeciesflavortext_aggregate_fields { + avg: pokemon_v2_pokemonspeciesflavortext_avg_fields + count(columns: [pokemon_v2_pokemonspeciesflavortext_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokemonspeciesflavortext_max_fields + min: pokemon_v2_pokemonspeciesflavortext_min_fields + stddev: pokemon_v2_pokemonspeciesflavortext_stddev_fields + stddev_pop: pokemon_v2_pokemonspeciesflavortext_stddev_pop_fields + stddev_samp: pokemon_v2_pokemonspeciesflavortext_stddev_samp_fields + sum: pokemon_v2_pokemonspeciesflavortext_sum_fields + var_pop: pokemon_v2_pokemonspeciesflavortext_var_pop_fields + var_samp: pokemon_v2_pokemonspeciesflavortext_var_samp_fields + variance: pokemon_v2_pokemonspeciesflavortext_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_pokemonspeciesflavortext" +""" +input pokemon_v2_pokemonspeciesflavortext_aggregate_order_by { + avg: pokemon_v2_pokemonspeciesflavortext_avg_order_by + count: order_by + max: pokemon_v2_pokemonspeciesflavortext_max_order_by + min: pokemon_v2_pokemonspeciesflavortext_min_order_by + stddev: pokemon_v2_pokemonspeciesflavortext_stddev_order_by + stddev_pop: pokemon_v2_pokemonspeciesflavortext_stddev_pop_order_by + stddev_samp: pokemon_v2_pokemonspeciesflavortext_stddev_samp_order_by + sum: pokemon_v2_pokemonspeciesflavortext_sum_order_by + var_pop: pokemon_v2_pokemonspeciesflavortext_var_pop_order_by + var_samp: pokemon_v2_pokemonspeciesflavortext_var_samp_order_by + variance: pokemon_v2_pokemonspeciesflavortext_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_pokemonspeciesflavortext_avg_fields { + id: Float + language_id: Float + pokemon_species_id: Float + version_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_pokemonspeciesflavortext" +""" +input pokemon_v2_pokemonspeciesflavortext_avg_order_by { + id: order_by + language_id: order_by + pokemon_species_id: order_by + version_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokemonspeciesflavortext". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokemonspeciesflavortext_bool_exp { + _and: [pokemon_v2_pokemonspeciesflavortext_bool_exp!] + _not: pokemon_v2_pokemonspeciesflavortext_bool_exp + _or: [pokemon_v2_pokemonspeciesflavortext_bool_exp!] + flavor_text: String_comparison_exp + id: Int_comparison_exp + language_id: Int_comparison_exp + pokemon_species_id: Int_comparison_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_bool_exp + pokemon_v2_version: pokemon_v2_version_bool_exp + version_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokemonspeciesflavortext_max_fields { + flavor_text: String + id: Int + language_id: Int + pokemon_species_id: Int + version_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_pokemonspeciesflavortext" +""" +input pokemon_v2_pokemonspeciesflavortext_max_order_by { + flavor_text: order_by + id: order_by + language_id: order_by + pokemon_species_id: order_by + version_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_pokemonspeciesflavortext_min_fields { + flavor_text: String + id: Int + language_id: Int + pokemon_species_id: Int + version_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_pokemonspeciesflavortext" +""" +input pokemon_v2_pokemonspeciesflavortext_min_order_by { + flavor_text: order_by + id: order_by + language_id: order_by + pokemon_species_id: order_by + version_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_pokemonspeciesflavortext". +""" +input pokemon_v2_pokemonspeciesflavortext_order_by { + flavor_text: order_by + id: order_by + language_id: order_by + pokemon_species_id: order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_order_by + pokemon_v2_version: pokemon_v2_version_order_by + version_id: order_by +} + +""" +select columns of table "pokemon_v2_pokemonspeciesflavortext" +""" +enum pokemon_v2_pokemonspeciesflavortext_select_column { + """column name""" + flavor_text + + """column name""" + id + + """column name""" + language_id + + """column name""" + pokemon_species_id + + """column name""" + version_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokemonspeciesflavortext_stddev_fields { + id: Float + language_id: Float + pokemon_species_id: Float + version_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_pokemonspeciesflavortext" +""" +input pokemon_v2_pokemonspeciesflavortext_stddev_order_by { + id: order_by + language_id: order_by + pokemon_species_id: order_by + version_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokemonspeciesflavortext_stddev_pop_fields { + id: Float + language_id: Float + pokemon_species_id: Float + version_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_pokemonspeciesflavortext" +""" +input pokemon_v2_pokemonspeciesflavortext_stddev_pop_order_by { + id: order_by + language_id: order_by + pokemon_species_id: order_by + version_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokemonspeciesflavortext_stddev_samp_fields { + id: Float + language_id: Float + pokemon_species_id: Float + version_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_pokemonspeciesflavortext" +""" +input pokemon_v2_pokemonspeciesflavortext_stddev_samp_order_by { + id: order_by + language_id: order_by + pokemon_species_id: order_by + version_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_pokemonspeciesflavortext" +""" +input pokemon_v2_pokemonspeciesflavortext_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokemonspeciesflavortext_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokemonspeciesflavortext_stream_cursor_value_input { + flavor_text: String + id: Int + language_id: Int + pokemon_species_id: Int + version_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_pokemonspeciesflavortext_sum_fields { + id: Int + language_id: Int + pokemon_species_id: Int + version_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_pokemonspeciesflavortext" +""" +input pokemon_v2_pokemonspeciesflavortext_sum_order_by { + id: order_by + language_id: order_by + pokemon_species_id: order_by + version_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokemonspeciesflavortext_var_pop_fields { + id: Float + language_id: Float + pokemon_species_id: Float + version_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_pokemonspeciesflavortext" +""" +input pokemon_v2_pokemonspeciesflavortext_var_pop_order_by { + id: order_by + language_id: order_by + pokemon_species_id: order_by + version_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokemonspeciesflavortext_var_samp_fields { + id: Float + language_id: Float + pokemon_species_id: Float + version_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_pokemonspeciesflavortext" +""" +input pokemon_v2_pokemonspeciesflavortext_var_samp_order_by { + id: order_by + language_id: order_by + pokemon_species_id: order_by + version_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_pokemonspeciesflavortext_variance_fields { + id: Float + language_id: Float + pokemon_species_id: Float + version_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_pokemonspeciesflavortext" +""" +input pokemon_v2_pokemonspeciesflavortext_variance_order_by { + id: order_by + language_id: order_by + pokemon_species_id: order_by + version_id: order_by +} + +""" +columns and relationships of "pokemon_v2_pokemonspeciesname" +""" +type pokemon_v2_pokemonspeciesname { + genus: String! + id: Int! + language_id: Int + name: String! + pokemon_species_id: Int + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies +} + +""" +aggregated selection of "pokemon_v2_pokemonspeciesname" +""" +type pokemon_v2_pokemonspeciesname_aggregate { + aggregate: pokemon_v2_pokemonspeciesname_aggregate_fields + nodes: [pokemon_v2_pokemonspeciesname!]! +} + +input pokemon_v2_pokemonspeciesname_aggregate_bool_exp { + count: pokemon_v2_pokemonspeciesname_aggregate_bool_exp_count +} + +input pokemon_v2_pokemonspeciesname_aggregate_bool_exp_count { + arguments: [pokemon_v2_pokemonspeciesname_select_column!] + distinct: Boolean + filter: pokemon_v2_pokemonspeciesname_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_pokemonspeciesname" +""" +type pokemon_v2_pokemonspeciesname_aggregate_fields { + avg: pokemon_v2_pokemonspeciesname_avg_fields + count(columns: [pokemon_v2_pokemonspeciesname_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokemonspeciesname_max_fields + min: pokemon_v2_pokemonspeciesname_min_fields + stddev: pokemon_v2_pokemonspeciesname_stddev_fields + stddev_pop: pokemon_v2_pokemonspeciesname_stddev_pop_fields + stddev_samp: pokemon_v2_pokemonspeciesname_stddev_samp_fields + sum: pokemon_v2_pokemonspeciesname_sum_fields + var_pop: pokemon_v2_pokemonspeciesname_var_pop_fields + var_samp: pokemon_v2_pokemonspeciesname_var_samp_fields + variance: pokemon_v2_pokemonspeciesname_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_pokemonspeciesname" +""" +input pokemon_v2_pokemonspeciesname_aggregate_order_by { + avg: pokemon_v2_pokemonspeciesname_avg_order_by + count: order_by + max: pokemon_v2_pokemonspeciesname_max_order_by + min: pokemon_v2_pokemonspeciesname_min_order_by + stddev: pokemon_v2_pokemonspeciesname_stddev_order_by + stddev_pop: pokemon_v2_pokemonspeciesname_stddev_pop_order_by + stddev_samp: pokemon_v2_pokemonspeciesname_stddev_samp_order_by + sum: pokemon_v2_pokemonspeciesname_sum_order_by + var_pop: pokemon_v2_pokemonspeciesname_var_pop_order_by + var_samp: pokemon_v2_pokemonspeciesname_var_samp_order_by + variance: pokemon_v2_pokemonspeciesname_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_pokemonspeciesname_avg_fields { + id: Float + language_id: Float + pokemon_species_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_pokemonspeciesname" +""" +input pokemon_v2_pokemonspeciesname_avg_order_by { + id: order_by + language_id: order_by + pokemon_species_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokemonspeciesname". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokemonspeciesname_bool_exp { + _and: [pokemon_v2_pokemonspeciesname_bool_exp!] + _not: pokemon_v2_pokemonspeciesname_bool_exp + _or: [pokemon_v2_pokemonspeciesname_bool_exp!] + genus: String_comparison_exp + id: Int_comparison_exp + language_id: Int_comparison_exp + name: String_comparison_exp + pokemon_species_id: Int_comparison_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokemonspeciesname_max_fields { + genus: String + id: Int + language_id: Int + name: String + pokemon_species_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_pokemonspeciesname" +""" +input pokemon_v2_pokemonspeciesname_max_order_by { + genus: order_by + id: order_by + language_id: order_by + name: order_by + pokemon_species_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_pokemonspeciesname_min_fields { + genus: String + id: Int + language_id: Int + name: String + pokemon_species_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_pokemonspeciesname" +""" +input pokemon_v2_pokemonspeciesname_min_order_by { + genus: order_by + id: order_by + language_id: order_by + name: order_by + pokemon_species_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_pokemonspeciesname". +""" +input pokemon_v2_pokemonspeciesname_order_by { + genus: order_by + id: order_by + language_id: order_by + name: order_by + pokemon_species_id: order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_order_by +} + +""" +select columns of table "pokemon_v2_pokemonspeciesname" +""" +enum pokemon_v2_pokemonspeciesname_select_column { + """column name""" + genus + + """column name""" + id + + """column name""" + language_id + + """column name""" + name + + """column name""" + pokemon_species_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokemonspeciesname_stddev_fields { + id: Float + language_id: Float + pokemon_species_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_pokemonspeciesname" +""" +input pokemon_v2_pokemonspeciesname_stddev_order_by { + id: order_by + language_id: order_by + pokemon_species_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokemonspeciesname_stddev_pop_fields { + id: Float + language_id: Float + pokemon_species_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_pokemonspeciesname" +""" +input pokemon_v2_pokemonspeciesname_stddev_pop_order_by { + id: order_by + language_id: order_by + pokemon_species_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokemonspeciesname_stddev_samp_fields { + id: Float + language_id: Float + pokemon_species_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_pokemonspeciesname" +""" +input pokemon_v2_pokemonspeciesname_stddev_samp_order_by { + id: order_by + language_id: order_by + pokemon_species_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_pokemonspeciesname" +""" +input pokemon_v2_pokemonspeciesname_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokemonspeciesname_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokemonspeciesname_stream_cursor_value_input { + genus: String + id: Int + language_id: Int + name: String + pokemon_species_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_pokemonspeciesname_sum_fields { + id: Int + language_id: Int + pokemon_species_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_pokemonspeciesname" +""" +input pokemon_v2_pokemonspeciesname_sum_order_by { + id: order_by + language_id: order_by + pokemon_species_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokemonspeciesname_var_pop_fields { + id: Float + language_id: Float + pokemon_species_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_pokemonspeciesname" +""" +input pokemon_v2_pokemonspeciesname_var_pop_order_by { + id: order_by + language_id: order_by + pokemon_species_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokemonspeciesname_var_samp_fields { + id: Float + language_id: Float + pokemon_species_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_pokemonspeciesname" +""" +input pokemon_v2_pokemonspeciesname_var_samp_order_by { + id: order_by + language_id: order_by + pokemon_species_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_pokemonspeciesname_variance_fields { + id: Float + language_id: Float + pokemon_species_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_pokemonspeciesname" +""" +input pokemon_v2_pokemonspeciesname_variance_order_by { + id: order_by + language_id: order_by + pokemon_species_id: order_by +} + +""" +columns and relationships of "pokemon_v2_pokemonsprites" +""" +type pokemon_v2_pokemonsprites { + id: Int! + pokemon_id: Int + + """An object relationship""" + pokemon_v2_pokemon: pokemon_v2_pokemon + sprites( + """JSON select path""" + path: String + ): jsonb! +} + +""" +aggregated selection of "pokemon_v2_pokemonsprites" +""" +type pokemon_v2_pokemonsprites_aggregate { + aggregate: pokemon_v2_pokemonsprites_aggregate_fields + nodes: [pokemon_v2_pokemonsprites!]! +} + +input pokemon_v2_pokemonsprites_aggregate_bool_exp { + count: pokemon_v2_pokemonsprites_aggregate_bool_exp_count +} + +input pokemon_v2_pokemonsprites_aggregate_bool_exp_count { + arguments: [pokemon_v2_pokemonsprites_select_column!] + distinct: Boolean + filter: pokemon_v2_pokemonsprites_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_pokemonsprites" +""" +type pokemon_v2_pokemonsprites_aggregate_fields { + avg: pokemon_v2_pokemonsprites_avg_fields + count(columns: [pokemon_v2_pokemonsprites_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokemonsprites_max_fields + min: pokemon_v2_pokemonsprites_min_fields + stddev: pokemon_v2_pokemonsprites_stddev_fields + stddev_pop: pokemon_v2_pokemonsprites_stddev_pop_fields + stddev_samp: pokemon_v2_pokemonsprites_stddev_samp_fields + sum: pokemon_v2_pokemonsprites_sum_fields + var_pop: pokemon_v2_pokemonsprites_var_pop_fields + var_samp: pokemon_v2_pokemonsprites_var_samp_fields + variance: pokemon_v2_pokemonsprites_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_pokemonsprites" +""" +input pokemon_v2_pokemonsprites_aggregate_order_by { + avg: pokemon_v2_pokemonsprites_avg_order_by + count: order_by + max: pokemon_v2_pokemonsprites_max_order_by + min: pokemon_v2_pokemonsprites_min_order_by + stddev: pokemon_v2_pokemonsprites_stddev_order_by + stddev_pop: pokemon_v2_pokemonsprites_stddev_pop_order_by + stddev_samp: pokemon_v2_pokemonsprites_stddev_samp_order_by + sum: pokemon_v2_pokemonsprites_sum_order_by + var_pop: pokemon_v2_pokemonsprites_var_pop_order_by + var_samp: pokemon_v2_pokemonsprites_var_samp_order_by + variance: pokemon_v2_pokemonsprites_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_pokemonsprites_avg_fields { + id: Float + pokemon_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_pokemonsprites" +""" +input pokemon_v2_pokemonsprites_avg_order_by { + id: order_by + pokemon_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokemonsprites". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokemonsprites_bool_exp { + _and: [pokemon_v2_pokemonsprites_bool_exp!] + _not: pokemon_v2_pokemonsprites_bool_exp + _or: [pokemon_v2_pokemonsprites_bool_exp!] + id: Int_comparison_exp + pokemon_id: Int_comparison_exp + pokemon_v2_pokemon: pokemon_v2_pokemon_bool_exp + sprites: jsonb_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokemonsprites_max_fields { + id: Int + pokemon_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_pokemonsprites" +""" +input pokemon_v2_pokemonsprites_max_order_by { + id: order_by + pokemon_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_pokemonsprites_min_fields { + id: Int + pokemon_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_pokemonsprites" +""" +input pokemon_v2_pokemonsprites_min_order_by { + id: order_by + pokemon_id: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_pokemonsprites".""" +input pokemon_v2_pokemonsprites_order_by { + id: order_by + pokemon_id: order_by + pokemon_v2_pokemon: pokemon_v2_pokemon_order_by + sprites: order_by +} + +""" +select columns of table "pokemon_v2_pokemonsprites" +""" +enum pokemon_v2_pokemonsprites_select_column { + """column name""" + id + + """column name""" + pokemon_id + + """column name""" + sprites +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokemonsprites_stddev_fields { + id: Float + pokemon_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_pokemonsprites" +""" +input pokemon_v2_pokemonsprites_stddev_order_by { + id: order_by + pokemon_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokemonsprites_stddev_pop_fields { + id: Float + pokemon_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_pokemonsprites" +""" +input pokemon_v2_pokemonsprites_stddev_pop_order_by { + id: order_by + pokemon_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokemonsprites_stddev_samp_fields { + id: Float + pokemon_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_pokemonsprites" +""" +input pokemon_v2_pokemonsprites_stddev_samp_order_by { + id: order_by + pokemon_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_pokemonsprites" +""" +input pokemon_v2_pokemonsprites_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokemonsprites_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokemonsprites_stream_cursor_value_input { + id: Int + pokemon_id: Int + sprites: jsonb +} + +"""aggregate sum on columns""" +type pokemon_v2_pokemonsprites_sum_fields { + id: Int + pokemon_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_pokemonsprites" +""" +input pokemon_v2_pokemonsprites_sum_order_by { + id: order_by + pokemon_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokemonsprites_var_pop_fields { + id: Float + pokemon_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_pokemonsprites" +""" +input pokemon_v2_pokemonsprites_var_pop_order_by { + id: order_by + pokemon_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokemonsprites_var_samp_fields { + id: Float + pokemon_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_pokemonsprites" +""" +input pokemon_v2_pokemonsprites_var_samp_order_by { + id: order_by + pokemon_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_pokemonsprites_variance_fields { + id: Float + pokemon_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_pokemonsprites" +""" +input pokemon_v2_pokemonsprites_variance_order_by { + id: order_by + pokemon_id: order_by +} + +""" +columns and relationships of "pokemon_v2_pokemonstat" +""" +type pokemon_v2_pokemonstat { + base_stat: Int! + effort: Int! + id: Int! + pokemon_id: Int + + """An object relationship""" + pokemon_v2_pokemon: pokemon_v2_pokemon + + """An object relationship""" + pokemon_v2_stat: pokemon_v2_stat + stat_id: Int +} + +""" +aggregated selection of "pokemon_v2_pokemonstat" +""" +type pokemon_v2_pokemonstat_aggregate { + aggregate: pokemon_v2_pokemonstat_aggregate_fields + nodes: [pokemon_v2_pokemonstat!]! +} + +input pokemon_v2_pokemonstat_aggregate_bool_exp { + count: pokemon_v2_pokemonstat_aggregate_bool_exp_count +} + +input pokemon_v2_pokemonstat_aggregate_bool_exp_count { + arguments: [pokemon_v2_pokemonstat_select_column!] + distinct: Boolean + filter: pokemon_v2_pokemonstat_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_pokemonstat" +""" +type pokemon_v2_pokemonstat_aggregate_fields { + avg: pokemon_v2_pokemonstat_avg_fields + count(columns: [pokemon_v2_pokemonstat_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokemonstat_max_fields + min: pokemon_v2_pokemonstat_min_fields + stddev: pokemon_v2_pokemonstat_stddev_fields + stddev_pop: pokemon_v2_pokemonstat_stddev_pop_fields + stddev_samp: pokemon_v2_pokemonstat_stddev_samp_fields + sum: pokemon_v2_pokemonstat_sum_fields + var_pop: pokemon_v2_pokemonstat_var_pop_fields + var_samp: pokemon_v2_pokemonstat_var_samp_fields + variance: pokemon_v2_pokemonstat_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_pokemonstat" +""" +input pokemon_v2_pokemonstat_aggregate_order_by { + avg: pokemon_v2_pokemonstat_avg_order_by + count: order_by + max: pokemon_v2_pokemonstat_max_order_by + min: pokemon_v2_pokemonstat_min_order_by + stddev: pokemon_v2_pokemonstat_stddev_order_by + stddev_pop: pokemon_v2_pokemonstat_stddev_pop_order_by + stddev_samp: pokemon_v2_pokemonstat_stddev_samp_order_by + sum: pokemon_v2_pokemonstat_sum_order_by + var_pop: pokemon_v2_pokemonstat_var_pop_order_by + var_samp: pokemon_v2_pokemonstat_var_samp_order_by + variance: pokemon_v2_pokemonstat_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_pokemonstat_avg_fields { + base_stat: Float + effort: Float + id: Float + pokemon_id: Float + stat_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_pokemonstat" +""" +input pokemon_v2_pokemonstat_avg_order_by { + base_stat: order_by + effort: order_by + id: order_by + pokemon_id: order_by + stat_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokemonstat". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokemonstat_bool_exp { + _and: [pokemon_v2_pokemonstat_bool_exp!] + _not: pokemon_v2_pokemonstat_bool_exp + _or: [pokemon_v2_pokemonstat_bool_exp!] + base_stat: Int_comparison_exp + effort: Int_comparison_exp + id: Int_comparison_exp + pokemon_id: Int_comparison_exp + pokemon_v2_pokemon: pokemon_v2_pokemon_bool_exp + pokemon_v2_stat: pokemon_v2_stat_bool_exp + stat_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokemonstat_max_fields { + base_stat: Int + effort: Int + id: Int + pokemon_id: Int + stat_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_pokemonstat" +""" +input pokemon_v2_pokemonstat_max_order_by { + base_stat: order_by + effort: order_by + id: order_by + pokemon_id: order_by + stat_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_pokemonstat_min_fields { + base_stat: Int + effort: Int + id: Int + pokemon_id: Int + stat_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_pokemonstat" +""" +input pokemon_v2_pokemonstat_min_order_by { + base_stat: order_by + effort: order_by + id: order_by + pokemon_id: order_by + stat_id: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_pokemonstat".""" +input pokemon_v2_pokemonstat_order_by { + base_stat: order_by + effort: order_by + id: order_by + pokemon_id: order_by + pokemon_v2_pokemon: pokemon_v2_pokemon_order_by + pokemon_v2_stat: pokemon_v2_stat_order_by + stat_id: order_by +} + +""" +select columns of table "pokemon_v2_pokemonstat" +""" +enum pokemon_v2_pokemonstat_select_column { + """column name""" + base_stat + + """column name""" + effort + + """column name""" + id + + """column name""" + pokemon_id + + """column name""" + stat_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokemonstat_stddev_fields { + base_stat: Float + effort: Float + id: Float + pokemon_id: Float + stat_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_pokemonstat" +""" +input pokemon_v2_pokemonstat_stddev_order_by { + base_stat: order_by + effort: order_by + id: order_by + pokemon_id: order_by + stat_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokemonstat_stddev_pop_fields { + base_stat: Float + effort: Float + id: Float + pokemon_id: Float + stat_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_pokemonstat" +""" +input pokemon_v2_pokemonstat_stddev_pop_order_by { + base_stat: order_by + effort: order_by + id: order_by + pokemon_id: order_by + stat_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokemonstat_stddev_samp_fields { + base_stat: Float + effort: Float + id: Float + pokemon_id: Float + stat_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_pokemonstat" +""" +input pokemon_v2_pokemonstat_stddev_samp_order_by { + base_stat: order_by + effort: order_by + id: order_by + pokemon_id: order_by + stat_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_pokemonstat" +""" +input pokemon_v2_pokemonstat_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokemonstat_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokemonstat_stream_cursor_value_input { + base_stat: Int + effort: Int + id: Int + pokemon_id: Int + stat_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_pokemonstat_sum_fields { + base_stat: Int + effort: Int + id: Int + pokemon_id: Int + stat_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_pokemonstat" +""" +input pokemon_v2_pokemonstat_sum_order_by { + base_stat: order_by + effort: order_by + id: order_by + pokemon_id: order_by + stat_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokemonstat_var_pop_fields { + base_stat: Float + effort: Float + id: Float + pokemon_id: Float + stat_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_pokemonstat" +""" +input pokemon_v2_pokemonstat_var_pop_order_by { + base_stat: order_by + effort: order_by + id: order_by + pokemon_id: order_by + stat_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokemonstat_var_samp_fields { + base_stat: Float + effort: Float + id: Float + pokemon_id: Float + stat_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_pokemonstat" +""" +input pokemon_v2_pokemonstat_var_samp_order_by { + base_stat: order_by + effort: order_by + id: order_by + pokemon_id: order_by + stat_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_pokemonstat_variance_fields { + base_stat: Float + effort: Float + id: Float + pokemon_id: Float + stat_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_pokemonstat" +""" +input pokemon_v2_pokemonstat_variance_order_by { + base_stat: order_by + effort: order_by + id: order_by + pokemon_id: order_by + stat_id: order_by +} + +""" +columns and relationships of "pokemon_v2_pokemontype" +""" +type pokemon_v2_pokemontype { + id: Int! + pokemon_id: Int + + """An object relationship""" + pokemon_v2_pokemon: pokemon_v2_pokemon + + """An object relationship""" + pokemon_v2_type: pokemon_v2_type + slot: Int! + type_id: Int +} + +""" +aggregated selection of "pokemon_v2_pokemontype" +""" +type pokemon_v2_pokemontype_aggregate { + aggregate: pokemon_v2_pokemontype_aggregate_fields + nodes: [pokemon_v2_pokemontype!]! +} + +input pokemon_v2_pokemontype_aggregate_bool_exp { + count: pokemon_v2_pokemontype_aggregate_bool_exp_count +} + +input pokemon_v2_pokemontype_aggregate_bool_exp_count { + arguments: [pokemon_v2_pokemontype_select_column!] + distinct: Boolean + filter: pokemon_v2_pokemontype_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_pokemontype" +""" +type pokemon_v2_pokemontype_aggregate_fields { + avg: pokemon_v2_pokemontype_avg_fields + count(columns: [pokemon_v2_pokemontype_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokemontype_max_fields + min: pokemon_v2_pokemontype_min_fields + stddev: pokemon_v2_pokemontype_stddev_fields + stddev_pop: pokemon_v2_pokemontype_stddev_pop_fields + stddev_samp: pokemon_v2_pokemontype_stddev_samp_fields + sum: pokemon_v2_pokemontype_sum_fields + var_pop: pokemon_v2_pokemontype_var_pop_fields + var_samp: pokemon_v2_pokemontype_var_samp_fields + variance: pokemon_v2_pokemontype_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_pokemontype" +""" +input pokemon_v2_pokemontype_aggregate_order_by { + avg: pokemon_v2_pokemontype_avg_order_by + count: order_by + max: pokemon_v2_pokemontype_max_order_by + min: pokemon_v2_pokemontype_min_order_by + stddev: pokemon_v2_pokemontype_stddev_order_by + stddev_pop: pokemon_v2_pokemontype_stddev_pop_order_by + stddev_samp: pokemon_v2_pokemontype_stddev_samp_order_by + sum: pokemon_v2_pokemontype_sum_order_by + var_pop: pokemon_v2_pokemontype_var_pop_order_by + var_samp: pokemon_v2_pokemontype_var_samp_order_by + variance: pokemon_v2_pokemontype_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_pokemontype_avg_fields { + id: Float + pokemon_id: Float + slot: Float + type_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_pokemontype" +""" +input pokemon_v2_pokemontype_avg_order_by { + id: order_by + pokemon_id: order_by + slot: order_by + type_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokemontype". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokemontype_bool_exp { + _and: [pokemon_v2_pokemontype_bool_exp!] + _not: pokemon_v2_pokemontype_bool_exp + _or: [pokemon_v2_pokemontype_bool_exp!] + id: Int_comparison_exp + pokemon_id: Int_comparison_exp + pokemon_v2_pokemon: pokemon_v2_pokemon_bool_exp + pokemon_v2_type: pokemon_v2_type_bool_exp + slot: Int_comparison_exp + type_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokemontype_max_fields { + id: Int + pokemon_id: Int + slot: Int + type_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_pokemontype" +""" +input pokemon_v2_pokemontype_max_order_by { + id: order_by + pokemon_id: order_by + slot: order_by + type_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_pokemontype_min_fields { + id: Int + pokemon_id: Int + slot: Int + type_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_pokemontype" +""" +input pokemon_v2_pokemontype_min_order_by { + id: order_by + pokemon_id: order_by + slot: order_by + type_id: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_pokemontype".""" +input pokemon_v2_pokemontype_order_by { + id: order_by + pokemon_id: order_by + pokemon_v2_pokemon: pokemon_v2_pokemon_order_by + pokemon_v2_type: pokemon_v2_type_order_by + slot: order_by + type_id: order_by +} + +""" +select columns of table "pokemon_v2_pokemontype" +""" +enum pokemon_v2_pokemontype_select_column { + """column name""" + id + + """column name""" + pokemon_id + + """column name""" + slot + + """column name""" + type_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokemontype_stddev_fields { + id: Float + pokemon_id: Float + slot: Float + type_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_pokemontype" +""" +input pokemon_v2_pokemontype_stddev_order_by { + id: order_by + pokemon_id: order_by + slot: order_by + type_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokemontype_stddev_pop_fields { + id: Float + pokemon_id: Float + slot: Float + type_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_pokemontype" +""" +input pokemon_v2_pokemontype_stddev_pop_order_by { + id: order_by + pokemon_id: order_by + slot: order_by + type_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokemontype_stddev_samp_fields { + id: Float + pokemon_id: Float + slot: Float + type_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_pokemontype" +""" +input pokemon_v2_pokemontype_stddev_samp_order_by { + id: order_by + pokemon_id: order_by + slot: order_by + type_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_pokemontype" +""" +input pokemon_v2_pokemontype_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokemontype_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokemontype_stream_cursor_value_input { + id: Int + pokemon_id: Int + slot: Int + type_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_pokemontype_sum_fields { + id: Int + pokemon_id: Int + slot: Int + type_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_pokemontype" +""" +input pokemon_v2_pokemontype_sum_order_by { + id: order_by + pokemon_id: order_by + slot: order_by + type_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokemontype_var_pop_fields { + id: Float + pokemon_id: Float + slot: Float + type_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_pokemontype" +""" +input pokemon_v2_pokemontype_var_pop_order_by { + id: order_by + pokemon_id: order_by + slot: order_by + type_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokemontype_var_samp_fields { + id: Float + pokemon_id: Float + slot: Float + type_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_pokemontype" +""" +input pokemon_v2_pokemontype_var_samp_order_by { + id: order_by + pokemon_id: order_by + slot: order_by + type_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_pokemontype_variance_fields { + id: Float + pokemon_id: Float + slot: Float + type_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_pokemontype" +""" +input pokemon_v2_pokemontype_variance_order_by { + id: order_by + pokemon_id: order_by + slot: order_by + type_id: order_by +} + +""" +columns and relationships of "pokemon_v2_pokemontypepast" +""" +type pokemon_v2_pokemontypepast { + generation_id: Int + id: Int! + pokemon_id: Int + + """An object relationship""" + pokemon_v2_generation: pokemon_v2_generation + + """An object relationship""" + pokemon_v2_pokemon: pokemon_v2_pokemon + + """An object relationship""" + pokemon_v2_type: pokemon_v2_type + slot: Int! + type_id: Int +} + +""" +aggregated selection of "pokemon_v2_pokemontypepast" +""" +type pokemon_v2_pokemontypepast_aggregate { + aggregate: pokemon_v2_pokemontypepast_aggregate_fields + nodes: [pokemon_v2_pokemontypepast!]! +} + +input pokemon_v2_pokemontypepast_aggregate_bool_exp { + count: pokemon_v2_pokemontypepast_aggregate_bool_exp_count +} + +input pokemon_v2_pokemontypepast_aggregate_bool_exp_count { + arguments: [pokemon_v2_pokemontypepast_select_column!] + distinct: Boolean + filter: pokemon_v2_pokemontypepast_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_pokemontypepast" +""" +type pokemon_v2_pokemontypepast_aggregate_fields { + avg: pokemon_v2_pokemontypepast_avg_fields + count(columns: [pokemon_v2_pokemontypepast_select_column!], distinct: Boolean): Int! + max: pokemon_v2_pokemontypepast_max_fields + min: pokemon_v2_pokemontypepast_min_fields + stddev: pokemon_v2_pokemontypepast_stddev_fields + stddev_pop: pokemon_v2_pokemontypepast_stddev_pop_fields + stddev_samp: pokemon_v2_pokemontypepast_stddev_samp_fields + sum: pokemon_v2_pokemontypepast_sum_fields + var_pop: pokemon_v2_pokemontypepast_var_pop_fields + var_samp: pokemon_v2_pokemontypepast_var_samp_fields + variance: pokemon_v2_pokemontypepast_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_pokemontypepast" +""" +input pokemon_v2_pokemontypepast_aggregate_order_by { + avg: pokemon_v2_pokemontypepast_avg_order_by + count: order_by + max: pokemon_v2_pokemontypepast_max_order_by + min: pokemon_v2_pokemontypepast_min_order_by + stddev: pokemon_v2_pokemontypepast_stddev_order_by + stddev_pop: pokemon_v2_pokemontypepast_stddev_pop_order_by + stddev_samp: pokemon_v2_pokemontypepast_stddev_samp_order_by + sum: pokemon_v2_pokemontypepast_sum_order_by + var_pop: pokemon_v2_pokemontypepast_var_pop_order_by + var_samp: pokemon_v2_pokemontypepast_var_samp_order_by + variance: pokemon_v2_pokemontypepast_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_pokemontypepast_avg_fields { + generation_id: Float + id: Float + pokemon_id: Float + slot: Float + type_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_pokemontypepast" +""" +input pokemon_v2_pokemontypepast_avg_order_by { + generation_id: order_by + id: order_by + pokemon_id: order_by + slot: order_by + type_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_pokemontypepast". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_pokemontypepast_bool_exp { + _and: [pokemon_v2_pokemontypepast_bool_exp!] + _not: pokemon_v2_pokemontypepast_bool_exp + _or: [pokemon_v2_pokemontypepast_bool_exp!] + generation_id: Int_comparison_exp + id: Int_comparison_exp + pokemon_id: Int_comparison_exp + pokemon_v2_generation: pokemon_v2_generation_bool_exp + pokemon_v2_pokemon: pokemon_v2_pokemon_bool_exp + pokemon_v2_type: pokemon_v2_type_bool_exp + slot: Int_comparison_exp + type_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_pokemontypepast_max_fields { + generation_id: Int + id: Int + pokemon_id: Int + slot: Int + type_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_pokemontypepast" +""" +input pokemon_v2_pokemontypepast_max_order_by { + generation_id: order_by + id: order_by + pokemon_id: order_by + slot: order_by + type_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_pokemontypepast_min_fields { + generation_id: Int + id: Int + pokemon_id: Int + slot: Int + type_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_pokemontypepast" +""" +input pokemon_v2_pokemontypepast_min_order_by { + generation_id: order_by + id: order_by + pokemon_id: order_by + slot: order_by + type_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_pokemontypepast". +""" +input pokemon_v2_pokemontypepast_order_by { + generation_id: order_by + id: order_by + pokemon_id: order_by + pokemon_v2_generation: pokemon_v2_generation_order_by + pokemon_v2_pokemon: pokemon_v2_pokemon_order_by + pokemon_v2_type: pokemon_v2_type_order_by + slot: order_by + type_id: order_by +} + +""" +select columns of table "pokemon_v2_pokemontypepast" +""" +enum pokemon_v2_pokemontypepast_select_column { + """column name""" + generation_id + + """column name""" + id + + """column name""" + pokemon_id + + """column name""" + slot + + """column name""" + type_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_pokemontypepast_stddev_fields { + generation_id: Float + id: Float + pokemon_id: Float + slot: Float + type_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_pokemontypepast" +""" +input pokemon_v2_pokemontypepast_stddev_order_by { + generation_id: order_by + id: order_by + pokemon_id: order_by + slot: order_by + type_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_pokemontypepast_stddev_pop_fields { + generation_id: Float + id: Float + pokemon_id: Float + slot: Float + type_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_pokemontypepast" +""" +input pokemon_v2_pokemontypepast_stddev_pop_order_by { + generation_id: order_by + id: order_by + pokemon_id: order_by + slot: order_by + type_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_pokemontypepast_stddev_samp_fields { + generation_id: Float + id: Float + pokemon_id: Float + slot: Float + type_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_pokemontypepast" +""" +input pokemon_v2_pokemontypepast_stddev_samp_order_by { + generation_id: order_by + id: order_by + pokemon_id: order_by + slot: order_by + type_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_pokemontypepast" +""" +input pokemon_v2_pokemontypepast_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_pokemontypepast_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_pokemontypepast_stream_cursor_value_input { + generation_id: Int + id: Int + pokemon_id: Int + slot: Int + type_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_pokemontypepast_sum_fields { + generation_id: Int + id: Int + pokemon_id: Int + slot: Int + type_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_pokemontypepast" +""" +input pokemon_v2_pokemontypepast_sum_order_by { + generation_id: order_by + id: order_by + pokemon_id: order_by + slot: order_by + type_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_pokemontypepast_var_pop_fields { + generation_id: Float + id: Float + pokemon_id: Float + slot: Float + type_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_pokemontypepast" +""" +input pokemon_v2_pokemontypepast_var_pop_order_by { + generation_id: order_by + id: order_by + pokemon_id: order_by + slot: order_by + type_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_pokemontypepast_var_samp_fields { + generation_id: Float + id: Float + pokemon_id: Float + slot: Float + type_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_pokemontypepast" +""" +input pokemon_v2_pokemontypepast_var_samp_order_by { + generation_id: order_by + id: order_by + pokemon_id: order_by + slot: order_by + type_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_pokemontypepast_variance_fields { + generation_id: Float + id: Float + pokemon_id: Float + slot: Float + type_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_pokemontypepast" +""" +input pokemon_v2_pokemontypepast_variance_order_by { + generation_id: order_by + id: order_by + pokemon_id: order_by + slot: order_by + type_id: order_by +} + +""" +columns and relationships of "pokemon_v2_region" +""" +type pokemon_v2_region { + id: Int! + name: String! + + """An object relationship""" + pokemon_v2_generation: pokemon_v2_generation + + """An array relationship""" + pokemon_v2_generations( + """distinct select on columns""" + distinct_on: [pokemon_v2_generation_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_generation_order_by!] + + """filter the rows returned""" + where: pokemon_v2_generation_bool_exp + ): [pokemon_v2_generation!]! + + """An aggregate relationship""" + pokemon_v2_generations_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_generation_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_generation_order_by!] + + """filter the rows returned""" + where: pokemon_v2_generation_bool_exp + ): pokemon_v2_generation_aggregate! + + """An array relationship""" + pokemon_v2_locations( + """distinct select on columns""" + distinct_on: [pokemon_v2_location_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_location_order_by!] + + """filter the rows returned""" + where: pokemon_v2_location_bool_exp + ): [pokemon_v2_location!]! + + """An aggregate relationship""" + pokemon_v2_locations_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_location_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_location_order_by!] + + """filter the rows returned""" + where: pokemon_v2_location_bool_exp + ): pokemon_v2_location_aggregate! + + """An array relationship""" + pokemon_v2_pokedexes( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokedex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokedex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokedex_bool_exp + ): [pokemon_v2_pokedex!]! + + """An aggregate relationship""" + pokemon_v2_pokedexes_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokedex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokedex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokedex_bool_exp + ): pokemon_v2_pokedex_aggregate! + + """An array relationship""" + pokemon_v2_regionnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_regionname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_regionname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_regionname_bool_exp + ): [pokemon_v2_regionname!]! + + """An aggregate relationship""" + pokemon_v2_regionnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_regionname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_regionname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_regionname_bool_exp + ): pokemon_v2_regionname_aggregate! + + """An array relationship""" + pokemon_v2_versiongroupregions( + """distinct select on columns""" + distinct_on: [pokemon_v2_versiongroupregion_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_versiongroupregion_order_by!] + + """filter the rows returned""" + where: pokemon_v2_versiongroupregion_bool_exp + ): [pokemon_v2_versiongroupregion!]! + + """An aggregate relationship""" + pokemon_v2_versiongroupregions_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_versiongroupregion_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_versiongroupregion_order_by!] + + """filter the rows returned""" + where: pokemon_v2_versiongroupregion_bool_exp + ): pokemon_v2_versiongroupregion_aggregate! +} + +""" +aggregated selection of "pokemon_v2_region" +""" +type pokemon_v2_region_aggregate { + aggregate: pokemon_v2_region_aggregate_fields + nodes: [pokemon_v2_region!]! +} + +""" +aggregate fields of "pokemon_v2_region" +""" +type pokemon_v2_region_aggregate_fields { + avg: pokemon_v2_region_avg_fields + count(columns: [pokemon_v2_region_select_column!], distinct: Boolean): Int! + max: pokemon_v2_region_max_fields + min: pokemon_v2_region_min_fields + stddev: pokemon_v2_region_stddev_fields + stddev_pop: pokemon_v2_region_stddev_pop_fields + stddev_samp: pokemon_v2_region_stddev_samp_fields + sum: pokemon_v2_region_sum_fields + var_pop: pokemon_v2_region_var_pop_fields + var_samp: pokemon_v2_region_var_samp_fields + variance: pokemon_v2_region_variance_fields +} + +"""aggregate avg on columns""" +type pokemon_v2_region_avg_fields { + id: Float +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_region". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_region_bool_exp { + _and: [pokemon_v2_region_bool_exp!] + _not: pokemon_v2_region_bool_exp + _or: [pokemon_v2_region_bool_exp!] + id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_generation: pokemon_v2_generation_bool_exp + pokemon_v2_generations: pokemon_v2_generation_bool_exp + pokemon_v2_generations_aggregate: pokemon_v2_generation_aggregate_bool_exp + pokemon_v2_locations: pokemon_v2_location_bool_exp + pokemon_v2_locations_aggregate: pokemon_v2_location_aggregate_bool_exp + pokemon_v2_pokedexes: pokemon_v2_pokedex_bool_exp + pokemon_v2_pokedexes_aggregate: pokemon_v2_pokedex_aggregate_bool_exp + pokemon_v2_regionnames: pokemon_v2_regionname_bool_exp + pokemon_v2_regionnames_aggregate: pokemon_v2_regionname_aggregate_bool_exp + pokemon_v2_versiongroupregions: pokemon_v2_versiongroupregion_bool_exp + pokemon_v2_versiongroupregions_aggregate: pokemon_v2_versiongroupregion_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_region_max_fields { + id: Int + name: String +} + +"""aggregate min on columns""" +type pokemon_v2_region_min_fields { + id: Int + name: String +} + +"""Ordering options when selecting data from "pokemon_v2_region".""" +input pokemon_v2_region_order_by { + id: order_by + name: order_by + pokemon_v2_generation: pokemon_v2_generation_order_by + pokemon_v2_generations_aggregate: pokemon_v2_generation_aggregate_order_by + pokemon_v2_locations_aggregate: pokemon_v2_location_aggregate_order_by + pokemon_v2_pokedexes_aggregate: pokemon_v2_pokedex_aggregate_order_by + pokemon_v2_regionnames_aggregate: pokemon_v2_regionname_aggregate_order_by + pokemon_v2_versiongroupregions_aggregate: pokemon_v2_versiongroupregion_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_region" +""" +enum pokemon_v2_region_select_column { + """column name""" + id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_region_stddev_fields { + id: Float +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_region_stddev_pop_fields { + id: Float +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_region_stddev_samp_fields { + id: Float +} + +""" +Streaming cursor of the table "pokemon_v2_region" +""" +input pokemon_v2_region_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_region_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_region_stream_cursor_value_input { + id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_region_sum_fields { + id: Int +} + +"""aggregate var_pop on columns""" +type pokemon_v2_region_var_pop_fields { + id: Float +} + +"""aggregate var_samp on columns""" +type pokemon_v2_region_var_samp_fields { + id: Float +} + +"""aggregate variance on columns""" +type pokemon_v2_region_variance_fields { + id: Float +} + +""" +columns and relationships of "pokemon_v2_regionname" +""" +type pokemon_v2_regionname { + id: Int! + language_id: Int + name: String! + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_region: pokemon_v2_region + region_id: Int +} + +""" +aggregated selection of "pokemon_v2_regionname" +""" +type pokemon_v2_regionname_aggregate { + aggregate: pokemon_v2_regionname_aggregate_fields + nodes: [pokemon_v2_regionname!]! +} + +input pokemon_v2_regionname_aggregate_bool_exp { + count: pokemon_v2_regionname_aggregate_bool_exp_count +} + +input pokemon_v2_regionname_aggregate_bool_exp_count { + arguments: [pokemon_v2_regionname_select_column!] + distinct: Boolean + filter: pokemon_v2_regionname_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_regionname" +""" +type pokemon_v2_regionname_aggregate_fields { + avg: pokemon_v2_regionname_avg_fields + count(columns: [pokemon_v2_regionname_select_column!], distinct: Boolean): Int! + max: pokemon_v2_regionname_max_fields + min: pokemon_v2_regionname_min_fields + stddev: pokemon_v2_regionname_stddev_fields + stddev_pop: pokemon_v2_regionname_stddev_pop_fields + stddev_samp: pokemon_v2_regionname_stddev_samp_fields + sum: pokemon_v2_regionname_sum_fields + var_pop: pokemon_v2_regionname_var_pop_fields + var_samp: pokemon_v2_regionname_var_samp_fields + variance: pokemon_v2_regionname_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_regionname" +""" +input pokemon_v2_regionname_aggregate_order_by { + avg: pokemon_v2_regionname_avg_order_by + count: order_by + max: pokemon_v2_regionname_max_order_by + min: pokemon_v2_regionname_min_order_by + stddev: pokemon_v2_regionname_stddev_order_by + stddev_pop: pokemon_v2_regionname_stddev_pop_order_by + stddev_samp: pokemon_v2_regionname_stddev_samp_order_by + sum: pokemon_v2_regionname_sum_order_by + var_pop: pokemon_v2_regionname_var_pop_order_by + var_samp: pokemon_v2_regionname_var_samp_order_by + variance: pokemon_v2_regionname_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_regionname_avg_fields { + id: Float + language_id: Float + region_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_regionname" +""" +input pokemon_v2_regionname_avg_order_by { + id: order_by + language_id: order_by + region_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_regionname". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_regionname_bool_exp { + _and: [pokemon_v2_regionname_bool_exp!] + _not: pokemon_v2_regionname_bool_exp + _or: [pokemon_v2_regionname_bool_exp!] + id: Int_comparison_exp + language_id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_region: pokemon_v2_region_bool_exp + region_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_regionname_max_fields { + id: Int + language_id: Int + name: String + region_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_regionname" +""" +input pokemon_v2_regionname_max_order_by { + id: order_by + language_id: order_by + name: order_by + region_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_regionname_min_fields { + id: Int + language_id: Int + name: String + region_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_regionname" +""" +input pokemon_v2_regionname_min_order_by { + id: order_by + language_id: order_by + name: order_by + region_id: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_regionname".""" +input pokemon_v2_regionname_order_by { + id: order_by + language_id: order_by + name: order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_region: pokemon_v2_region_order_by + region_id: order_by +} + +""" +select columns of table "pokemon_v2_regionname" +""" +enum pokemon_v2_regionname_select_column { + """column name""" + id + + """column name""" + language_id + + """column name""" + name + + """column name""" + region_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_regionname_stddev_fields { + id: Float + language_id: Float + region_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_regionname" +""" +input pokemon_v2_regionname_stddev_order_by { + id: order_by + language_id: order_by + region_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_regionname_stddev_pop_fields { + id: Float + language_id: Float + region_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_regionname" +""" +input pokemon_v2_regionname_stddev_pop_order_by { + id: order_by + language_id: order_by + region_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_regionname_stddev_samp_fields { + id: Float + language_id: Float + region_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_regionname" +""" +input pokemon_v2_regionname_stddev_samp_order_by { + id: order_by + language_id: order_by + region_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_regionname" +""" +input pokemon_v2_regionname_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_regionname_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_regionname_stream_cursor_value_input { + id: Int + language_id: Int + name: String + region_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_regionname_sum_fields { + id: Int + language_id: Int + region_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_regionname" +""" +input pokemon_v2_regionname_sum_order_by { + id: order_by + language_id: order_by + region_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_regionname_var_pop_fields { + id: Float + language_id: Float + region_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_regionname" +""" +input pokemon_v2_regionname_var_pop_order_by { + id: order_by + language_id: order_by + region_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_regionname_var_samp_fields { + id: Float + language_id: Float + region_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_regionname" +""" +input pokemon_v2_regionname_var_samp_order_by { + id: order_by + language_id: order_by + region_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_regionname_variance_fields { + id: Float + language_id: Float + region_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_regionname" +""" +input pokemon_v2_regionname_variance_order_by { + id: order_by + language_id: order_by + region_id: order_by +} + +""" +columns and relationships of "pokemon_v2_stat" +""" +type pokemon_v2_stat { + game_index: Int! + id: Int! + is_battle_only: Boolean! + move_damage_class_id: Int + name: String! + + """An array relationship""" + pokemonV2NaturesByIncreasedStatId( + """distinct select on columns""" + distinct_on: [pokemon_v2_nature_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_nature_order_by!] + + """filter the rows returned""" + where: pokemon_v2_nature_bool_exp + ): [pokemon_v2_nature!]! + + """An aggregate relationship""" + pokemonV2NaturesByIncreasedStatId_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_nature_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_nature_order_by!] + + """filter the rows returned""" + where: pokemon_v2_nature_bool_exp + ): pokemon_v2_nature_aggregate! + + """An array relationship""" + pokemon_v2_characteristics( + """distinct select on columns""" + distinct_on: [pokemon_v2_characteristic_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_characteristic_order_by!] + + """filter the rows returned""" + where: pokemon_v2_characteristic_bool_exp + ): [pokemon_v2_characteristic!]! + + """An aggregate relationship""" + pokemon_v2_characteristics_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_characteristic_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_characteristic_order_by!] + + """filter the rows returned""" + where: pokemon_v2_characteristic_bool_exp + ): pokemon_v2_characteristic_aggregate! + + """An object relationship""" + pokemon_v2_movedamageclass: pokemon_v2_movedamageclass + + """An array relationship""" + pokemon_v2_movemetastatchanges( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemetastatchange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemetastatchange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemetastatchange_bool_exp + ): [pokemon_v2_movemetastatchange!]! + + """An aggregate relationship""" + pokemon_v2_movemetastatchanges_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemetastatchange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemetastatchange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemetastatchange_bool_exp + ): pokemon_v2_movemetastatchange_aggregate! + + """An array relationship""" + pokemon_v2_natures( + """distinct select on columns""" + distinct_on: [pokemon_v2_nature_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_nature_order_by!] + + """filter the rows returned""" + where: pokemon_v2_nature_bool_exp + ): [pokemon_v2_nature!]! + + """An aggregate relationship""" + pokemon_v2_natures_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_nature_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_nature_order_by!] + + """filter the rows returned""" + where: pokemon_v2_nature_bool_exp + ): pokemon_v2_nature_aggregate! + + """An array relationship""" + pokemon_v2_pokemonstats( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonstat_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonstat_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonstat_bool_exp + ): [pokemon_v2_pokemonstat!]! + + """An aggregate relationship""" + pokemon_v2_pokemonstats_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonstat_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonstat_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonstat_bool_exp + ): pokemon_v2_pokemonstat_aggregate! + + """An array relationship""" + pokemon_v2_statnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_statname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_statname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_statname_bool_exp + ): [pokemon_v2_statname!]! + + """An aggregate relationship""" + pokemon_v2_statnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_statname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_statname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_statname_bool_exp + ): pokemon_v2_statname_aggregate! +} + +""" +aggregated selection of "pokemon_v2_stat" +""" +type pokemon_v2_stat_aggregate { + aggregate: pokemon_v2_stat_aggregate_fields + nodes: [pokemon_v2_stat!]! +} + +input pokemon_v2_stat_aggregate_bool_exp { + bool_and: pokemon_v2_stat_aggregate_bool_exp_bool_and + bool_or: pokemon_v2_stat_aggregate_bool_exp_bool_or + count: pokemon_v2_stat_aggregate_bool_exp_count +} + +input pokemon_v2_stat_aggregate_bool_exp_bool_and { + arguments: pokemon_v2_stat_select_column_pokemon_v2_stat_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: pokemon_v2_stat_bool_exp + predicate: Boolean_comparison_exp! +} + +input pokemon_v2_stat_aggregate_bool_exp_bool_or { + arguments: pokemon_v2_stat_select_column_pokemon_v2_stat_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: pokemon_v2_stat_bool_exp + predicate: Boolean_comparison_exp! +} + +input pokemon_v2_stat_aggregate_bool_exp_count { + arguments: [pokemon_v2_stat_select_column!] + distinct: Boolean + filter: pokemon_v2_stat_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_stat" +""" +type pokemon_v2_stat_aggregate_fields { + avg: pokemon_v2_stat_avg_fields + count(columns: [pokemon_v2_stat_select_column!], distinct: Boolean): Int! + max: pokemon_v2_stat_max_fields + min: pokemon_v2_stat_min_fields + stddev: pokemon_v2_stat_stddev_fields + stddev_pop: pokemon_v2_stat_stddev_pop_fields + stddev_samp: pokemon_v2_stat_stddev_samp_fields + sum: pokemon_v2_stat_sum_fields + var_pop: pokemon_v2_stat_var_pop_fields + var_samp: pokemon_v2_stat_var_samp_fields + variance: pokemon_v2_stat_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_stat" +""" +input pokemon_v2_stat_aggregate_order_by { + avg: pokemon_v2_stat_avg_order_by + count: order_by + max: pokemon_v2_stat_max_order_by + min: pokemon_v2_stat_min_order_by + stddev: pokemon_v2_stat_stddev_order_by + stddev_pop: pokemon_v2_stat_stddev_pop_order_by + stddev_samp: pokemon_v2_stat_stddev_samp_order_by + sum: pokemon_v2_stat_sum_order_by + var_pop: pokemon_v2_stat_var_pop_order_by + var_samp: pokemon_v2_stat_var_samp_order_by + variance: pokemon_v2_stat_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_stat_avg_fields { + game_index: Float + id: Float + move_damage_class_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_stat" +""" +input pokemon_v2_stat_avg_order_by { + game_index: order_by + id: order_by + move_damage_class_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_stat". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_stat_bool_exp { + _and: [pokemon_v2_stat_bool_exp!] + _not: pokemon_v2_stat_bool_exp + _or: [pokemon_v2_stat_bool_exp!] + game_index: Int_comparison_exp + id: Int_comparison_exp + is_battle_only: Boolean_comparison_exp + move_damage_class_id: Int_comparison_exp + name: String_comparison_exp + pokemonV2NaturesByIncreasedStatId: pokemon_v2_nature_bool_exp + pokemonV2NaturesByIncreasedStatId_aggregate: pokemon_v2_nature_aggregate_bool_exp + pokemon_v2_characteristics: pokemon_v2_characteristic_bool_exp + pokemon_v2_characteristics_aggregate: pokemon_v2_characteristic_aggregate_bool_exp + pokemon_v2_movedamageclass: pokemon_v2_movedamageclass_bool_exp + pokemon_v2_movemetastatchanges: pokemon_v2_movemetastatchange_bool_exp + pokemon_v2_movemetastatchanges_aggregate: pokemon_v2_movemetastatchange_aggregate_bool_exp + pokemon_v2_natures: pokemon_v2_nature_bool_exp + pokemon_v2_natures_aggregate: pokemon_v2_nature_aggregate_bool_exp + pokemon_v2_pokemonstats: pokemon_v2_pokemonstat_bool_exp + pokemon_v2_pokemonstats_aggregate: pokemon_v2_pokemonstat_aggregate_bool_exp + pokemon_v2_statnames: pokemon_v2_statname_bool_exp + pokemon_v2_statnames_aggregate: pokemon_v2_statname_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_stat_max_fields { + game_index: Int + id: Int + move_damage_class_id: Int + name: String +} + +""" +order by max() on columns of table "pokemon_v2_stat" +""" +input pokemon_v2_stat_max_order_by { + game_index: order_by + id: order_by + move_damage_class_id: order_by + name: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_stat_min_fields { + game_index: Int + id: Int + move_damage_class_id: Int + name: String +} + +""" +order by min() on columns of table "pokemon_v2_stat" +""" +input pokemon_v2_stat_min_order_by { + game_index: order_by + id: order_by + move_damage_class_id: order_by + name: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_stat".""" +input pokemon_v2_stat_order_by { + game_index: order_by + id: order_by + is_battle_only: order_by + move_damage_class_id: order_by + name: order_by + pokemonV2NaturesByIncreasedStatId_aggregate: pokemon_v2_nature_aggregate_order_by + pokemon_v2_characteristics_aggregate: pokemon_v2_characteristic_aggregate_order_by + pokemon_v2_movedamageclass: pokemon_v2_movedamageclass_order_by + pokemon_v2_movemetastatchanges_aggregate: pokemon_v2_movemetastatchange_aggregate_order_by + pokemon_v2_natures_aggregate: pokemon_v2_nature_aggregate_order_by + pokemon_v2_pokemonstats_aggregate: pokemon_v2_pokemonstat_aggregate_order_by + pokemon_v2_statnames_aggregate: pokemon_v2_statname_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_stat" +""" +enum pokemon_v2_stat_select_column { + """column name""" + game_index + + """column name""" + id + + """column name""" + is_battle_only + + """column name""" + move_damage_class_id + + """column name""" + name +} + +""" +select "pokemon_v2_stat_aggregate_bool_exp_bool_and_arguments_columns" columns of table "pokemon_v2_stat" +""" +enum pokemon_v2_stat_select_column_pokemon_v2_stat_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + is_battle_only +} + +""" +select "pokemon_v2_stat_aggregate_bool_exp_bool_or_arguments_columns" columns of table "pokemon_v2_stat" +""" +enum pokemon_v2_stat_select_column_pokemon_v2_stat_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + is_battle_only +} + +"""aggregate stddev on columns""" +type pokemon_v2_stat_stddev_fields { + game_index: Float + id: Float + move_damage_class_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_stat" +""" +input pokemon_v2_stat_stddev_order_by { + game_index: order_by + id: order_by + move_damage_class_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_stat_stddev_pop_fields { + game_index: Float + id: Float + move_damage_class_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_stat" +""" +input pokemon_v2_stat_stddev_pop_order_by { + game_index: order_by + id: order_by + move_damage_class_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_stat_stddev_samp_fields { + game_index: Float + id: Float + move_damage_class_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_stat" +""" +input pokemon_v2_stat_stddev_samp_order_by { + game_index: order_by + id: order_by + move_damage_class_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_stat" +""" +input pokemon_v2_stat_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_stat_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_stat_stream_cursor_value_input { + game_index: Int + id: Int + is_battle_only: Boolean + move_damage_class_id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_stat_sum_fields { + game_index: Int + id: Int + move_damage_class_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_stat" +""" +input pokemon_v2_stat_sum_order_by { + game_index: order_by + id: order_by + move_damage_class_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_stat_var_pop_fields { + game_index: Float + id: Float + move_damage_class_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_stat" +""" +input pokemon_v2_stat_var_pop_order_by { + game_index: order_by + id: order_by + move_damage_class_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_stat_var_samp_fields { + game_index: Float + id: Float + move_damage_class_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_stat" +""" +input pokemon_v2_stat_var_samp_order_by { + game_index: order_by + id: order_by + move_damage_class_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_stat_variance_fields { + game_index: Float + id: Float + move_damage_class_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_stat" +""" +input pokemon_v2_stat_variance_order_by { + game_index: order_by + id: order_by + move_damage_class_id: order_by +} + +""" +columns and relationships of "pokemon_v2_statname" +""" +type pokemon_v2_statname { + id: Int! + language_id: Int + name: String! + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_stat: pokemon_v2_stat + stat_id: Int +} + +""" +aggregated selection of "pokemon_v2_statname" +""" +type pokemon_v2_statname_aggregate { + aggregate: pokemon_v2_statname_aggregate_fields + nodes: [pokemon_v2_statname!]! +} + +input pokemon_v2_statname_aggregate_bool_exp { + count: pokemon_v2_statname_aggregate_bool_exp_count +} + +input pokemon_v2_statname_aggregate_bool_exp_count { + arguments: [pokemon_v2_statname_select_column!] + distinct: Boolean + filter: pokemon_v2_statname_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_statname" +""" +type pokemon_v2_statname_aggregate_fields { + avg: pokemon_v2_statname_avg_fields + count(columns: [pokemon_v2_statname_select_column!], distinct: Boolean): Int! + max: pokemon_v2_statname_max_fields + min: pokemon_v2_statname_min_fields + stddev: pokemon_v2_statname_stddev_fields + stddev_pop: pokemon_v2_statname_stddev_pop_fields + stddev_samp: pokemon_v2_statname_stddev_samp_fields + sum: pokemon_v2_statname_sum_fields + var_pop: pokemon_v2_statname_var_pop_fields + var_samp: pokemon_v2_statname_var_samp_fields + variance: pokemon_v2_statname_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_statname" +""" +input pokemon_v2_statname_aggregate_order_by { + avg: pokemon_v2_statname_avg_order_by + count: order_by + max: pokemon_v2_statname_max_order_by + min: pokemon_v2_statname_min_order_by + stddev: pokemon_v2_statname_stddev_order_by + stddev_pop: pokemon_v2_statname_stddev_pop_order_by + stddev_samp: pokemon_v2_statname_stddev_samp_order_by + sum: pokemon_v2_statname_sum_order_by + var_pop: pokemon_v2_statname_var_pop_order_by + var_samp: pokemon_v2_statname_var_samp_order_by + variance: pokemon_v2_statname_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_statname_avg_fields { + id: Float + language_id: Float + stat_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_statname" +""" +input pokemon_v2_statname_avg_order_by { + id: order_by + language_id: order_by + stat_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_statname". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_statname_bool_exp { + _and: [pokemon_v2_statname_bool_exp!] + _not: pokemon_v2_statname_bool_exp + _or: [pokemon_v2_statname_bool_exp!] + id: Int_comparison_exp + language_id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_stat: pokemon_v2_stat_bool_exp + stat_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_statname_max_fields { + id: Int + language_id: Int + name: String + stat_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_statname" +""" +input pokemon_v2_statname_max_order_by { + id: order_by + language_id: order_by + name: order_by + stat_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_statname_min_fields { + id: Int + language_id: Int + name: String + stat_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_statname" +""" +input pokemon_v2_statname_min_order_by { + id: order_by + language_id: order_by + name: order_by + stat_id: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_statname".""" +input pokemon_v2_statname_order_by { + id: order_by + language_id: order_by + name: order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_stat: pokemon_v2_stat_order_by + stat_id: order_by +} + +""" +select columns of table "pokemon_v2_statname" +""" +enum pokemon_v2_statname_select_column { + """column name""" + id + + """column name""" + language_id + + """column name""" + name + + """column name""" + stat_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_statname_stddev_fields { + id: Float + language_id: Float + stat_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_statname" +""" +input pokemon_v2_statname_stddev_order_by { + id: order_by + language_id: order_by + stat_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_statname_stddev_pop_fields { + id: Float + language_id: Float + stat_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_statname" +""" +input pokemon_v2_statname_stddev_pop_order_by { + id: order_by + language_id: order_by + stat_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_statname_stddev_samp_fields { + id: Float + language_id: Float + stat_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_statname" +""" +input pokemon_v2_statname_stddev_samp_order_by { + id: order_by + language_id: order_by + stat_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_statname" +""" +input pokemon_v2_statname_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_statname_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_statname_stream_cursor_value_input { + id: Int + language_id: Int + name: String + stat_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_statname_sum_fields { + id: Int + language_id: Int + stat_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_statname" +""" +input pokemon_v2_statname_sum_order_by { + id: order_by + language_id: order_by + stat_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_statname_var_pop_fields { + id: Float + language_id: Float + stat_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_statname" +""" +input pokemon_v2_statname_var_pop_order_by { + id: order_by + language_id: order_by + stat_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_statname_var_samp_fields { + id: Float + language_id: Float + stat_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_statname" +""" +input pokemon_v2_statname_var_samp_order_by { + id: order_by + language_id: order_by + stat_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_statname_variance_fields { + id: Float + language_id: Float + stat_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_statname" +""" +input pokemon_v2_statname_variance_order_by { + id: order_by + language_id: order_by + stat_id: order_by +} + +""" +columns and relationships of "pokemon_v2_supercontestcombo" +""" +type pokemon_v2_supercontestcombo { + first_move_id: Int + id: Int! + + """An object relationship""" + pokemonV2MoveBySecondMoveId: pokemon_v2_move + + """An object relationship""" + pokemon_v2_move: pokemon_v2_move + second_move_id: Int +} + +""" +aggregated selection of "pokemon_v2_supercontestcombo" +""" +type pokemon_v2_supercontestcombo_aggregate { + aggregate: pokemon_v2_supercontestcombo_aggregate_fields + nodes: [pokemon_v2_supercontestcombo!]! +} + +input pokemon_v2_supercontestcombo_aggregate_bool_exp { + count: pokemon_v2_supercontestcombo_aggregate_bool_exp_count +} + +input pokemon_v2_supercontestcombo_aggregate_bool_exp_count { + arguments: [pokemon_v2_supercontestcombo_select_column!] + distinct: Boolean + filter: pokemon_v2_supercontestcombo_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_supercontestcombo" +""" +type pokemon_v2_supercontestcombo_aggregate_fields { + avg: pokemon_v2_supercontestcombo_avg_fields + count(columns: [pokemon_v2_supercontestcombo_select_column!], distinct: Boolean): Int! + max: pokemon_v2_supercontestcombo_max_fields + min: pokemon_v2_supercontestcombo_min_fields + stddev: pokemon_v2_supercontestcombo_stddev_fields + stddev_pop: pokemon_v2_supercontestcombo_stddev_pop_fields + stddev_samp: pokemon_v2_supercontestcombo_stddev_samp_fields + sum: pokemon_v2_supercontestcombo_sum_fields + var_pop: pokemon_v2_supercontestcombo_var_pop_fields + var_samp: pokemon_v2_supercontestcombo_var_samp_fields + variance: pokemon_v2_supercontestcombo_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_supercontestcombo" +""" +input pokemon_v2_supercontestcombo_aggregate_order_by { + avg: pokemon_v2_supercontestcombo_avg_order_by + count: order_by + max: pokemon_v2_supercontestcombo_max_order_by + min: pokemon_v2_supercontestcombo_min_order_by + stddev: pokemon_v2_supercontestcombo_stddev_order_by + stddev_pop: pokemon_v2_supercontestcombo_stddev_pop_order_by + stddev_samp: pokemon_v2_supercontestcombo_stddev_samp_order_by + sum: pokemon_v2_supercontestcombo_sum_order_by + var_pop: pokemon_v2_supercontestcombo_var_pop_order_by + var_samp: pokemon_v2_supercontestcombo_var_samp_order_by + variance: pokemon_v2_supercontestcombo_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_supercontestcombo_avg_fields { + first_move_id: Float + id: Float + second_move_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_supercontestcombo" +""" +input pokemon_v2_supercontestcombo_avg_order_by { + first_move_id: order_by + id: order_by + second_move_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_supercontestcombo". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_supercontestcombo_bool_exp { + _and: [pokemon_v2_supercontestcombo_bool_exp!] + _not: pokemon_v2_supercontestcombo_bool_exp + _or: [pokemon_v2_supercontestcombo_bool_exp!] + first_move_id: Int_comparison_exp + id: Int_comparison_exp + pokemonV2MoveBySecondMoveId: pokemon_v2_move_bool_exp + pokemon_v2_move: pokemon_v2_move_bool_exp + second_move_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_supercontestcombo_max_fields { + first_move_id: Int + id: Int + second_move_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_supercontestcombo" +""" +input pokemon_v2_supercontestcombo_max_order_by { + first_move_id: order_by + id: order_by + second_move_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_supercontestcombo_min_fields { + first_move_id: Int + id: Int + second_move_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_supercontestcombo" +""" +input pokemon_v2_supercontestcombo_min_order_by { + first_move_id: order_by + id: order_by + second_move_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_supercontestcombo". +""" +input pokemon_v2_supercontestcombo_order_by { + first_move_id: order_by + id: order_by + pokemonV2MoveBySecondMoveId: pokemon_v2_move_order_by + pokemon_v2_move: pokemon_v2_move_order_by + second_move_id: order_by +} + +""" +select columns of table "pokemon_v2_supercontestcombo" +""" +enum pokemon_v2_supercontestcombo_select_column { + """column name""" + first_move_id + + """column name""" + id + + """column name""" + second_move_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_supercontestcombo_stddev_fields { + first_move_id: Float + id: Float + second_move_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_supercontestcombo" +""" +input pokemon_v2_supercontestcombo_stddev_order_by { + first_move_id: order_by + id: order_by + second_move_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_supercontestcombo_stddev_pop_fields { + first_move_id: Float + id: Float + second_move_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_supercontestcombo" +""" +input pokemon_v2_supercontestcombo_stddev_pop_order_by { + first_move_id: order_by + id: order_by + second_move_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_supercontestcombo_stddev_samp_fields { + first_move_id: Float + id: Float + second_move_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_supercontestcombo" +""" +input pokemon_v2_supercontestcombo_stddev_samp_order_by { + first_move_id: order_by + id: order_by + second_move_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_supercontestcombo" +""" +input pokemon_v2_supercontestcombo_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_supercontestcombo_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_supercontestcombo_stream_cursor_value_input { + first_move_id: Int + id: Int + second_move_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_supercontestcombo_sum_fields { + first_move_id: Int + id: Int + second_move_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_supercontestcombo" +""" +input pokemon_v2_supercontestcombo_sum_order_by { + first_move_id: order_by + id: order_by + second_move_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_supercontestcombo_var_pop_fields { + first_move_id: Float + id: Float + second_move_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_supercontestcombo" +""" +input pokemon_v2_supercontestcombo_var_pop_order_by { + first_move_id: order_by + id: order_by + second_move_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_supercontestcombo_var_samp_fields { + first_move_id: Float + id: Float + second_move_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_supercontestcombo" +""" +input pokemon_v2_supercontestcombo_var_samp_order_by { + first_move_id: order_by + id: order_by + second_move_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_supercontestcombo_variance_fields { + first_move_id: Float + id: Float + second_move_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_supercontestcombo" +""" +input pokemon_v2_supercontestcombo_variance_order_by { + first_move_id: order_by + id: order_by + second_move_id: order_by +} + +""" +columns and relationships of "pokemon_v2_supercontesteffect" +""" +type pokemon_v2_supercontesteffect { + appeal: Int! + id: Int! + + """An array relationship""" + pokemon_v2_moves( + """distinct select on columns""" + distinct_on: [pokemon_v2_move_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_move_order_by!] + + """filter the rows returned""" + where: pokemon_v2_move_bool_exp + ): [pokemon_v2_move!]! + + """An aggregate relationship""" + pokemon_v2_moves_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_move_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_move_order_by!] + + """filter the rows returned""" + where: pokemon_v2_move_bool_exp + ): pokemon_v2_move_aggregate! + + """An array relationship""" + pokemon_v2_supercontesteffectflavortexts( + """distinct select on columns""" + distinct_on: [pokemon_v2_supercontesteffectflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_supercontesteffectflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_supercontesteffectflavortext_bool_exp + ): [pokemon_v2_supercontesteffectflavortext!]! + + """An aggregate relationship""" + pokemon_v2_supercontesteffectflavortexts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_supercontesteffectflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_supercontesteffectflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_supercontesteffectflavortext_bool_exp + ): pokemon_v2_supercontesteffectflavortext_aggregate! +} + +""" +aggregated selection of "pokemon_v2_supercontesteffect" +""" +type pokemon_v2_supercontesteffect_aggregate { + aggregate: pokemon_v2_supercontesteffect_aggregate_fields + nodes: [pokemon_v2_supercontesteffect!]! +} + +""" +aggregate fields of "pokemon_v2_supercontesteffect" +""" +type pokemon_v2_supercontesteffect_aggregate_fields { + avg: pokemon_v2_supercontesteffect_avg_fields + count(columns: [pokemon_v2_supercontesteffect_select_column!], distinct: Boolean): Int! + max: pokemon_v2_supercontesteffect_max_fields + min: pokemon_v2_supercontesteffect_min_fields + stddev: pokemon_v2_supercontesteffect_stddev_fields + stddev_pop: pokemon_v2_supercontesteffect_stddev_pop_fields + stddev_samp: pokemon_v2_supercontesteffect_stddev_samp_fields + sum: pokemon_v2_supercontesteffect_sum_fields + var_pop: pokemon_v2_supercontesteffect_var_pop_fields + var_samp: pokemon_v2_supercontesteffect_var_samp_fields + variance: pokemon_v2_supercontesteffect_variance_fields +} + +"""aggregate avg on columns""" +type pokemon_v2_supercontesteffect_avg_fields { + appeal: Float + id: Float +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_supercontesteffect". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_supercontesteffect_bool_exp { + _and: [pokemon_v2_supercontesteffect_bool_exp!] + _not: pokemon_v2_supercontesteffect_bool_exp + _or: [pokemon_v2_supercontesteffect_bool_exp!] + appeal: Int_comparison_exp + id: Int_comparison_exp + pokemon_v2_moves: pokemon_v2_move_bool_exp + pokemon_v2_moves_aggregate: pokemon_v2_move_aggregate_bool_exp + pokemon_v2_supercontesteffectflavortexts: pokemon_v2_supercontesteffectflavortext_bool_exp + pokemon_v2_supercontesteffectflavortexts_aggregate: pokemon_v2_supercontesteffectflavortext_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_supercontesteffect_max_fields { + appeal: Int + id: Int +} + +"""aggregate min on columns""" +type pokemon_v2_supercontesteffect_min_fields { + appeal: Int + id: Int +} + +""" +Ordering options when selecting data from "pokemon_v2_supercontesteffect". +""" +input pokemon_v2_supercontesteffect_order_by { + appeal: order_by + id: order_by + pokemon_v2_moves_aggregate: pokemon_v2_move_aggregate_order_by + pokemon_v2_supercontesteffectflavortexts_aggregate: pokemon_v2_supercontesteffectflavortext_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_supercontesteffect" +""" +enum pokemon_v2_supercontesteffect_select_column { + """column name""" + appeal + + """column name""" + id +} + +"""aggregate stddev on columns""" +type pokemon_v2_supercontesteffect_stddev_fields { + appeal: Float + id: Float +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_supercontesteffect_stddev_pop_fields { + appeal: Float + id: Float +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_supercontesteffect_stddev_samp_fields { + appeal: Float + id: Float +} + +""" +Streaming cursor of the table "pokemon_v2_supercontesteffect" +""" +input pokemon_v2_supercontesteffect_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_supercontesteffect_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_supercontesteffect_stream_cursor_value_input { + appeal: Int + id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_supercontesteffect_sum_fields { + appeal: Int + id: Int +} + +"""aggregate var_pop on columns""" +type pokemon_v2_supercontesteffect_var_pop_fields { + appeal: Float + id: Float +} + +"""aggregate var_samp on columns""" +type pokemon_v2_supercontesteffect_var_samp_fields { + appeal: Float + id: Float +} + +"""aggregate variance on columns""" +type pokemon_v2_supercontesteffect_variance_fields { + appeal: Float + id: Float +} + +""" +columns and relationships of "pokemon_v2_supercontesteffectflavortext" +""" +type pokemon_v2_supercontesteffectflavortext { + flavor_text: String! + id: Int! + language_id: Int + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_supercontesteffect: pokemon_v2_supercontesteffect + super_contest_effect_id: Int +} + +""" +aggregated selection of "pokemon_v2_supercontesteffectflavortext" +""" +type pokemon_v2_supercontesteffectflavortext_aggregate { + aggregate: pokemon_v2_supercontesteffectflavortext_aggregate_fields + nodes: [pokemon_v2_supercontesteffectflavortext!]! +} + +input pokemon_v2_supercontesteffectflavortext_aggregate_bool_exp { + count: pokemon_v2_supercontesteffectflavortext_aggregate_bool_exp_count +} + +input pokemon_v2_supercontesteffectflavortext_aggregate_bool_exp_count { + arguments: [pokemon_v2_supercontesteffectflavortext_select_column!] + distinct: Boolean + filter: pokemon_v2_supercontesteffectflavortext_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_supercontesteffectflavortext" +""" +type pokemon_v2_supercontesteffectflavortext_aggregate_fields { + avg: pokemon_v2_supercontesteffectflavortext_avg_fields + count(columns: [pokemon_v2_supercontesteffectflavortext_select_column!], distinct: Boolean): Int! + max: pokemon_v2_supercontesteffectflavortext_max_fields + min: pokemon_v2_supercontesteffectflavortext_min_fields + stddev: pokemon_v2_supercontesteffectflavortext_stddev_fields + stddev_pop: pokemon_v2_supercontesteffectflavortext_stddev_pop_fields + stddev_samp: pokemon_v2_supercontesteffectflavortext_stddev_samp_fields + sum: pokemon_v2_supercontesteffectflavortext_sum_fields + var_pop: pokemon_v2_supercontesteffectflavortext_var_pop_fields + var_samp: pokemon_v2_supercontesteffectflavortext_var_samp_fields + variance: pokemon_v2_supercontesteffectflavortext_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_supercontesteffectflavortext" +""" +input pokemon_v2_supercontesteffectflavortext_aggregate_order_by { + avg: pokemon_v2_supercontesteffectflavortext_avg_order_by + count: order_by + max: pokemon_v2_supercontesteffectflavortext_max_order_by + min: pokemon_v2_supercontesteffectflavortext_min_order_by + stddev: pokemon_v2_supercontesteffectflavortext_stddev_order_by + stddev_pop: pokemon_v2_supercontesteffectflavortext_stddev_pop_order_by + stddev_samp: pokemon_v2_supercontesteffectflavortext_stddev_samp_order_by + sum: pokemon_v2_supercontesteffectflavortext_sum_order_by + var_pop: pokemon_v2_supercontesteffectflavortext_var_pop_order_by + var_samp: pokemon_v2_supercontesteffectflavortext_var_samp_order_by + variance: pokemon_v2_supercontesteffectflavortext_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_supercontesteffectflavortext_avg_fields { + id: Float + language_id: Float + super_contest_effect_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_supercontesteffectflavortext" +""" +input pokemon_v2_supercontesteffectflavortext_avg_order_by { + id: order_by + language_id: order_by + super_contest_effect_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_supercontesteffectflavortext". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_supercontesteffectflavortext_bool_exp { + _and: [pokemon_v2_supercontesteffectflavortext_bool_exp!] + _not: pokemon_v2_supercontesteffectflavortext_bool_exp + _or: [pokemon_v2_supercontesteffectflavortext_bool_exp!] + flavor_text: String_comparison_exp + id: Int_comparison_exp + language_id: Int_comparison_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_supercontesteffect: pokemon_v2_supercontesteffect_bool_exp + super_contest_effect_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_supercontesteffectflavortext_max_fields { + flavor_text: String + id: Int + language_id: Int + super_contest_effect_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_supercontesteffectflavortext" +""" +input pokemon_v2_supercontesteffectflavortext_max_order_by { + flavor_text: order_by + id: order_by + language_id: order_by + super_contest_effect_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_supercontesteffectflavortext_min_fields { + flavor_text: String + id: Int + language_id: Int + super_contest_effect_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_supercontesteffectflavortext" +""" +input pokemon_v2_supercontesteffectflavortext_min_order_by { + flavor_text: order_by + id: order_by + language_id: order_by + super_contest_effect_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_supercontesteffectflavortext". +""" +input pokemon_v2_supercontesteffectflavortext_order_by { + flavor_text: order_by + id: order_by + language_id: order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_supercontesteffect: pokemon_v2_supercontesteffect_order_by + super_contest_effect_id: order_by +} + +""" +select columns of table "pokemon_v2_supercontesteffectflavortext" +""" +enum pokemon_v2_supercontesteffectflavortext_select_column { + """column name""" + flavor_text + + """column name""" + id + + """column name""" + language_id + + """column name""" + super_contest_effect_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_supercontesteffectflavortext_stddev_fields { + id: Float + language_id: Float + super_contest_effect_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_supercontesteffectflavortext" +""" +input pokemon_v2_supercontesteffectflavortext_stddev_order_by { + id: order_by + language_id: order_by + super_contest_effect_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_supercontesteffectflavortext_stddev_pop_fields { + id: Float + language_id: Float + super_contest_effect_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_supercontesteffectflavortext" +""" +input pokemon_v2_supercontesteffectflavortext_stddev_pop_order_by { + id: order_by + language_id: order_by + super_contest_effect_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_supercontesteffectflavortext_stddev_samp_fields { + id: Float + language_id: Float + super_contest_effect_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_supercontesteffectflavortext" +""" +input pokemon_v2_supercontesteffectflavortext_stddev_samp_order_by { + id: order_by + language_id: order_by + super_contest_effect_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_supercontesteffectflavortext" +""" +input pokemon_v2_supercontesteffectflavortext_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_supercontesteffectflavortext_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_supercontesteffectflavortext_stream_cursor_value_input { + flavor_text: String + id: Int + language_id: Int + super_contest_effect_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_supercontesteffectflavortext_sum_fields { + id: Int + language_id: Int + super_contest_effect_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_supercontesteffectflavortext" +""" +input pokemon_v2_supercontesteffectflavortext_sum_order_by { + id: order_by + language_id: order_by + super_contest_effect_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_supercontesteffectflavortext_var_pop_fields { + id: Float + language_id: Float + super_contest_effect_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_supercontesteffectflavortext" +""" +input pokemon_v2_supercontesteffectflavortext_var_pop_order_by { + id: order_by + language_id: order_by + super_contest_effect_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_supercontesteffectflavortext_var_samp_fields { + id: Float + language_id: Float + super_contest_effect_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_supercontesteffectflavortext" +""" +input pokemon_v2_supercontesteffectflavortext_var_samp_order_by { + id: order_by + language_id: order_by + super_contest_effect_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_supercontesteffectflavortext_variance_fields { + id: Float + language_id: Float + super_contest_effect_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_supercontesteffectflavortext" +""" +input pokemon_v2_supercontesteffectflavortext_variance_order_by { + id: order_by + language_id: order_by + super_contest_effect_id: order_by +} + +""" +columns and relationships of "pokemon_v2_type" +""" +type pokemon_v2_type { + generation_id: Int + id: Int! + move_damage_class_id: Int + name: String! + + """An array relationship""" + pokemonV2PokemonevolutionsByPartyTypeId( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonevolution_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonevolution_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonevolution_bool_exp + ): [pokemon_v2_pokemonevolution!]! + + """An aggregate relationship""" + pokemonV2PokemonevolutionsByPartyTypeId_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonevolution_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonevolution_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonevolution_bool_exp + ): pokemon_v2_pokemonevolution_aggregate! + + """An array relationship""" + pokemonV2TypeefficaciesByTargetTypeId( + """distinct select on columns""" + distinct_on: [pokemon_v2_typeefficacy_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_typeefficacy_order_by!] + + """filter the rows returned""" + where: pokemon_v2_typeefficacy_bool_exp + ): [pokemon_v2_typeefficacy!]! + + """An aggregate relationship""" + pokemonV2TypeefficaciesByTargetTypeId_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_typeefficacy_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_typeefficacy_order_by!] + + """filter the rows returned""" + where: pokemon_v2_typeefficacy_bool_exp + ): pokemon_v2_typeefficacy_aggregate! + + """An array relationship""" + pokemonV2TypeefficacypastsByTargetTypeId( + """distinct select on columns""" + distinct_on: [pokemon_v2_typeefficacypast_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_typeefficacypast_order_by!] + + """filter the rows returned""" + where: pokemon_v2_typeefficacypast_bool_exp + ): [pokemon_v2_typeefficacypast!]! + + """An aggregate relationship""" + pokemonV2TypeefficacypastsByTargetTypeId_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_typeefficacypast_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_typeefficacypast_order_by!] + + """filter the rows returned""" + where: pokemon_v2_typeefficacypast_bool_exp + ): pokemon_v2_typeefficacypast_aggregate! + + """An array relationship""" + pokemon_v2_berries( + """distinct select on columns""" + distinct_on: [pokemon_v2_berry_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berry_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berry_bool_exp + ): [pokemon_v2_berry!]! + + """An aggregate relationship""" + pokemon_v2_berries_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_berry_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berry_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berry_bool_exp + ): pokemon_v2_berry_aggregate! + + """An object relationship""" + pokemon_v2_generation: pokemon_v2_generation + + """An array relationship""" + pokemon_v2_movechanges( + """distinct select on columns""" + distinct_on: [pokemon_v2_movechange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movechange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movechange_bool_exp + ): [pokemon_v2_movechange!]! + + """An aggregate relationship""" + pokemon_v2_movechanges_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movechange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movechange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movechange_bool_exp + ): pokemon_v2_movechange_aggregate! + + """An object relationship""" + pokemon_v2_movedamageclass: pokemon_v2_movedamageclass + + """An array relationship""" + pokemon_v2_moves( + """distinct select on columns""" + distinct_on: [pokemon_v2_move_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_move_order_by!] + + """filter the rows returned""" + where: pokemon_v2_move_bool_exp + ): [pokemon_v2_move!]! + + """An aggregate relationship""" + pokemon_v2_moves_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_move_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_move_order_by!] + + """filter the rows returned""" + where: pokemon_v2_move_bool_exp + ): pokemon_v2_move_aggregate! + + """An array relationship""" + pokemon_v2_pokemonevolutions( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonevolution_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonevolution_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonevolution_bool_exp + ): [pokemon_v2_pokemonevolution!]! + + """An aggregate relationship""" + pokemon_v2_pokemonevolutions_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonevolution_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonevolution_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonevolution_bool_exp + ): pokemon_v2_pokemonevolution_aggregate! + + """An array relationship""" + pokemon_v2_pokemonformtypes( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonformtype_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonformtype_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonformtype_bool_exp + ): [pokemon_v2_pokemonformtype!]! + + """An aggregate relationship""" + pokemon_v2_pokemonformtypes_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonformtype_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonformtype_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonformtype_bool_exp + ): pokemon_v2_pokemonformtype_aggregate! + + """An array relationship""" + pokemon_v2_pokemontypepasts( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemontypepast_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemontypepast_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemontypepast_bool_exp + ): [pokemon_v2_pokemontypepast!]! + + """An aggregate relationship""" + pokemon_v2_pokemontypepasts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemontypepast_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemontypepast_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemontypepast_bool_exp + ): pokemon_v2_pokemontypepast_aggregate! + + """An array relationship""" + pokemon_v2_pokemontypes( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemontype_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemontype_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemontype_bool_exp + ): [pokemon_v2_pokemontype!]! + + """An aggregate relationship""" + pokemon_v2_pokemontypes_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemontype_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemontype_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemontype_bool_exp + ): pokemon_v2_pokemontype_aggregate! + + """An array relationship""" + pokemon_v2_typeefficacies( + """distinct select on columns""" + distinct_on: [pokemon_v2_typeefficacy_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_typeefficacy_order_by!] + + """filter the rows returned""" + where: pokemon_v2_typeefficacy_bool_exp + ): [pokemon_v2_typeefficacy!]! + + """An aggregate relationship""" + pokemon_v2_typeefficacies_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_typeefficacy_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_typeefficacy_order_by!] + + """filter the rows returned""" + where: pokemon_v2_typeefficacy_bool_exp + ): pokemon_v2_typeefficacy_aggregate! + + """An array relationship""" + pokemon_v2_typeefficacypasts( + """distinct select on columns""" + distinct_on: [pokemon_v2_typeefficacypast_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_typeefficacypast_order_by!] + + """filter the rows returned""" + where: pokemon_v2_typeefficacypast_bool_exp + ): [pokemon_v2_typeefficacypast!]! + + """An aggregate relationship""" + pokemon_v2_typeefficacypasts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_typeefficacypast_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_typeefficacypast_order_by!] + + """filter the rows returned""" + where: pokemon_v2_typeefficacypast_bool_exp + ): pokemon_v2_typeefficacypast_aggregate! + + """An array relationship""" + pokemon_v2_typegameindices( + """distinct select on columns""" + distinct_on: [pokemon_v2_typegameindex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_typegameindex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_typegameindex_bool_exp + ): [pokemon_v2_typegameindex!]! + + """An aggregate relationship""" + pokemon_v2_typegameindices_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_typegameindex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_typegameindex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_typegameindex_bool_exp + ): pokemon_v2_typegameindex_aggregate! + + """An array relationship""" + pokemon_v2_typenames( + """distinct select on columns""" + distinct_on: [pokemon_v2_typename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_typename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_typename_bool_exp + ): [pokemon_v2_typename!]! + + """An aggregate relationship""" + pokemon_v2_typenames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_typename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_typename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_typename_bool_exp + ): pokemon_v2_typename_aggregate! +} + +""" +aggregated selection of "pokemon_v2_type" +""" +type pokemon_v2_type_aggregate { + aggregate: pokemon_v2_type_aggregate_fields + nodes: [pokemon_v2_type!]! +} + +input pokemon_v2_type_aggregate_bool_exp { + count: pokemon_v2_type_aggregate_bool_exp_count +} + +input pokemon_v2_type_aggregate_bool_exp_count { + arguments: [pokemon_v2_type_select_column!] + distinct: Boolean + filter: pokemon_v2_type_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_type" +""" +type pokemon_v2_type_aggregate_fields { + avg: pokemon_v2_type_avg_fields + count(columns: [pokemon_v2_type_select_column!], distinct: Boolean): Int! + max: pokemon_v2_type_max_fields + min: pokemon_v2_type_min_fields + stddev: pokemon_v2_type_stddev_fields + stddev_pop: pokemon_v2_type_stddev_pop_fields + stddev_samp: pokemon_v2_type_stddev_samp_fields + sum: pokemon_v2_type_sum_fields + var_pop: pokemon_v2_type_var_pop_fields + var_samp: pokemon_v2_type_var_samp_fields + variance: pokemon_v2_type_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_type" +""" +input pokemon_v2_type_aggregate_order_by { + avg: pokemon_v2_type_avg_order_by + count: order_by + max: pokemon_v2_type_max_order_by + min: pokemon_v2_type_min_order_by + stddev: pokemon_v2_type_stddev_order_by + stddev_pop: pokemon_v2_type_stddev_pop_order_by + stddev_samp: pokemon_v2_type_stddev_samp_order_by + sum: pokemon_v2_type_sum_order_by + var_pop: pokemon_v2_type_var_pop_order_by + var_samp: pokemon_v2_type_var_samp_order_by + variance: pokemon_v2_type_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_type_avg_fields { + generation_id: Float + id: Float + move_damage_class_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_type" +""" +input pokemon_v2_type_avg_order_by { + generation_id: order_by + id: order_by + move_damage_class_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_type". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_type_bool_exp { + _and: [pokemon_v2_type_bool_exp!] + _not: pokemon_v2_type_bool_exp + _or: [pokemon_v2_type_bool_exp!] + generation_id: Int_comparison_exp + id: Int_comparison_exp + move_damage_class_id: Int_comparison_exp + name: String_comparison_exp + pokemonV2PokemonevolutionsByPartyTypeId: pokemon_v2_pokemonevolution_bool_exp + pokemonV2PokemonevolutionsByPartyTypeId_aggregate: pokemon_v2_pokemonevolution_aggregate_bool_exp + pokemonV2TypeefficaciesByTargetTypeId: pokemon_v2_typeefficacy_bool_exp + pokemonV2TypeefficaciesByTargetTypeId_aggregate: pokemon_v2_typeefficacy_aggregate_bool_exp + pokemonV2TypeefficacypastsByTargetTypeId: pokemon_v2_typeefficacypast_bool_exp + pokemonV2TypeefficacypastsByTargetTypeId_aggregate: pokemon_v2_typeefficacypast_aggregate_bool_exp + pokemon_v2_berries: pokemon_v2_berry_bool_exp + pokemon_v2_berries_aggregate: pokemon_v2_berry_aggregate_bool_exp + pokemon_v2_generation: pokemon_v2_generation_bool_exp + pokemon_v2_movechanges: pokemon_v2_movechange_bool_exp + pokemon_v2_movechanges_aggregate: pokemon_v2_movechange_aggregate_bool_exp + pokemon_v2_movedamageclass: pokemon_v2_movedamageclass_bool_exp + pokemon_v2_moves: pokemon_v2_move_bool_exp + pokemon_v2_moves_aggregate: pokemon_v2_move_aggregate_bool_exp + pokemon_v2_pokemonevolutions: pokemon_v2_pokemonevolution_bool_exp + pokemon_v2_pokemonevolutions_aggregate: pokemon_v2_pokemonevolution_aggregate_bool_exp + pokemon_v2_pokemonformtypes: pokemon_v2_pokemonformtype_bool_exp + pokemon_v2_pokemonformtypes_aggregate: pokemon_v2_pokemonformtype_aggregate_bool_exp + pokemon_v2_pokemontypepasts: pokemon_v2_pokemontypepast_bool_exp + pokemon_v2_pokemontypepasts_aggregate: pokemon_v2_pokemontypepast_aggregate_bool_exp + pokemon_v2_pokemontypes: pokemon_v2_pokemontype_bool_exp + pokemon_v2_pokemontypes_aggregate: pokemon_v2_pokemontype_aggregate_bool_exp + pokemon_v2_typeefficacies: pokemon_v2_typeefficacy_bool_exp + pokemon_v2_typeefficacies_aggregate: pokemon_v2_typeefficacy_aggregate_bool_exp + pokemon_v2_typeefficacypasts: pokemon_v2_typeefficacypast_bool_exp + pokemon_v2_typeefficacypasts_aggregate: pokemon_v2_typeefficacypast_aggregate_bool_exp + pokemon_v2_typegameindices: pokemon_v2_typegameindex_bool_exp + pokemon_v2_typegameindices_aggregate: pokemon_v2_typegameindex_aggregate_bool_exp + pokemon_v2_typenames: pokemon_v2_typename_bool_exp + pokemon_v2_typenames_aggregate: pokemon_v2_typename_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_type_max_fields { + generation_id: Int + id: Int + move_damage_class_id: Int + name: String +} + +""" +order by max() on columns of table "pokemon_v2_type" +""" +input pokemon_v2_type_max_order_by { + generation_id: order_by + id: order_by + move_damage_class_id: order_by + name: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_type_min_fields { + generation_id: Int + id: Int + move_damage_class_id: Int + name: String +} + +""" +order by min() on columns of table "pokemon_v2_type" +""" +input pokemon_v2_type_min_order_by { + generation_id: order_by + id: order_by + move_damage_class_id: order_by + name: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_type".""" +input pokemon_v2_type_order_by { + generation_id: order_by + id: order_by + move_damage_class_id: order_by + name: order_by + pokemonV2PokemonevolutionsByPartyTypeId_aggregate: pokemon_v2_pokemonevolution_aggregate_order_by + pokemonV2TypeefficaciesByTargetTypeId_aggregate: pokemon_v2_typeefficacy_aggregate_order_by + pokemonV2TypeefficacypastsByTargetTypeId_aggregate: pokemon_v2_typeefficacypast_aggregate_order_by + pokemon_v2_berries_aggregate: pokemon_v2_berry_aggregate_order_by + pokemon_v2_generation: pokemon_v2_generation_order_by + pokemon_v2_movechanges_aggregate: pokemon_v2_movechange_aggregate_order_by + pokemon_v2_movedamageclass: pokemon_v2_movedamageclass_order_by + pokemon_v2_moves_aggregate: pokemon_v2_move_aggregate_order_by + pokemon_v2_pokemonevolutions_aggregate: pokemon_v2_pokemonevolution_aggregate_order_by + pokemon_v2_pokemonformtypes_aggregate: pokemon_v2_pokemonformtype_aggregate_order_by + pokemon_v2_pokemontypepasts_aggregate: pokemon_v2_pokemontypepast_aggregate_order_by + pokemon_v2_pokemontypes_aggregate: pokemon_v2_pokemontype_aggregate_order_by + pokemon_v2_typeefficacies_aggregate: pokemon_v2_typeefficacy_aggregate_order_by + pokemon_v2_typeefficacypasts_aggregate: pokemon_v2_typeefficacypast_aggregate_order_by + pokemon_v2_typegameindices_aggregate: pokemon_v2_typegameindex_aggregate_order_by + pokemon_v2_typenames_aggregate: pokemon_v2_typename_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_type" +""" +enum pokemon_v2_type_select_column { + """column name""" + generation_id + + """column name""" + id + + """column name""" + move_damage_class_id + + """column name""" + name +} + +"""aggregate stddev on columns""" +type pokemon_v2_type_stddev_fields { + generation_id: Float + id: Float + move_damage_class_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_type" +""" +input pokemon_v2_type_stddev_order_by { + generation_id: order_by + id: order_by + move_damage_class_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_type_stddev_pop_fields { + generation_id: Float + id: Float + move_damage_class_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_type" +""" +input pokemon_v2_type_stddev_pop_order_by { + generation_id: order_by + id: order_by + move_damage_class_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_type_stddev_samp_fields { + generation_id: Float + id: Float + move_damage_class_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_type" +""" +input pokemon_v2_type_stddev_samp_order_by { + generation_id: order_by + id: order_by + move_damage_class_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_type" +""" +input pokemon_v2_type_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_type_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_type_stream_cursor_value_input { + generation_id: Int + id: Int + move_damage_class_id: Int + name: String +} + +"""aggregate sum on columns""" +type pokemon_v2_type_sum_fields { + generation_id: Int + id: Int + move_damage_class_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_type" +""" +input pokemon_v2_type_sum_order_by { + generation_id: order_by + id: order_by + move_damage_class_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_type_var_pop_fields { + generation_id: Float + id: Float + move_damage_class_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_type" +""" +input pokemon_v2_type_var_pop_order_by { + generation_id: order_by + id: order_by + move_damage_class_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_type_var_samp_fields { + generation_id: Float + id: Float + move_damage_class_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_type" +""" +input pokemon_v2_type_var_samp_order_by { + generation_id: order_by + id: order_by + move_damage_class_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_type_variance_fields { + generation_id: Float + id: Float + move_damage_class_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_type" +""" +input pokemon_v2_type_variance_order_by { + generation_id: order_by + id: order_by + move_damage_class_id: order_by +} + +""" +columns and relationships of "pokemon_v2_typeefficacy" +""" +type pokemon_v2_typeefficacy { + damage_factor: Int! + damage_type_id: Int + id: Int! + + """An object relationship""" + pokemonV2TypeByTargetTypeId: pokemon_v2_type + + """An object relationship""" + pokemon_v2_type: pokemon_v2_type + target_type_id: Int +} + +""" +aggregated selection of "pokemon_v2_typeefficacy" +""" +type pokemon_v2_typeefficacy_aggregate { + aggregate: pokemon_v2_typeefficacy_aggregate_fields + nodes: [pokemon_v2_typeefficacy!]! +} + +input pokemon_v2_typeefficacy_aggregate_bool_exp { + count: pokemon_v2_typeefficacy_aggregate_bool_exp_count +} + +input pokemon_v2_typeefficacy_aggregate_bool_exp_count { + arguments: [pokemon_v2_typeefficacy_select_column!] + distinct: Boolean + filter: pokemon_v2_typeefficacy_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_typeefficacy" +""" +type pokemon_v2_typeefficacy_aggregate_fields { + avg: pokemon_v2_typeefficacy_avg_fields + count(columns: [pokemon_v2_typeefficacy_select_column!], distinct: Boolean): Int! + max: pokemon_v2_typeefficacy_max_fields + min: pokemon_v2_typeefficacy_min_fields + stddev: pokemon_v2_typeefficacy_stddev_fields + stddev_pop: pokemon_v2_typeefficacy_stddev_pop_fields + stddev_samp: pokemon_v2_typeefficacy_stddev_samp_fields + sum: pokemon_v2_typeefficacy_sum_fields + var_pop: pokemon_v2_typeefficacy_var_pop_fields + var_samp: pokemon_v2_typeefficacy_var_samp_fields + variance: pokemon_v2_typeefficacy_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_typeefficacy" +""" +input pokemon_v2_typeefficacy_aggregate_order_by { + avg: pokemon_v2_typeefficacy_avg_order_by + count: order_by + max: pokemon_v2_typeefficacy_max_order_by + min: pokemon_v2_typeefficacy_min_order_by + stddev: pokemon_v2_typeefficacy_stddev_order_by + stddev_pop: pokemon_v2_typeefficacy_stddev_pop_order_by + stddev_samp: pokemon_v2_typeefficacy_stddev_samp_order_by + sum: pokemon_v2_typeefficacy_sum_order_by + var_pop: pokemon_v2_typeefficacy_var_pop_order_by + var_samp: pokemon_v2_typeefficacy_var_samp_order_by + variance: pokemon_v2_typeefficacy_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_typeefficacy_avg_fields { + damage_factor: Float + damage_type_id: Float + id: Float + target_type_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_typeefficacy" +""" +input pokemon_v2_typeefficacy_avg_order_by { + damage_factor: order_by + damage_type_id: order_by + id: order_by + target_type_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_typeefficacy". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_typeefficacy_bool_exp { + _and: [pokemon_v2_typeefficacy_bool_exp!] + _not: pokemon_v2_typeefficacy_bool_exp + _or: [pokemon_v2_typeefficacy_bool_exp!] + damage_factor: Int_comparison_exp + damage_type_id: Int_comparison_exp + id: Int_comparison_exp + pokemonV2TypeByTargetTypeId: pokemon_v2_type_bool_exp + pokemon_v2_type: pokemon_v2_type_bool_exp + target_type_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_typeefficacy_max_fields { + damage_factor: Int + damage_type_id: Int + id: Int + target_type_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_typeefficacy" +""" +input pokemon_v2_typeefficacy_max_order_by { + damage_factor: order_by + damage_type_id: order_by + id: order_by + target_type_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_typeefficacy_min_fields { + damage_factor: Int + damage_type_id: Int + id: Int + target_type_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_typeefficacy" +""" +input pokemon_v2_typeefficacy_min_order_by { + damage_factor: order_by + damage_type_id: order_by + id: order_by + target_type_id: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_typeefficacy".""" +input pokemon_v2_typeefficacy_order_by { + damage_factor: order_by + damage_type_id: order_by + id: order_by + pokemonV2TypeByTargetTypeId: pokemon_v2_type_order_by + pokemon_v2_type: pokemon_v2_type_order_by + target_type_id: order_by +} + +""" +select columns of table "pokemon_v2_typeefficacy" +""" +enum pokemon_v2_typeefficacy_select_column { + """column name""" + damage_factor + + """column name""" + damage_type_id + + """column name""" + id + + """column name""" + target_type_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_typeefficacy_stddev_fields { + damage_factor: Float + damage_type_id: Float + id: Float + target_type_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_typeefficacy" +""" +input pokemon_v2_typeefficacy_stddev_order_by { + damage_factor: order_by + damage_type_id: order_by + id: order_by + target_type_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_typeefficacy_stddev_pop_fields { + damage_factor: Float + damage_type_id: Float + id: Float + target_type_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_typeefficacy" +""" +input pokemon_v2_typeefficacy_stddev_pop_order_by { + damage_factor: order_by + damage_type_id: order_by + id: order_by + target_type_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_typeefficacy_stddev_samp_fields { + damage_factor: Float + damage_type_id: Float + id: Float + target_type_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_typeefficacy" +""" +input pokemon_v2_typeefficacy_stddev_samp_order_by { + damage_factor: order_by + damage_type_id: order_by + id: order_by + target_type_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_typeefficacy" +""" +input pokemon_v2_typeefficacy_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_typeefficacy_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_typeefficacy_stream_cursor_value_input { + damage_factor: Int + damage_type_id: Int + id: Int + target_type_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_typeefficacy_sum_fields { + damage_factor: Int + damage_type_id: Int + id: Int + target_type_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_typeefficacy" +""" +input pokemon_v2_typeefficacy_sum_order_by { + damage_factor: order_by + damage_type_id: order_by + id: order_by + target_type_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_typeefficacy_var_pop_fields { + damage_factor: Float + damage_type_id: Float + id: Float + target_type_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_typeefficacy" +""" +input pokemon_v2_typeefficacy_var_pop_order_by { + damage_factor: order_by + damage_type_id: order_by + id: order_by + target_type_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_typeefficacy_var_samp_fields { + damage_factor: Float + damage_type_id: Float + id: Float + target_type_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_typeefficacy" +""" +input pokemon_v2_typeefficacy_var_samp_order_by { + damage_factor: order_by + damage_type_id: order_by + id: order_by + target_type_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_typeefficacy_variance_fields { + damage_factor: Float + damage_type_id: Float + id: Float + target_type_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_typeefficacy" +""" +input pokemon_v2_typeefficacy_variance_order_by { + damage_factor: order_by + damage_type_id: order_by + id: order_by + target_type_id: order_by +} + +""" +columns and relationships of "pokemon_v2_typeefficacypast" +""" +type pokemon_v2_typeefficacypast { + damage_factor: Int! + damage_type_id: Int + generation_id: Int + id: Int! + + """An object relationship""" + pokemonV2TypeByTargetTypeId: pokemon_v2_type + + """An object relationship""" + pokemon_v2_generation: pokemon_v2_generation + + """An object relationship""" + pokemon_v2_type: pokemon_v2_type + target_type_id: Int +} + +""" +aggregated selection of "pokemon_v2_typeefficacypast" +""" +type pokemon_v2_typeefficacypast_aggregate { + aggregate: pokemon_v2_typeefficacypast_aggregate_fields + nodes: [pokemon_v2_typeefficacypast!]! +} + +input pokemon_v2_typeefficacypast_aggregate_bool_exp { + count: pokemon_v2_typeefficacypast_aggregate_bool_exp_count +} + +input pokemon_v2_typeefficacypast_aggregate_bool_exp_count { + arguments: [pokemon_v2_typeefficacypast_select_column!] + distinct: Boolean + filter: pokemon_v2_typeefficacypast_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_typeefficacypast" +""" +type pokemon_v2_typeefficacypast_aggregate_fields { + avg: pokemon_v2_typeefficacypast_avg_fields + count(columns: [pokemon_v2_typeefficacypast_select_column!], distinct: Boolean): Int! + max: pokemon_v2_typeefficacypast_max_fields + min: pokemon_v2_typeefficacypast_min_fields + stddev: pokemon_v2_typeefficacypast_stddev_fields + stddev_pop: pokemon_v2_typeefficacypast_stddev_pop_fields + stddev_samp: pokemon_v2_typeefficacypast_stddev_samp_fields + sum: pokemon_v2_typeefficacypast_sum_fields + var_pop: pokemon_v2_typeefficacypast_var_pop_fields + var_samp: pokemon_v2_typeefficacypast_var_samp_fields + variance: pokemon_v2_typeefficacypast_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_typeefficacypast" +""" +input pokemon_v2_typeefficacypast_aggregate_order_by { + avg: pokemon_v2_typeefficacypast_avg_order_by + count: order_by + max: pokemon_v2_typeefficacypast_max_order_by + min: pokemon_v2_typeefficacypast_min_order_by + stddev: pokemon_v2_typeefficacypast_stddev_order_by + stddev_pop: pokemon_v2_typeefficacypast_stddev_pop_order_by + stddev_samp: pokemon_v2_typeefficacypast_stddev_samp_order_by + sum: pokemon_v2_typeefficacypast_sum_order_by + var_pop: pokemon_v2_typeefficacypast_var_pop_order_by + var_samp: pokemon_v2_typeefficacypast_var_samp_order_by + variance: pokemon_v2_typeefficacypast_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_typeefficacypast_avg_fields { + damage_factor: Float + damage_type_id: Float + generation_id: Float + id: Float + target_type_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_typeefficacypast" +""" +input pokemon_v2_typeefficacypast_avg_order_by { + damage_factor: order_by + damage_type_id: order_by + generation_id: order_by + id: order_by + target_type_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_typeefficacypast". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_typeefficacypast_bool_exp { + _and: [pokemon_v2_typeefficacypast_bool_exp!] + _not: pokemon_v2_typeefficacypast_bool_exp + _or: [pokemon_v2_typeefficacypast_bool_exp!] + damage_factor: Int_comparison_exp + damage_type_id: Int_comparison_exp + generation_id: Int_comparison_exp + id: Int_comparison_exp + pokemonV2TypeByTargetTypeId: pokemon_v2_type_bool_exp + pokemon_v2_generation: pokemon_v2_generation_bool_exp + pokemon_v2_type: pokemon_v2_type_bool_exp + target_type_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_typeefficacypast_max_fields { + damage_factor: Int + damage_type_id: Int + generation_id: Int + id: Int + target_type_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_typeefficacypast" +""" +input pokemon_v2_typeefficacypast_max_order_by { + damage_factor: order_by + damage_type_id: order_by + generation_id: order_by + id: order_by + target_type_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_typeefficacypast_min_fields { + damage_factor: Int + damage_type_id: Int + generation_id: Int + id: Int + target_type_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_typeefficacypast" +""" +input pokemon_v2_typeefficacypast_min_order_by { + damage_factor: order_by + damage_type_id: order_by + generation_id: order_by + id: order_by + target_type_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_typeefficacypast". +""" +input pokemon_v2_typeefficacypast_order_by { + damage_factor: order_by + damage_type_id: order_by + generation_id: order_by + id: order_by + pokemonV2TypeByTargetTypeId: pokemon_v2_type_order_by + pokemon_v2_generation: pokemon_v2_generation_order_by + pokemon_v2_type: pokemon_v2_type_order_by + target_type_id: order_by +} + +""" +select columns of table "pokemon_v2_typeefficacypast" +""" +enum pokemon_v2_typeefficacypast_select_column { + """column name""" + damage_factor + + """column name""" + damage_type_id + + """column name""" + generation_id + + """column name""" + id + + """column name""" + target_type_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_typeefficacypast_stddev_fields { + damage_factor: Float + damage_type_id: Float + generation_id: Float + id: Float + target_type_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_typeefficacypast" +""" +input pokemon_v2_typeefficacypast_stddev_order_by { + damage_factor: order_by + damage_type_id: order_by + generation_id: order_by + id: order_by + target_type_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_typeefficacypast_stddev_pop_fields { + damage_factor: Float + damage_type_id: Float + generation_id: Float + id: Float + target_type_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_typeefficacypast" +""" +input pokemon_v2_typeefficacypast_stddev_pop_order_by { + damage_factor: order_by + damage_type_id: order_by + generation_id: order_by + id: order_by + target_type_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_typeefficacypast_stddev_samp_fields { + damage_factor: Float + damage_type_id: Float + generation_id: Float + id: Float + target_type_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_typeefficacypast" +""" +input pokemon_v2_typeefficacypast_stddev_samp_order_by { + damage_factor: order_by + damage_type_id: order_by + generation_id: order_by + id: order_by + target_type_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_typeefficacypast" +""" +input pokemon_v2_typeefficacypast_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_typeefficacypast_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_typeefficacypast_stream_cursor_value_input { + damage_factor: Int + damage_type_id: Int + generation_id: Int + id: Int + target_type_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_typeefficacypast_sum_fields { + damage_factor: Int + damage_type_id: Int + generation_id: Int + id: Int + target_type_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_typeefficacypast" +""" +input pokemon_v2_typeefficacypast_sum_order_by { + damage_factor: order_by + damage_type_id: order_by + generation_id: order_by + id: order_by + target_type_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_typeefficacypast_var_pop_fields { + damage_factor: Float + damage_type_id: Float + generation_id: Float + id: Float + target_type_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_typeefficacypast" +""" +input pokemon_v2_typeefficacypast_var_pop_order_by { + damage_factor: order_by + damage_type_id: order_by + generation_id: order_by + id: order_by + target_type_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_typeefficacypast_var_samp_fields { + damage_factor: Float + damage_type_id: Float + generation_id: Float + id: Float + target_type_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_typeefficacypast" +""" +input pokemon_v2_typeefficacypast_var_samp_order_by { + damage_factor: order_by + damage_type_id: order_by + generation_id: order_by + id: order_by + target_type_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_typeefficacypast_variance_fields { + damage_factor: Float + damage_type_id: Float + generation_id: Float + id: Float + target_type_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_typeefficacypast" +""" +input pokemon_v2_typeefficacypast_variance_order_by { + damage_factor: order_by + damage_type_id: order_by + generation_id: order_by + id: order_by + target_type_id: order_by +} + +""" +columns and relationships of "pokemon_v2_typegameindex" +""" +type pokemon_v2_typegameindex { + game_index: Int! + generation_id: Int + id: Int! + + """An object relationship""" + pokemon_v2_generation: pokemon_v2_generation + + """An object relationship""" + pokemon_v2_type: pokemon_v2_type + type_id: Int +} + +""" +aggregated selection of "pokemon_v2_typegameindex" +""" +type pokemon_v2_typegameindex_aggregate { + aggregate: pokemon_v2_typegameindex_aggregate_fields + nodes: [pokemon_v2_typegameindex!]! +} + +input pokemon_v2_typegameindex_aggregate_bool_exp { + count: pokemon_v2_typegameindex_aggregate_bool_exp_count +} + +input pokemon_v2_typegameindex_aggregate_bool_exp_count { + arguments: [pokemon_v2_typegameindex_select_column!] + distinct: Boolean + filter: pokemon_v2_typegameindex_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_typegameindex" +""" +type pokemon_v2_typegameindex_aggregate_fields { + avg: pokemon_v2_typegameindex_avg_fields + count(columns: [pokemon_v2_typegameindex_select_column!], distinct: Boolean): Int! + max: pokemon_v2_typegameindex_max_fields + min: pokemon_v2_typegameindex_min_fields + stddev: pokemon_v2_typegameindex_stddev_fields + stddev_pop: pokemon_v2_typegameindex_stddev_pop_fields + stddev_samp: pokemon_v2_typegameindex_stddev_samp_fields + sum: pokemon_v2_typegameindex_sum_fields + var_pop: pokemon_v2_typegameindex_var_pop_fields + var_samp: pokemon_v2_typegameindex_var_samp_fields + variance: pokemon_v2_typegameindex_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_typegameindex" +""" +input pokemon_v2_typegameindex_aggregate_order_by { + avg: pokemon_v2_typegameindex_avg_order_by + count: order_by + max: pokemon_v2_typegameindex_max_order_by + min: pokemon_v2_typegameindex_min_order_by + stddev: pokemon_v2_typegameindex_stddev_order_by + stddev_pop: pokemon_v2_typegameindex_stddev_pop_order_by + stddev_samp: pokemon_v2_typegameindex_stddev_samp_order_by + sum: pokemon_v2_typegameindex_sum_order_by + var_pop: pokemon_v2_typegameindex_var_pop_order_by + var_samp: pokemon_v2_typegameindex_var_samp_order_by + variance: pokemon_v2_typegameindex_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_typegameindex_avg_fields { + game_index: Float + generation_id: Float + id: Float + type_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_typegameindex" +""" +input pokemon_v2_typegameindex_avg_order_by { + game_index: order_by + generation_id: order_by + id: order_by + type_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_typegameindex". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_typegameindex_bool_exp { + _and: [pokemon_v2_typegameindex_bool_exp!] + _not: pokemon_v2_typegameindex_bool_exp + _or: [pokemon_v2_typegameindex_bool_exp!] + game_index: Int_comparison_exp + generation_id: Int_comparison_exp + id: Int_comparison_exp + pokemon_v2_generation: pokemon_v2_generation_bool_exp + pokemon_v2_type: pokemon_v2_type_bool_exp + type_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_typegameindex_max_fields { + game_index: Int + generation_id: Int + id: Int + type_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_typegameindex" +""" +input pokemon_v2_typegameindex_max_order_by { + game_index: order_by + generation_id: order_by + id: order_by + type_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_typegameindex_min_fields { + game_index: Int + generation_id: Int + id: Int + type_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_typegameindex" +""" +input pokemon_v2_typegameindex_min_order_by { + game_index: order_by + generation_id: order_by + id: order_by + type_id: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_typegameindex".""" +input pokemon_v2_typegameindex_order_by { + game_index: order_by + generation_id: order_by + id: order_by + pokemon_v2_generation: pokemon_v2_generation_order_by + pokemon_v2_type: pokemon_v2_type_order_by + type_id: order_by +} + +""" +select columns of table "pokemon_v2_typegameindex" +""" +enum pokemon_v2_typegameindex_select_column { + """column name""" + game_index + + """column name""" + generation_id + + """column name""" + id + + """column name""" + type_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_typegameindex_stddev_fields { + game_index: Float + generation_id: Float + id: Float + type_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_typegameindex" +""" +input pokemon_v2_typegameindex_stddev_order_by { + game_index: order_by + generation_id: order_by + id: order_by + type_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_typegameindex_stddev_pop_fields { + game_index: Float + generation_id: Float + id: Float + type_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_typegameindex" +""" +input pokemon_v2_typegameindex_stddev_pop_order_by { + game_index: order_by + generation_id: order_by + id: order_by + type_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_typegameindex_stddev_samp_fields { + game_index: Float + generation_id: Float + id: Float + type_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_typegameindex" +""" +input pokemon_v2_typegameindex_stddev_samp_order_by { + game_index: order_by + generation_id: order_by + id: order_by + type_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_typegameindex" +""" +input pokemon_v2_typegameindex_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_typegameindex_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_typegameindex_stream_cursor_value_input { + game_index: Int + generation_id: Int + id: Int + type_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_typegameindex_sum_fields { + game_index: Int + generation_id: Int + id: Int + type_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_typegameindex" +""" +input pokemon_v2_typegameindex_sum_order_by { + game_index: order_by + generation_id: order_by + id: order_by + type_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_typegameindex_var_pop_fields { + game_index: Float + generation_id: Float + id: Float + type_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_typegameindex" +""" +input pokemon_v2_typegameindex_var_pop_order_by { + game_index: order_by + generation_id: order_by + id: order_by + type_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_typegameindex_var_samp_fields { + game_index: Float + generation_id: Float + id: Float + type_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_typegameindex" +""" +input pokemon_v2_typegameindex_var_samp_order_by { + game_index: order_by + generation_id: order_by + id: order_by + type_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_typegameindex_variance_fields { + game_index: Float + generation_id: Float + id: Float + type_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_typegameindex" +""" +input pokemon_v2_typegameindex_variance_order_by { + game_index: order_by + generation_id: order_by + id: order_by + type_id: order_by +} + +""" +columns and relationships of "pokemon_v2_typename" +""" +type pokemon_v2_typename { + id: Int! + language_id: Int + name: String! + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_type: pokemon_v2_type + type_id: Int +} + +""" +aggregated selection of "pokemon_v2_typename" +""" +type pokemon_v2_typename_aggregate { + aggregate: pokemon_v2_typename_aggregate_fields + nodes: [pokemon_v2_typename!]! +} + +input pokemon_v2_typename_aggregate_bool_exp { + count: pokemon_v2_typename_aggregate_bool_exp_count +} + +input pokemon_v2_typename_aggregate_bool_exp_count { + arguments: [pokemon_v2_typename_select_column!] + distinct: Boolean + filter: pokemon_v2_typename_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_typename" +""" +type pokemon_v2_typename_aggregate_fields { + avg: pokemon_v2_typename_avg_fields + count(columns: [pokemon_v2_typename_select_column!], distinct: Boolean): Int! + max: pokemon_v2_typename_max_fields + min: pokemon_v2_typename_min_fields + stddev: pokemon_v2_typename_stddev_fields + stddev_pop: pokemon_v2_typename_stddev_pop_fields + stddev_samp: pokemon_v2_typename_stddev_samp_fields + sum: pokemon_v2_typename_sum_fields + var_pop: pokemon_v2_typename_var_pop_fields + var_samp: pokemon_v2_typename_var_samp_fields + variance: pokemon_v2_typename_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_typename" +""" +input pokemon_v2_typename_aggregate_order_by { + avg: pokemon_v2_typename_avg_order_by + count: order_by + max: pokemon_v2_typename_max_order_by + min: pokemon_v2_typename_min_order_by + stddev: pokemon_v2_typename_stddev_order_by + stddev_pop: pokemon_v2_typename_stddev_pop_order_by + stddev_samp: pokemon_v2_typename_stddev_samp_order_by + sum: pokemon_v2_typename_sum_order_by + var_pop: pokemon_v2_typename_var_pop_order_by + var_samp: pokemon_v2_typename_var_samp_order_by + variance: pokemon_v2_typename_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_typename_avg_fields { + id: Float + language_id: Float + type_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_typename" +""" +input pokemon_v2_typename_avg_order_by { + id: order_by + language_id: order_by + type_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_typename". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_typename_bool_exp { + _and: [pokemon_v2_typename_bool_exp!] + _not: pokemon_v2_typename_bool_exp + _or: [pokemon_v2_typename_bool_exp!] + id: Int_comparison_exp + language_id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_type: pokemon_v2_type_bool_exp + type_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_typename_max_fields { + id: Int + language_id: Int + name: String + type_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_typename" +""" +input pokemon_v2_typename_max_order_by { + id: order_by + language_id: order_by + name: order_by + type_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_typename_min_fields { + id: Int + language_id: Int + name: String + type_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_typename" +""" +input pokemon_v2_typename_min_order_by { + id: order_by + language_id: order_by + name: order_by + type_id: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_typename".""" +input pokemon_v2_typename_order_by { + id: order_by + language_id: order_by + name: order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_type: pokemon_v2_type_order_by + type_id: order_by +} + +""" +select columns of table "pokemon_v2_typename" +""" +enum pokemon_v2_typename_select_column { + """column name""" + id + + """column name""" + language_id + + """column name""" + name + + """column name""" + type_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_typename_stddev_fields { + id: Float + language_id: Float + type_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_typename" +""" +input pokemon_v2_typename_stddev_order_by { + id: order_by + language_id: order_by + type_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_typename_stddev_pop_fields { + id: Float + language_id: Float + type_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_typename" +""" +input pokemon_v2_typename_stddev_pop_order_by { + id: order_by + language_id: order_by + type_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_typename_stddev_samp_fields { + id: Float + language_id: Float + type_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_typename" +""" +input pokemon_v2_typename_stddev_samp_order_by { + id: order_by + language_id: order_by + type_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_typename" +""" +input pokemon_v2_typename_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_typename_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_typename_stream_cursor_value_input { + id: Int + language_id: Int + name: String + type_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_typename_sum_fields { + id: Int + language_id: Int + type_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_typename" +""" +input pokemon_v2_typename_sum_order_by { + id: order_by + language_id: order_by + type_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_typename_var_pop_fields { + id: Float + language_id: Float + type_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_typename" +""" +input pokemon_v2_typename_var_pop_order_by { + id: order_by + language_id: order_by + type_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_typename_var_samp_fields { + id: Float + language_id: Float + type_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_typename" +""" +input pokemon_v2_typename_var_samp_order_by { + id: order_by + language_id: order_by + type_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_typename_variance_fields { + id: Float + language_id: Float + type_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_typename" +""" +input pokemon_v2_typename_variance_order_by { + id: order_by + language_id: order_by + type_id: order_by +} + +""" +columns and relationships of "pokemon_v2_version" +""" +type pokemon_v2_version { + id: Int! + name: String! + + """An array relationship""" + pokemon_v2_encounters( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounter_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounter_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounter_bool_exp + ): [pokemon_v2_encounter!]! + + """An aggregate relationship""" + pokemon_v2_encounters_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounter_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounter_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounter_bool_exp + ): pokemon_v2_encounter_aggregate! + + """An array relationship""" + pokemon_v2_locationareaencounterrates( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationareaencounterrate_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationareaencounterrate_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationareaencounterrate_bool_exp + ): [pokemon_v2_locationareaencounterrate!]! + + """An aggregate relationship""" + pokemon_v2_locationareaencounterrates_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationareaencounterrate_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationareaencounterrate_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationareaencounterrate_bool_exp + ): pokemon_v2_locationareaencounterrate_aggregate! + + """An array relationship""" + pokemon_v2_pokemongameindices( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemongameindex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemongameindex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemongameindex_bool_exp + ): [pokemon_v2_pokemongameindex!]! + + """An aggregate relationship""" + pokemon_v2_pokemongameindices_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemongameindex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemongameindex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemongameindex_bool_exp + ): pokemon_v2_pokemongameindex_aggregate! + + """An array relationship""" + pokemon_v2_pokemonitems( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonitem_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonitem_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonitem_bool_exp + ): [pokemon_v2_pokemonitem!]! + + """An aggregate relationship""" + pokemon_v2_pokemonitems_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonitem_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonitem_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonitem_bool_exp + ): pokemon_v2_pokemonitem_aggregate! + + """An array relationship""" + pokemon_v2_pokemonspeciesflavortexts( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspeciesflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspeciesflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspeciesflavortext_bool_exp + ): [pokemon_v2_pokemonspeciesflavortext!]! + + """An aggregate relationship""" + pokemon_v2_pokemonspeciesflavortexts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspeciesflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspeciesflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspeciesflavortext_bool_exp + ): pokemon_v2_pokemonspeciesflavortext_aggregate! + + """An object relationship""" + pokemon_v2_versiongroup: pokemon_v2_versiongroup + + """An array relationship""" + pokemon_v2_versionnames( + """distinct select on columns""" + distinct_on: [pokemon_v2_versionname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_versionname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_versionname_bool_exp + ): [pokemon_v2_versionname!]! + + """An aggregate relationship""" + pokemon_v2_versionnames_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_versionname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_versionname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_versionname_bool_exp + ): pokemon_v2_versionname_aggregate! + version_group_id: Int +} + +""" +aggregated selection of "pokemon_v2_version" +""" +type pokemon_v2_version_aggregate { + aggregate: pokemon_v2_version_aggregate_fields + nodes: [pokemon_v2_version!]! +} + +input pokemon_v2_version_aggregate_bool_exp { + count: pokemon_v2_version_aggregate_bool_exp_count +} + +input pokemon_v2_version_aggregate_bool_exp_count { + arguments: [pokemon_v2_version_select_column!] + distinct: Boolean + filter: pokemon_v2_version_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_version" +""" +type pokemon_v2_version_aggregate_fields { + avg: pokemon_v2_version_avg_fields + count(columns: [pokemon_v2_version_select_column!], distinct: Boolean): Int! + max: pokemon_v2_version_max_fields + min: pokemon_v2_version_min_fields + stddev: pokemon_v2_version_stddev_fields + stddev_pop: pokemon_v2_version_stddev_pop_fields + stddev_samp: pokemon_v2_version_stddev_samp_fields + sum: pokemon_v2_version_sum_fields + var_pop: pokemon_v2_version_var_pop_fields + var_samp: pokemon_v2_version_var_samp_fields + variance: pokemon_v2_version_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_version" +""" +input pokemon_v2_version_aggregate_order_by { + avg: pokemon_v2_version_avg_order_by + count: order_by + max: pokemon_v2_version_max_order_by + min: pokemon_v2_version_min_order_by + stddev: pokemon_v2_version_stddev_order_by + stddev_pop: pokemon_v2_version_stddev_pop_order_by + stddev_samp: pokemon_v2_version_stddev_samp_order_by + sum: pokemon_v2_version_sum_order_by + var_pop: pokemon_v2_version_var_pop_order_by + var_samp: pokemon_v2_version_var_samp_order_by + variance: pokemon_v2_version_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_version_avg_fields { + id: Float + version_group_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_version" +""" +input pokemon_v2_version_avg_order_by { + id: order_by + version_group_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_version". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_version_bool_exp { + _and: [pokemon_v2_version_bool_exp!] + _not: pokemon_v2_version_bool_exp + _or: [pokemon_v2_version_bool_exp!] + id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_encounters: pokemon_v2_encounter_bool_exp + pokemon_v2_encounters_aggregate: pokemon_v2_encounter_aggregate_bool_exp + pokemon_v2_locationareaencounterrates: pokemon_v2_locationareaencounterrate_bool_exp + pokemon_v2_locationareaencounterrates_aggregate: pokemon_v2_locationareaencounterrate_aggregate_bool_exp + pokemon_v2_pokemongameindices: pokemon_v2_pokemongameindex_bool_exp + pokemon_v2_pokemongameindices_aggregate: pokemon_v2_pokemongameindex_aggregate_bool_exp + pokemon_v2_pokemonitems: pokemon_v2_pokemonitem_bool_exp + pokemon_v2_pokemonitems_aggregate: pokemon_v2_pokemonitem_aggregate_bool_exp + pokemon_v2_pokemonspeciesflavortexts: pokemon_v2_pokemonspeciesflavortext_bool_exp + pokemon_v2_pokemonspeciesflavortexts_aggregate: pokemon_v2_pokemonspeciesflavortext_aggregate_bool_exp + pokemon_v2_versiongroup: pokemon_v2_versiongroup_bool_exp + pokemon_v2_versionnames: pokemon_v2_versionname_bool_exp + pokemon_v2_versionnames_aggregate: pokemon_v2_versionname_aggregate_bool_exp + version_group_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_version_max_fields { + id: Int + name: String + version_group_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_version" +""" +input pokemon_v2_version_max_order_by { + id: order_by + name: order_by + version_group_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_version_min_fields { + id: Int + name: String + version_group_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_version" +""" +input pokemon_v2_version_min_order_by { + id: order_by + name: order_by + version_group_id: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_version".""" +input pokemon_v2_version_order_by { + id: order_by + name: order_by + pokemon_v2_encounters_aggregate: pokemon_v2_encounter_aggregate_order_by + pokemon_v2_locationareaencounterrates_aggregate: pokemon_v2_locationareaencounterrate_aggregate_order_by + pokemon_v2_pokemongameindices_aggregate: pokemon_v2_pokemongameindex_aggregate_order_by + pokemon_v2_pokemonitems_aggregate: pokemon_v2_pokemonitem_aggregate_order_by + pokemon_v2_pokemonspeciesflavortexts_aggregate: pokemon_v2_pokemonspeciesflavortext_aggregate_order_by + pokemon_v2_versiongroup: pokemon_v2_versiongroup_order_by + pokemon_v2_versionnames_aggregate: pokemon_v2_versionname_aggregate_order_by + version_group_id: order_by +} + +""" +select columns of table "pokemon_v2_version" +""" +enum pokemon_v2_version_select_column { + """column name""" + id + + """column name""" + name + + """column name""" + version_group_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_version_stddev_fields { + id: Float + version_group_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_version" +""" +input pokemon_v2_version_stddev_order_by { + id: order_by + version_group_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_version_stddev_pop_fields { + id: Float + version_group_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_version" +""" +input pokemon_v2_version_stddev_pop_order_by { + id: order_by + version_group_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_version_stddev_samp_fields { + id: Float + version_group_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_version" +""" +input pokemon_v2_version_stddev_samp_order_by { + id: order_by + version_group_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_version" +""" +input pokemon_v2_version_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_version_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_version_stream_cursor_value_input { + id: Int + name: String + version_group_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_version_sum_fields { + id: Int + version_group_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_version" +""" +input pokemon_v2_version_sum_order_by { + id: order_by + version_group_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_version_var_pop_fields { + id: Float + version_group_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_version" +""" +input pokemon_v2_version_var_pop_order_by { + id: order_by + version_group_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_version_var_samp_fields { + id: Float + version_group_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_version" +""" +input pokemon_v2_version_var_samp_order_by { + id: order_by + version_group_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_version_variance_fields { + id: Float + version_group_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_version" +""" +input pokemon_v2_version_variance_order_by { + id: order_by + version_group_id: order_by +} + +""" +columns and relationships of "pokemon_v2_versiongroup" +""" +type pokemon_v2_versiongroup { + generation_id: Int + id: Int! + name: String! + order: Int + + """An array relationship""" + pokemon_v2_abilitychanges( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilitychange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilitychange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilitychange_bool_exp + ): [pokemon_v2_abilitychange!]! + + """An aggregate relationship""" + pokemon_v2_abilitychanges_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilitychange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilitychange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilitychange_bool_exp + ): pokemon_v2_abilitychange_aggregate! + + """An array relationship""" + pokemon_v2_abilityflavortexts( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilityflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilityflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilityflavortext_bool_exp + ): [pokemon_v2_abilityflavortext!]! + + """An aggregate relationship""" + pokemon_v2_abilityflavortexts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilityflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilityflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilityflavortext_bool_exp + ): pokemon_v2_abilityflavortext_aggregate! + + """An array relationship""" + pokemon_v2_encounterslots( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterslot_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterslot_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterslot_bool_exp + ): [pokemon_v2_encounterslot!]! + + """An aggregate relationship""" + pokemon_v2_encounterslots_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterslot_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterslot_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterslot_bool_exp + ): pokemon_v2_encounterslot_aggregate! + + """An object relationship""" + pokemon_v2_generation: pokemon_v2_generation + + """An array relationship""" + pokemon_v2_itemflavortexts( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemflavortext_bool_exp + ): [pokemon_v2_itemflavortext!]! + + """An aggregate relationship""" + pokemon_v2_itemflavortexts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemflavortext_bool_exp + ): pokemon_v2_itemflavortext_aggregate! + + """An array relationship""" + pokemon_v2_machines( + """distinct select on columns""" + distinct_on: [pokemon_v2_machine_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_machine_order_by!] + + """filter the rows returned""" + where: pokemon_v2_machine_bool_exp + ): [pokemon_v2_machine!]! + + """An aggregate relationship""" + pokemon_v2_machines_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_machine_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_machine_order_by!] + + """filter the rows returned""" + where: pokemon_v2_machine_bool_exp + ): pokemon_v2_machine_aggregate! + + """An array relationship""" + pokemon_v2_movechanges( + """distinct select on columns""" + distinct_on: [pokemon_v2_movechange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movechange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movechange_bool_exp + ): [pokemon_v2_movechange!]! + + """An aggregate relationship""" + pokemon_v2_movechanges_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movechange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movechange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movechange_bool_exp + ): pokemon_v2_movechange_aggregate! + + """An array relationship""" + pokemon_v2_moveeffectchanges( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveeffectchange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveeffectchange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveeffectchange_bool_exp + ): [pokemon_v2_moveeffectchange!]! + + """An aggregate relationship""" + pokemon_v2_moveeffectchanges_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveeffectchange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveeffectchange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveeffectchange_bool_exp + ): pokemon_v2_moveeffectchange_aggregate! + + """An array relationship""" + pokemon_v2_moveflavortexts( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveflavortext_bool_exp + ): [pokemon_v2_moveflavortext!]! + + """An aggregate relationship""" + pokemon_v2_moveflavortexts_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveflavortext_bool_exp + ): pokemon_v2_moveflavortext_aggregate! + + """An array relationship""" + pokemon_v2_pokedexversiongroups( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokedexversiongroup_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokedexversiongroup_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokedexversiongroup_bool_exp + ): [pokemon_v2_pokedexversiongroup!]! + + """An aggregate relationship""" + pokemon_v2_pokedexversiongroups_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokedexversiongroup_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokedexversiongroup_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokedexversiongroup_bool_exp + ): pokemon_v2_pokedexversiongroup_aggregate! + + """An array relationship""" + pokemon_v2_pokemonforms( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonform_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonform_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonform_bool_exp + ): [pokemon_v2_pokemonform!]! + + """An aggregate relationship""" + pokemon_v2_pokemonforms_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonform_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonform_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonform_bool_exp + ): pokemon_v2_pokemonform_aggregate! + + """An array relationship""" + pokemon_v2_pokemonmoves( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonmove_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonmove_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonmove_bool_exp + ): [pokemon_v2_pokemonmove!]! + + """An aggregate relationship""" + pokemon_v2_pokemonmoves_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonmove_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonmove_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonmove_bool_exp + ): pokemon_v2_pokemonmove_aggregate! + + """An array relationship""" + pokemon_v2_versiongroupmovelearnmethods( + """distinct select on columns""" + distinct_on: [pokemon_v2_versiongroupmovelearnmethod_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_versiongroupmovelearnmethod_order_by!] + + """filter the rows returned""" + where: pokemon_v2_versiongroupmovelearnmethod_bool_exp + ): [pokemon_v2_versiongroupmovelearnmethod!]! + + """An aggregate relationship""" + pokemon_v2_versiongroupmovelearnmethods_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_versiongroupmovelearnmethod_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_versiongroupmovelearnmethod_order_by!] + + """filter the rows returned""" + where: pokemon_v2_versiongroupmovelearnmethod_bool_exp + ): pokemon_v2_versiongroupmovelearnmethod_aggregate! + + """An array relationship""" + pokemon_v2_versiongroupregions( + """distinct select on columns""" + distinct_on: [pokemon_v2_versiongroupregion_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_versiongroupregion_order_by!] + + """filter the rows returned""" + where: pokemon_v2_versiongroupregion_bool_exp + ): [pokemon_v2_versiongroupregion!]! + + """An aggregate relationship""" + pokemon_v2_versiongroupregions_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_versiongroupregion_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_versiongroupregion_order_by!] + + """filter the rows returned""" + where: pokemon_v2_versiongroupregion_bool_exp + ): pokemon_v2_versiongroupregion_aggregate! + + """An array relationship""" + pokemon_v2_versions( + """distinct select on columns""" + distinct_on: [pokemon_v2_version_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_version_order_by!] + + """filter the rows returned""" + where: pokemon_v2_version_bool_exp + ): [pokemon_v2_version!]! + + """An aggregate relationship""" + pokemon_v2_versions_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_version_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_version_order_by!] + + """filter the rows returned""" + where: pokemon_v2_version_bool_exp + ): pokemon_v2_version_aggregate! +} + +""" +aggregated selection of "pokemon_v2_versiongroup" +""" +type pokemon_v2_versiongroup_aggregate { + aggregate: pokemon_v2_versiongroup_aggregate_fields + nodes: [pokemon_v2_versiongroup!]! +} + +input pokemon_v2_versiongroup_aggregate_bool_exp { + count: pokemon_v2_versiongroup_aggregate_bool_exp_count +} + +input pokemon_v2_versiongroup_aggregate_bool_exp_count { + arguments: [pokemon_v2_versiongroup_select_column!] + distinct: Boolean + filter: pokemon_v2_versiongroup_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_versiongroup" +""" +type pokemon_v2_versiongroup_aggregate_fields { + avg: pokemon_v2_versiongroup_avg_fields + count(columns: [pokemon_v2_versiongroup_select_column!], distinct: Boolean): Int! + max: pokemon_v2_versiongroup_max_fields + min: pokemon_v2_versiongroup_min_fields + stddev: pokemon_v2_versiongroup_stddev_fields + stddev_pop: pokemon_v2_versiongroup_stddev_pop_fields + stddev_samp: pokemon_v2_versiongroup_stddev_samp_fields + sum: pokemon_v2_versiongroup_sum_fields + var_pop: pokemon_v2_versiongroup_var_pop_fields + var_samp: pokemon_v2_versiongroup_var_samp_fields + variance: pokemon_v2_versiongroup_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_versiongroup" +""" +input pokemon_v2_versiongroup_aggregate_order_by { + avg: pokemon_v2_versiongroup_avg_order_by + count: order_by + max: pokemon_v2_versiongroup_max_order_by + min: pokemon_v2_versiongroup_min_order_by + stddev: pokemon_v2_versiongroup_stddev_order_by + stddev_pop: pokemon_v2_versiongroup_stddev_pop_order_by + stddev_samp: pokemon_v2_versiongroup_stddev_samp_order_by + sum: pokemon_v2_versiongroup_sum_order_by + var_pop: pokemon_v2_versiongroup_var_pop_order_by + var_samp: pokemon_v2_versiongroup_var_samp_order_by + variance: pokemon_v2_versiongroup_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_versiongroup_avg_fields { + generation_id: Float + id: Float + order: Float +} + +""" +order by avg() on columns of table "pokemon_v2_versiongroup" +""" +input pokemon_v2_versiongroup_avg_order_by { + generation_id: order_by + id: order_by + order: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_versiongroup". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_versiongroup_bool_exp { + _and: [pokemon_v2_versiongroup_bool_exp!] + _not: pokemon_v2_versiongroup_bool_exp + _or: [pokemon_v2_versiongroup_bool_exp!] + generation_id: Int_comparison_exp + id: Int_comparison_exp + name: String_comparison_exp + order: Int_comparison_exp + pokemon_v2_abilitychanges: pokemon_v2_abilitychange_bool_exp + pokemon_v2_abilitychanges_aggregate: pokemon_v2_abilitychange_aggregate_bool_exp + pokemon_v2_abilityflavortexts: pokemon_v2_abilityflavortext_bool_exp + pokemon_v2_abilityflavortexts_aggregate: pokemon_v2_abilityflavortext_aggregate_bool_exp + pokemon_v2_encounterslots: pokemon_v2_encounterslot_bool_exp + pokemon_v2_encounterslots_aggregate: pokemon_v2_encounterslot_aggregate_bool_exp + pokemon_v2_generation: pokemon_v2_generation_bool_exp + pokemon_v2_itemflavortexts: pokemon_v2_itemflavortext_bool_exp + pokemon_v2_itemflavortexts_aggregate: pokemon_v2_itemflavortext_aggregate_bool_exp + pokemon_v2_machines: pokemon_v2_machine_bool_exp + pokemon_v2_machines_aggregate: pokemon_v2_machine_aggregate_bool_exp + pokemon_v2_movechanges: pokemon_v2_movechange_bool_exp + pokemon_v2_movechanges_aggregate: pokemon_v2_movechange_aggregate_bool_exp + pokemon_v2_moveeffectchanges: pokemon_v2_moveeffectchange_bool_exp + pokemon_v2_moveeffectchanges_aggregate: pokemon_v2_moveeffectchange_aggregate_bool_exp + pokemon_v2_moveflavortexts: pokemon_v2_moveflavortext_bool_exp + pokemon_v2_moveflavortexts_aggregate: pokemon_v2_moveflavortext_aggregate_bool_exp + pokemon_v2_pokedexversiongroups: pokemon_v2_pokedexversiongroup_bool_exp + pokemon_v2_pokedexversiongroups_aggregate: pokemon_v2_pokedexversiongroup_aggregate_bool_exp + pokemon_v2_pokemonforms: pokemon_v2_pokemonform_bool_exp + pokemon_v2_pokemonforms_aggregate: pokemon_v2_pokemonform_aggregate_bool_exp + pokemon_v2_pokemonmoves: pokemon_v2_pokemonmove_bool_exp + pokemon_v2_pokemonmoves_aggregate: pokemon_v2_pokemonmove_aggregate_bool_exp + pokemon_v2_versiongroupmovelearnmethods: pokemon_v2_versiongroupmovelearnmethod_bool_exp + pokemon_v2_versiongroupmovelearnmethods_aggregate: pokemon_v2_versiongroupmovelearnmethod_aggregate_bool_exp + pokemon_v2_versiongroupregions: pokemon_v2_versiongroupregion_bool_exp + pokemon_v2_versiongroupregions_aggregate: pokemon_v2_versiongroupregion_aggregate_bool_exp + pokemon_v2_versions: pokemon_v2_version_bool_exp + pokemon_v2_versions_aggregate: pokemon_v2_version_aggregate_bool_exp +} + +"""aggregate max on columns""" +type pokemon_v2_versiongroup_max_fields { + generation_id: Int + id: Int + name: String + order: Int +} + +""" +order by max() on columns of table "pokemon_v2_versiongroup" +""" +input pokemon_v2_versiongroup_max_order_by { + generation_id: order_by + id: order_by + name: order_by + order: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_versiongroup_min_fields { + generation_id: Int + id: Int + name: String + order: Int +} + +""" +order by min() on columns of table "pokemon_v2_versiongroup" +""" +input pokemon_v2_versiongroup_min_order_by { + generation_id: order_by + id: order_by + name: order_by + order: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_versiongroup".""" +input pokemon_v2_versiongroup_order_by { + generation_id: order_by + id: order_by + name: order_by + order: order_by + pokemon_v2_abilitychanges_aggregate: pokemon_v2_abilitychange_aggregate_order_by + pokemon_v2_abilityflavortexts_aggregate: pokemon_v2_abilityflavortext_aggregate_order_by + pokemon_v2_encounterslots_aggregate: pokemon_v2_encounterslot_aggregate_order_by + pokemon_v2_generation: pokemon_v2_generation_order_by + pokemon_v2_itemflavortexts_aggregate: pokemon_v2_itemflavortext_aggregate_order_by + pokemon_v2_machines_aggregate: pokemon_v2_machine_aggregate_order_by + pokemon_v2_movechanges_aggregate: pokemon_v2_movechange_aggregate_order_by + pokemon_v2_moveeffectchanges_aggregate: pokemon_v2_moveeffectchange_aggregate_order_by + pokemon_v2_moveflavortexts_aggregate: pokemon_v2_moveflavortext_aggregate_order_by + pokemon_v2_pokedexversiongroups_aggregate: pokemon_v2_pokedexversiongroup_aggregate_order_by + pokemon_v2_pokemonforms_aggregate: pokemon_v2_pokemonform_aggregate_order_by + pokemon_v2_pokemonmoves_aggregate: pokemon_v2_pokemonmove_aggregate_order_by + pokemon_v2_versiongroupmovelearnmethods_aggregate: pokemon_v2_versiongroupmovelearnmethod_aggregate_order_by + pokemon_v2_versiongroupregions_aggregate: pokemon_v2_versiongroupregion_aggregate_order_by + pokemon_v2_versions_aggregate: pokemon_v2_version_aggregate_order_by +} + +""" +select columns of table "pokemon_v2_versiongroup" +""" +enum pokemon_v2_versiongroup_select_column { + """column name""" + generation_id + + """column name""" + id + + """column name""" + name + + """column name""" + order +} + +"""aggregate stddev on columns""" +type pokemon_v2_versiongroup_stddev_fields { + generation_id: Float + id: Float + order: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_versiongroup" +""" +input pokemon_v2_versiongroup_stddev_order_by { + generation_id: order_by + id: order_by + order: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_versiongroup_stddev_pop_fields { + generation_id: Float + id: Float + order: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_versiongroup" +""" +input pokemon_v2_versiongroup_stddev_pop_order_by { + generation_id: order_by + id: order_by + order: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_versiongroup_stddev_samp_fields { + generation_id: Float + id: Float + order: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_versiongroup" +""" +input pokemon_v2_versiongroup_stddev_samp_order_by { + generation_id: order_by + id: order_by + order: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_versiongroup" +""" +input pokemon_v2_versiongroup_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_versiongroup_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_versiongroup_stream_cursor_value_input { + generation_id: Int + id: Int + name: String + order: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_versiongroup_sum_fields { + generation_id: Int + id: Int + order: Int +} + +""" +order by sum() on columns of table "pokemon_v2_versiongroup" +""" +input pokemon_v2_versiongroup_sum_order_by { + generation_id: order_by + id: order_by + order: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_versiongroup_var_pop_fields { + generation_id: Float + id: Float + order: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_versiongroup" +""" +input pokemon_v2_versiongroup_var_pop_order_by { + generation_id: order_by + id: order_by + order: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_versiongroup_var_samp_fields { + generation_id: Float + id: Float + order: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_versiongroup" +""" +input pokemon_v2_versiongroup_var_samp_order_by { + generation_id: order_by + id: order_by + order: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_versiongroup_variance_fields { + generation_id: Float + id: Float + order: Float +} + +""" +order by variance() on columns of table "pokemon_v2_versiongroup" +""" +input pokemon_v2_versiongroup_variance_order_by { + generation_id: order_by + id: order_by + order: order_by +} + +""" +columns and relationships of "pokemon_v2_versiongroupmovelearnmethod" +""" +type pokemon_v2_versiongroupmovelearnmethod { + id: Int! + move_learn_method_id: Int + + """An object relationship""" + pokemon_v2_movelearnmethod: pokemon_v2_movelearnmethod + + """An object relationship""" + pokemon_v2_versiongroup: pokemon_v2_versiongroup + version_group_id: Int +} + +""" +aggregated selection of "pokemon_v2_versiongroupmovelearnmethod" +""" +type pokemon_v2_versiongroupmovelearnmethod_aggregate { + aggregate: pokemon_v2_versiongroupmovelearnmethod_aggregate_fields + nodes: [pokemon_v2_versiongroupmovelearnmethod!]! +} + +input pokemon_v2_versiongroupmovelearnmethod_aggregate_bool_exp { + count: pokemon_v2_versiongroupmovelearnmethod_aggregate_bool_exp_count +} + +input pokemon_v2_versiongroupmovelearnmethod_aggregate_bool_exp_count { + arguments: [pokemon_v2_versiongroupmovelearnmethod_select_column!] + distinct: Boolean + filter: pokemon_v2_versiongroupmovelearnmethod_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_versiongroupmovelearnmethod" +""" +type pokemon_v2_versiongroupmovelearnmethod_aggregate_fields { + avg: pokemon_v2_versiongroupmovelearnmethod_avg_fields + count(columns: [pokemon_v2_versiongroupmovelearnmethod_select_column!], distinct: Boolean): Int! + max: pokemon_v2_versiongroupmovelearnmethod_max_fields + min: pokemon_v2_versiongroupmovelearnmethod_min_fields + stddev: pokemon_v2_versiongroupmovelearnmethod_stddev_fields + stddev_pop: pokemon_v2_versiongroupmovelearnmethod_stddev_pop_fields + stddev_samp: pokemon_v2_versiongroupmovelearnmethod_stddev_samp_fields + sum: pokemon_v2_versiongroupmovelearnmethod_sum_fields + var_pop: pokemon_v2_versiongroupmovelearnmethod_var_pop_fields + var_samp: pokemon_v2_versiongroupmovelearnmethod_var_samp_fields + variance: pokemon_v2_versiongroupmovelearnmethod_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_versiongroupmovelearnmethod" +""" +input pokemon_v2_versiongroupmovelearnmethod_aggregate_order_by { + avg: pokemon_v2_versiongroupmovelearnmethod_avg_order_by + count: order_by + max: pokemon_v2_versiongroupmovelearnmethod_max_order_by + min: pokemon_v2_versiongroupmovelearnmethod_min_order_by + stddev: pokemon_v2_versiongroupmovelearnmethod_stddev_order_by + stddev_pop: pokemon_v2_versiongroupmovelearnmethod_stddev_pop_order_by + stddev_samp: pokemon_v2_versiongroupmovelearnmethod_stddev_samp_order_by + sum: pokemon_v2_versiongroupmovelearnmethod_sum_order_by + var_pop: pokemon_v2_versiongroupmovelearnmethod_var_pop_order_by + var_samp: pokemon_v2_versiongroupmovelearnmethod_var_samp_order_by + variance: pokemon_v2_versiongroupmovelearnmethod_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_versiongroupmovelearnmethod_avg_fields { + id: Float + move_learn_method_id: Float + version_group_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_versiongroupmovelearnmethod" +""" +input pokemon_v2_versiongroupmovelearnmethod_avg_order_by { + id: order_by + move_learn_method_id: order_by + version_group_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_versiongroupmovelearnmethod". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_versiongroupmovelearnmethod_bool_exp { + _and: [pokemon_v2_versiongroupmovelearnmethod_bool_exp!] + _not: pokemon_v2_versiongroupmovelearnmethod_bool_exp + _or: [pokemon_v2_versiongroupmovelearnmethod_bool_exp!] + id: Int_comparison_exp + move_learn_method_id: Int_comparison_exp + pokemon_v2_movelearnmethod: pokemon_v2_movelearnmethod_bool_exp + pokemon_v2_versiongroup: pokemon_v2_versiongroup_bool_exp + version_group_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_versiongroupmovelearnmethod_max_fields { + id: Int + move_learn_method_id: Int + version_group_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_versiongroupmovelearnmethod" +""" +input pokemon_v2_versiongroupmovelearnmethod_max_order_by { + id: order_by + move_learn_method_id: order_by + version_group_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_versiongroupmovelearnmethod_min_fields { + id: Int + move_learn_method_id: Int + version_group_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_versiongroupmovelearnmethod" +""" +input pokemon_v2_versiongroupmovelearnmethod_min_order_by { + id: order_by + move_learn_method_id: order_by + version_group_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_versiongroupmovelearnmethod". +""" +input pokemon_v2_versiongroupmovelearnmethod_order_by { + id: order_by + move_learn_method_id: order_by + pokemon_v2_movelearnmethod: pokemon_v2_movelearnmethod_order_by + pokemon_v2_versiongroup: pokemon_v2_versiongroup_order_by + version_group_id: order_by +} + +""" +select columns of table "pokemon_v2_versiongroupmovelearnmethod" +""" +enum pokemon_v2_versiongroupmovelearnmethod_select_column { + """column name""" + id + + """column name""" + move_learn_method_id + + """column name""" + version_group_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_versiongroupmovelearnmethod_stddev_fields { + id: Float + move_learn_method_id: Float + version_group_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_versiongroupmovelearnmethod" +""" +input pokemon_v2_versiongroupmovelearnmethod_stddev_order_by { + id: order_by + move_learn_method_id: order_by + version_group_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_versiongroupmovelearnmethod_stddev_pop_fields { + id: Float + move_learn_method_id: Float + version_group_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_versiongroupmovelearnmethod" +""" +input pokemon_v2_versiongroupmovelearnmethod_stddev_pop_order_by { + id: order_by + move_learn_method_id: order_by + version_group_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_versiongroupmovelearnmethod_stddev_samp_fields { + id: Float + move_learn_method_id: Float + version_group_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_versiongroupmovelearnmethod" +""" +input pokemon_v2_versiongroupmovelearnmethod_stddev_samp_order_by { + id: order_by + move_learn_method_id: order_by + version_group_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_versiongroupmovelearnmethod" +""" +input pokemon_v2_versiongroupmovelearnmethod_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_versiongroupmovelearnmethod_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_versiongroupmovelearnmethod_stream_cursor_value_input { + id: Int + move_learn_method_id: Int + version_group_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_versiongroupmovelearnmethod_sum_fields { + id: Int + move_learn_method_id: Int + version_group_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_versiongroupmovelearnmethod" +""" +input pokemon_v2_versiongroupmovelearnmethod_sum_order_by { + id: order_by + move_learn_method_id: order_by + version_group_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_versiongroupmovelearnmethod_var_pop_fields { + id: Float + move_learn_method_id: Float + version_group_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_versiongroupmovelearnmethod" +""" +input pokemon_v2_versiongroupmovelearnmethod_var_pop_order_by { + id: order_by + move_learn_method_id: order_by + version_group_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_versiongroupmovelearnmethod_var_samp_fields { + id: Float + move_learn_method_id: Float + version_group_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_versiongroupmovelearnmethod" +""" +input pokemon_v2_versiongroupmovelearnmethod_var_samp_order_by { + id: order_by + move_learn_method_id: order_by + version_group_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_versiongroupmovelearnmethod_variance_fields { + id: Float + move_learn_method_id: Float + version_group_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_versiongroupmovelearnmethod" +""" +input pokemon_v2_versiongroupmovelearnmethod_variance_order_by { + id: order_by + move_learn_method_id: order_by + version_group_id: order_by +} + +""" +columns and relationships of "pokemon_v2_versiongroupregion" +""" +type pokemon_v2_versiongroupregion { + id: Int! + + """An object relationship""" + pokemon_v2_region: pokemon_v2_region + + """An object relationship""" + pokemon_v2_versiongroup: pokemon_v2_versiongroup + region_id: Int + version_group_id: Int +} + +""" +aggregated selection of "pokemon_v2_versiongroupregion" +""" +type pokemon_v2_versiongroupregion_aggregate { + aggregate: pokemon_v2_versiongroupregion_aggregate_fields + nodes: [pokemon_v2_versiongroupregion!]! +} + +input pokemon_v2_versiongroupregion_aggregate_bool_exp { + count: pokemon_v2_versiongroupregion_aggregate_bool_exp_count +} + +input pokemon_v2_versiongroupregion_aggregate_bool_exp_count { + arguments: [pokemon_v2_versiongroupregion_select_column!] + distinct: Boolean + filter: pokemon_v2_versiongroupregion_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_versiongroupregion" +""" +type pokemon_v2_versiongroupregion_aggregate_fields { + avg: pokemon_v2_versiongroupregion_avg_fields + count(columns: [pokemon_v2_versiongroupregion_select_column!], distinct: Boolean): Int! + max: pokemon_v2_versiongroupregion_max_fields + min: pokemon_v2_versiongroupregion_min_fields + stddev: pokemon_v2_versiongroupregion_stddev_fields + stddev_pop: pokemon_v2_versiongroupregion_stddev_pop_fields + stddev_samp: pokemon_v2_versiongroupregion_stddev_samp_fields + sum: pokemon_v2_versiongroupregion_sum_fields + var_pop: pokemon_v2_versiongroupregion_var_pop_fields + var_samp: pokemon_v2_versiongroupregion_var_samp_fields + variance: pokemon_v2_versiongroupregion_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_versiongroupregion" +""" +input pokemon_v2_versiongroupregion_aggregate_order_by { + avg: pokemon_v2_versiongroupregion_avg_order_by + count: order_by + max: pokemon_v2_versiongroupregion_max_order_by + min: pokemon_v2_versiongroupregion_min_order_by + stddev: pokemon_v2_versiongroupregion_stddev_order_by + stddev_pop: pokemon_v2_versiongroupregion_stddev_pop_order_by + stddev_samp: pokemon_v2_versiongroupregion_stddev_samp_order_by + sum: pokemon_v2_versiongroupregion_sum_order_by + var_pop: pokemon_v2_versiongroupregion_var_pop_order_by + var_samp: pokemon_v2_versiongroupregion_var_samp_order_by + variance: pokemon_v2_versiongroupregion_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_versiongroupregion_avg_fields { + id: Float + region_id: Float + version_group_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_versiongroupregion" +""" +input pokemon_v2_versiongroupregion_avg_order_by { + id: order_by + region_id: order_by + version_group_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_versiongroupregion". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_versiongroupregion_bool_exp { + _and: [pokemon_v2_versiongroupregion_bool_exp!] + _not: pokemon_v2_versiongroupregion_bool_exp + _or: [pokemon_v2_versiongroupregion_bool_exp!] + id: Int_comparison_exp + pokemon_v2_region: pokemon_v2_region_bool_exp + pokemon_v2_versiongroup: pokemon_v2_versiongroup_bool_exp + region_id: Int_comparison_exp + version_group_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_versiongroupregion_max_fields { + id: Int + region_id: Int + version_group_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_versiongroupregion" +""" +input pokemon_v2_versiongroupregion_max_order_by { + id: order_by + region_id: order_by + version_group_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_versiongroupregion_min_fields { + id: Int + region_id: Int + version_group_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_versiongroupregion" +""" +input pokemon_v2_versiongroupregion_min_order_by { + id: order_by + region_id: order_by + version_group_id: order_by +} + +""" +Ordering options when selecting data from "pokemon_v2_versiongroupregion". +""" +input pokemon_v2_versiongroupregion_order_by { + id: order_by + pokemon_v2_region: pokemon_v2_region_order_by + pokemon_v2_versiongroup: pokemon_v2_versiongroup_order_by + region_id: order_by + version_group_id: order_by +} + +""" +select columns of table "pokemon_v2_versiongroupregion" +""" +enum pokemon_v2_versiongroupregion_select_column { + """column name""" + id + + """column name""" + region_id + + """column name""" + version_group_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_versiongroupregion_stddev_fields { + id: Float + region_id: Float + version_group_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_versiongroupregion" +""" +input pokemon_v2_versiongroupregion_stddev_order_by { + id: order_by + region_id: order_by + version_group_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_versiongroupregion_stddev_pop_fields { + id: Float + region_id: Float + version_group_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_versiongroupregion" +""" +input pokemon_v2_versiongroupregion_stddev_pop_order_by { + id: order_by + region_id: order_by + version_group_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_versiongroupregion_stddev_samp_fields { + id: Float + region_id: Float + version_group_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_versiongroupregion" +""" +input pokemon_v2_versiongroupregion_stddev_samp_order_by { + id: order_by + region_id: order_by + version_group_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_versiongroupregion" +""" +input pokemon_v2_versiongroupregion_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_versiongroupregion_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_versiongroupregion_stream_cursor_value_input { + id: Int + region_id: Int + version_group_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_versiongroupregion_sum_fields { + id: Int + region_id: Int + version_group_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_versiongroupregion" +""" +input pokemon_v2_versiongroupregion_sum_order_by { + id: order_by + region_id: order_by + version_group_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_versiongroupregion_var_pop_fields { + id: Float + region_id: Float + version_group_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_versiongroupregion" +""" +input pokemon_v2_versiongroupregion_var_pop_order_by { + id: order_by + region_id: order_by + version_group_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_versiongroupregion_var_samp_fields { + id: Float + region_id: Float + version_group_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_versiongroupregion" +""" +input pokemon_v2_versiongroupregion_var_samp_order_by { + id: order_by + region_id: order_by + version_group_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_versiongroupregion_variance_fields { + id: Float + region_id: Float + version_group_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_versiongroupregion" +""" +input pokemon_v2_versiongroupregion_variance_order_by { + id: order_by + region_id: order_by + version_group_id: order_by +} + +""" +columns and relationships of "pokemon_v2_versionname" +""" +type pokemon_v2_versionname { + id: Int! + language_id: Int + name: String! + + """An object relationship""" + pokemon_v2_language: pokemon_v2_language + + """An object relationship""" + pokemon_v2_version: pokemon_v2_version + version_id: Int +} + +""" +aggregated selection of "pokemon_v2_versionname" +""" +type pokemon_v2_versionname_aggregate { + aggregate: pokemon_v2_versionname_aggregate_fields + nodes: [pokemon_v2_versionname!]! +} + +input pokemon_v2_versionname_aggregate_bool_exp { + count: pokemon_v2_versionname_aggregate_bool_exp_count +} + +input pokemon_v2_versionname_aggregate_bool_exp_count { + arguments: [pokemon_v2_versionname_select_column!] + distinct: Boolean + filter: pokemon_v2_versionname_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "pokemon_v2_versionname" +""" +type pokemon_v2_versionname_aggregate_fields { + avg: pokemon_v2_versionname_avg_fields + count(columns: [pokemon_v2_versionname_select_column!], distinct: Boolean): Int! + max: pokemon_v2_versionname_max_fields + min: pokemon_v2_versionname_min_fields + stddev: pokemon_v2_versionname_stddev_fields + stddev_pop: pokemon_v2_versionname_stddev_pop_fields + stddev_samp: pokemon_v2_versionname_stddev_samp_fields + sum: pokemon_v2_versionname_sum_fields + var_pop: pokemon_v2_versionname_var_pop_fields + var_samp: pokemon_v2_versionname_var_samp_fields + variance: pokemon_v2_versionname_variance_fields +} + +""" +order by aggregate values of table "pokemon_v2_versionname" +""" +input pokemon_v2_versionname_aggregate_order_by { + avg: pokemon_v2_versionname_avg_order_by + count: order_by + max: pokemon_v2_versionname_max_order_by + min: pokemon_v2_versionname_min_order_by + stddev: pokemon_v2_versionname_stddev_order_by + stddev_pop: pokemon_v2_versionname_stddev_pop_order_by + stddev_samp: pokemon_v2_versionname_stddev_samp_order_by + sum: pokemon_v2_versionname_sum_order_by + var_pop: pokemon_v2_versionname_var_pop_order_by + var_samp: pokemon_v2_versionname_var_samp_order_by + variance: pokemon_v2_versionname_variance_order_by +} + +"""aggregate avg on columns""" +type pokemon_v2_versionname_avg_fields { + id: Float + language_id: Float + version_id: Float +} + +""" +order by avg() on columns of table "pokemon_v2_versionname" +""" +input pokemon_v2_versionname_avg_order_by { + id: order_by + language_id: order_by + version_id: order_by +} + +""" +Boolean expression to filter rows from the table "pokemon_v2_versionname". All fields are combined with a logical 'AND'. +""" +input pokemon_v2_versionname_bool_exp { + _and: [pokemon_v2_versionname_bool_exp!] + _not: pokemon_v2_versionname_bool_exp + _or: [pokemon_v2_versionname_bool_exp!] + id: Int_comparison_exp + language_id: Int_comparison_exp + name: String_comparison_exp + pokemon_v2_language: pokemon_v2_language_bool_exp + pokemon_v2_version: pokemon_v2_version_bool_exp + version_id: Int_comparison_exp +} + +"""aggregate max on columns""" +type pokemon_v2_versionname_max_fields { + id: Int + language_id: Int + name: String + version_id: Int +} + +""" +order by max() on columns of table "pokemon_v2_versionname" +""" +input pokemon_v2_versionname_max_order_by { + id: order_by + language_id: order_by + name: order_by + version_id: order_by +} + +"""aggregate min on columns""" +type pokemon_v2_versionname_min_fields { + id: Int + language_id: Int + name: String + version_id: Int +} + +""" +order by min() on columns of table "pokemon_v2_versionname" +""" +input pokemon_v2_versionname_min_order_by { + id: order_by + language_id: order_by + name: order_by + version_id: order_by +} + +"""Ordering options when selecting data from "pokemon_v2_versionname".""" +input pokemon_v2_versionname_order_by { + id: order_by + language_id: order_by + name: order_by + pokemon_v2_language: pokemon_v2_language_order_by + pokemon_v2_version: pokemon_v2_version_order_by + version_id: order_by +} + +""" +select columns of table "pokemon_v2_versionname" +""" +enum pokemon_v2_versionname_select_column { + """column name""" + id + + """column name""" + language_id + + """column name""" + name + + """column name""" + version_id +} + +"""aggregate stddev on columns""" +type pokemon_v2_versionname_stddev_fields { + id: Float + language_id: Float + version_id: Float +} + +""" +order by stddev() on columns of table "pokemon_v2_versionname" +""" +input pokemon_v2_versionname_stddev_order_by { + id: order_by + language_id: order_by + version_id: order_by +} + +"""aggregate stddev_pop on columns""" +type pokemon_v2_versionname_stddev_pop_fields { + id: Float + language_id: Float + version_id: Float +} + +""" +order by stddev_pop() on columns of table "pokemon_v2_versionname" +""" +input pokemon_v2_versionname_stddev_pop_order_by { + id: order_by + language_id: order_by + version_id: order_by +} + +"""aggregate stddev_samp on columns""" +type pokemon_v2_versionname_stddev_samp_fields { + id: Float + language_id: Float + version_id: Float +} + +""" +order by stddev_samp() on columns of table "pokemon_v2_versionname" +""" +input pokemon_v2_versionname_stddev_samp_order_by { + id: order_by + language_id: order_by + version_id: order_by +} + +""" +Streaming cursor of the table "pokemon_v2_versionname" +""" +input pokemon_v2_versionname_stream_cursor_input { + """Stream column input with initial value""" + initial_value: pokemon_v2_versionname_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input pokemon_v2_versionname_stream_cursor_value_input { + id: Int + language_id: Int + name: String + version_id: Int +} + +"""aggregate sum on columns""" +type pokemon_v2_versionname_sum_fields { + id: Int + language_id: Int + version_id: Int +} + +""" +order by sum() on columns of table "pokemon_v2_versionname" +""" +input pokemon_v2_versionname_sum_order_by { + id: order_by + language_id: order_by + version_id: order_by +} + +"""aggregate var_pop on columns""" +type pokemon_v2_versionname_var_pop_fields { + id: Float + language_id: Float + version_id: Float +} + +""" +order by var_pop() on columns of table "pokemon_v2_versionname" +""" +input pokemon_v2_versionname_var_pop_order_by { + id: order_by + language_id: order_by + version_id: order_by +} + +"""aggregate var_samp on columns""" +type pokemon_v2_versionname_var_samp_fields { + id: Float + language_id: Float + version_id: Float +} + +""" +order by var_samp() on columns of table "pokemon_v2_versionname" +""" +input pokemon_v2_versionname_var_samp_order_by { + id: order_by + language_id: order_by + version_id: order_by +} + +"""aggregate variance on columns""" +type pokemon_v2_versionname_variance_fields { + id: Float + language_id: Float + version_id: Float +} + +""" +order by variance() on columns of table "pokemon_v2_versionname" +""" +input pokemon_v2_versionname_variance_order_by { + id: order_by + language_id: order_by + version_id: order_by +} + +type query_root { + """ + fetch data from the table: "pokemon_v2_ability" + """ + pokemon_v2_ability( + """distinct select on columns""" + distinct_on: [pokemon_v2_ability_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_ability_order_by!] + + """filter the rows returned""" + where: pokemon_v2_ability_bool_exp + ): [pokemon_v2_ability!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_ability" + """ + pokemon_v2_ability_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_ability_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_ability_order_by!] + + """filter the rows returned""" + where: pokemon_v2_ability_bool_exp + ): pokemon_v2_ability_aggregate! + + """ + fetch data from the table: "pokemon_v2_ability" using primary key columns + """ + pokemon_v2_ability_by_pk(id: Int!): pokemon_v2_ability + + """ + fetch data from the table: "pokemon_v2_abilitychange" + """ + pokemon_v2_abilitychange( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilitychange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilitychange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilitychange_bool_exp + ): [pokemon_v2_abilitychange!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_abilitychange" + """ + pokemon_v2_abilitychange_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilitychange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilitychange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilitychange_bool_exp + ): pokemon_v2_abilitychange_aggregate! + + """ + fetch data from the table: "pokemon_v2_abilitychange" using primary key columns + """ + pokemon_v2_abilitychange_by_pk(id: Int!): pokemon_v2_abilitychange + + """ + fetch data from the table: "pokemon_v2_abilitychangeeffecttext" + """ + pokemon_v2_abilitychangeeffecttext( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilitychangeeffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilitychangeeffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilitychangeeffecttext_bool_exp + ): [pokemon_v2_abilitychangeeffecttext!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_abilitychangeeffecttext" + """ + pokemon_v2_abilitychangeeffecttext_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilitychangeeffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilitychangeeffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilitychangeeffecttext_bool_exp + ): pokemon_v2_abilitychangeeffecttext_aggregate! + + """ + fetch data from the table: "pokemon_v2_abilitychangeeffecttext" using primary key columns + """ + pokemon_v2_abilitychangeeffecttext_by_pk(id: Int!): pokemon_v2_abilitychangeeffecttext + + """ + fetch data from the table: "pokemon_v2_abilityeffecttext" + """ + pokemon_v2_abilityeffecttext( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilityeffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilityeffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilityeffecttext_bool_exp + ): [pokemon_v2_abilityeffecttext!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_abilityeffecttext" + """ + pokemon_v2_abilityeffecttext_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilityeffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilityeffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilityeffecttext_bool_exp + ): pokemon_v2_abilityeffecttext_aggregate! + + """ + fetch data from the table: "pokemon_v2_abilityeffecttext" using primary key columns + """ + pokemon_v2_abilityeffecttext_by_pk(id: Int!): pokemon_v2_abilityeffecttext + + """ + fetch data from the table: "pokemon_v2_abilityflavortext" + """ + pokemon_v2_abilityflavortext( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilityflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilityflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilityflavortext_bool_exp + ): [pokemon_v2_abilityflavortext!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_abilityflavortext" + """ + pokemon_v2_abilityflavortext_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilityflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilityflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilityflavortext_bool_exp + ): pokemon_v2_abilityflavortext_aggregate! + + """ + fetch data from the table: "pokemon_v2_abilityflavortext" using primary key columns + """ + pokemon_v2_abilityflavortext_by_pk(id: Int!): pokemon_v2_abilityflavortext + + """ + fetch data from the table: "pokemon_v2_abilityname" + """ + pokemon_v2_abilityname( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilityname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilityname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilityname_bool_exp + ): [pokemon_v2_abilityname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_abilityname" + """ + pokemon_v2_abilityname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilityname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilityname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilityname_bool_exp + ): pokemon_v2_abilityname_aggregate! + + """ + fetch data from the table: "pokemon_v2_abilityname" using primary key columns + """ + pokemon_v2_abilityname_by_pk(id: Int!): pokemon_v2_abilityname + + """ + fetch data from the table: "pokemon_v2_berry" + """ + pokemon_v2_berry( + """distinct select on columns""" + distinct_on: [pokemon_v2_berry_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berry_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berry_bool_exp + ): [pokemon_v2_berry!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_berry" + """ + pokemon_v2_berry_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_berry_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berry_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berry_bool_exp + ): pokemon_v2_berry_aggregate! + + """ + fetch data from the table: "pokemon_v2_berry" using primary key columns + """ + pokemon_v2_berry_by_pk(id: Int!): pokemon_v2_berry + + """ + fetch data from the table: "pokemon_v2_berryfirmness" + """ + pokemon_v2_berryfirmness( + """distinct select on columns""" + distinct_on: [pokemon_v2_berryfirmness_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berryfirmness_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berryfirmness_bool_exp + ): [pokemon_v2_berryfirmness!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_berryfirmness" + """ + pokemon_v2_berryfirmness_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_berryfirmness_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berryfirmness_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berryfirmness_bool_exp + ): pokemon_v2_berryfirmness_aggregate! + + """ + fetch data from the table: "pokemon_v2_berryfirmness" using primary key columns + """ + pokemon_v2_berryfirmness_by_pk(id: Int!): pokemon_v2_berryfirmness + + """ + fetch data from the table: "pokemon_v2_berryfirmnessname" + """ + pokemon_v2_berryfirmnessname( + """distinct select on columns""" + distinct_on: [pokemon_v2_berryfirmnessname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berryfirmnessname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berryfirmnessname_bool_exp + ): [pokemon_v2_berryfirmnessname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_berryfirmnessname" + """ + pokemon_v2_berryfirmnessname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_berryfirmnessname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berryfirmnessname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berryfirmnessname_bool_exp + ): pokemon_v2_berryfirmnessname_aggregate! + + """ + fetch data from the table: "pokemon_v2_berryfirmnessname" using primary key columns + """ + pokemon_v2_berryfirmnessname_by_pk(id: Int!): pokemon_v2_berryfirmnessname + + """ + fetch data from the table: "pokemon_v2_berryflavor" + """ + pokemon_v2_berryflavor( + """distinct select on columns""" + distinct_on: [pokemon_v2_berryflavor_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berryflavor_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berryflavor_bool_exp + ): [pokemon_v2_berryflavor!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_berryflavor" + """ + pokemon_v2_berryflavor_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_berryflavor_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berryflavor_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berryflavor_bool_exp + ): pokemon_v2_berryflavor_aggregate! + + """ + fetch data from the table: "pokemon_v2_berryflavor" using primary key columns + """ + pokemon_v2_berryflavor_by_pk(id: Int!): pokemon_v2_berryflavor + + """ + fetch data from the table: "pokemon_v2_berryflavormap" + """ + pokemon_v2_berryflavormap( + """distinct select on columns""" + distinct_on: [pokemon_v2_berryflavormap_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berryflavormap_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berryflavormap_bool_exp + ): [pokemon_v2_berryflavormap!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_berryflavormap" + """ + pokemon_v2_berryflavormap_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_berryflavormap_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berryflavormap_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berryflavormap_bool_exp + ): pokemon_v2_berryflavormap_aggregate! + + """ + fetch data from the table: "pokemon_v2_berryflavormap" using primary key columns + """ + pokemon_v2_berryflavormap_by_pk(id: Int!): pokemon_v2_berryflavormap + + """ + fetch data from the table: "pokemon_v2_berryflavorname" + """ + pokemon_v2_berryflavorname( + """distinct select on columns""" + distinct_on: [pokemon_v2_berryflavorname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berryflavorname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berryflavorname_bool_exp + ): [pokemon_v2_berryflavorname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_berryflavorname" + """ + pokemon_v2_berryflavorname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_berryflavorname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berryflavorname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berryflavorname_bool_exp + ): pokemon_v2_berryflavorname_aggregate! + + """ + fetch data from the table: "pokemon_v2_berryflavorname" using primary key columns + """ + pokemon_v2_berryflavorname_by_pk(id: Int!): pokemon_v2_berryflavorname + + """ + fetch data from the table: "pokemon_v2_characteristic" + """ + pokemon_v2_characteristic( + """distinct select on columns""" + distinct_on: [pokemon_v2_characteristic_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_characteristic_order_by!] + + """filter the rows returned""" + where: pokemon_v2_characteristic_bool_exp + ): [pokemon_v2_characteristic!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_characteristic" + """ + pokemon_v2_characteristic_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_characteristic_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_characteristic_order_by!] + + """filter the rows returned""" + where: pokemon_v2_characteristic_bool_exp + ): pokemon_v2_characteristic_aggregate! + + """ + fetch data from the table: "pokemon_v2_characteristic" using primary key columns + """ + pokemon_v2_characteristic_by_pk(id: Int!): pokemon_v2_characteristic + + """ + fetch data from the table: "pokemon_v2_characteristicdescription" + """ + pokemon_v2_characteristicdescription( + """distinct select on columns""" + distinct_on: [pokemon_v2_characteristicdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_characteristicdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_characteristicdescription_bool_exp + ): [pokemon_v2_characteristicdescription!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_characteristicdescription" + """ + pokemon_v2_characteristicdescription_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_characteristicdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_characteristicdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_characteristicdescription_bool_exp + ): pokemon_v2_characteristicdescription_aggregate! + + """ + fetch data from the table: "pokemon_v2_characteristicdescription" using primary key columns + """ + pokemon_v2_characteristicdescription_by_pk(id: Int!): pokemon_v2_characteristicdescription + + """ + fetch data from the table: "pokemon_v2_contestcombo" + """ + pokemon_v2_contestcombo( + """distinct select on columns""" + distinct_on: [pokemon_v2_contestcombo_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contestcombo_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contestcombo_bool_exp + ): [pokemon_v2_contestcombo!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_contestcombo" + """ + pokemon_v2_contestcombo_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_contestcombo_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contestcombo_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contestcombo_bool_exp + ): pokemon_v2_contestcombo_aggregate! + + """ + fetch data from the table: "pokemon_v2_contestcombo" using primary key columns + """ + pokemon_v2_contestcombo_by_pk(id: Int!): pokemon_v2_contestcombo + + """ + fetch data from the table: "pokemon_v2_contesteffect" + """ + pokemon_v2_contesteffect( + """distinct select on columns""" + distinct_on: [pokemon_v2_contesteffect_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contesteffect_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contesteffect_bool_exp + ): [pokemon_v2_contesteffect!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_contesteffect" + """ + pokemon_v2_contesteffect_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_contesteffect_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contesteffect_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contesteffect_bool_exp + ): pokemon_v2_contesteffect_aggregate! + + """ + fetch data from the table: "pokemon_v2_contesteffect" using primary key columns + """ + pokemon_v2_contesteffect_by_pk(id: Int!): pokemon_v2_contesteffect + + """ + fetch data from the table: "pokemon_v2_contesteffecteffecttext" + """ + pokemon_v2_contesteffecteffecttext( + """distinct select on columns""" + distinct_on: [pokemon_v2_contesteffecteffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contesteffecteffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contesteffecteffecttext_bool_exp + ): [pokemon_v2_contesteffecteffecttext!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_contesteffecteffecttext" + """ + pokemon_v2_contesteffecteffecttext_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_contesteffecteffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contesteffecteffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contesteffecteffecttext_bool_exp + ): pokemon_v2_contesteffecteffecttext_aggregate! + + """ + fetch data from the table: "pokemon_v2_contesteffecteffecttext" using primary key columns + """ + pokemon_v2_contesteffecteffecttext_by_pk(id: Int!): pokemon_v2_contesteffecteffecttext + + """ + fetch data from the table: "pokemon_v2_contesteffectflavortext" + """ + pokemon_v2_contesteffectflavortext( + """distinct select on columns""" + distinct_on: [pokemon_v2_contesteffectflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contesteffectflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contesteffectflavortext_bool_exp + ): [pokemon_v2_contesteffectflavortext!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_contesteffectflavortext" + """ + pokemon_v2_contesteffectflavortext_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_contesteffectflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contesteffectflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contesteffectflavortext_bool_exp + ): pokemon_v2_contesteffectflavortext_aggregate! + + """ + fetch data from the table: "pokemon_v2_contesteffectflavortext" using primary key columns + """ + pokemon_v2_contesteffectflavortext_by_pk(id: Int!): pokemon_v2_contesteffectflavortext + + """ + fetch data from the table: "pokemon_v2_contesttype" + """ + pokemon_v2_contesttype( + """distinct select on columns""" + distinct_on: [pokemon_v2_contesttype_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contesttype_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contesttype_bool_exp + ): [pokemon_v2_contesttype!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_contesttype" + """ + pokemon_v2_contesttype_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_contesttype_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contesttype_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contesttype_bool_exp + ): pokemon_v2_contesttype_aggregate! + + """ + fetch data from the table: "pokemon_v2_contesttype" using primary key columns + """ + pokemon_v2_contesttype_by_pk(id: Int!): pokemon_v2_contesttype + + """ + fetch data from the table: "pokemon_v2_contesttypename" + """ + pokemon_v2_contesttypename( + """distinct select on columns""" + distinct_on: [pokemon_v2_contesttypename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contesttypename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contesttypename_bool_exp + ): [pokemon_v2_contesttypename!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_contesttypename" + """ + pokemon_v2_contesttypename_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_contesttypename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contesttypename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contesttypename_bool_exp + ): pokemon_v2_contesttypename_aggregate! + + """ + fetch data from the table: "pokemon_v2_contesttypename" using primary key columns + """ + pokemon_v2_contesttypename_by_pk(id: Int!): pokemon_v2_contesttypename + + """ + fetch data from the table: "pokemon_v2_egggroup" + """ + pokemon_v2_egggroup( + """distinct select on columns""" + distinct_on: [pokemon_v2_egggroup_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_egggroup_order_by!] + + """filter the rows returned""" + where: pokemon_v2_egggroup_bool_exp + ): [pokemon_v2_egggroup!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_egggroup" + """ + pokemon_v2_egggroup_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_egggroup_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_egggroup_order_by!] + + """filter the rows returned""" + where: pokemon_v2_egggroup_bool_exp + ): pokemon_v2_egggroup_aggregate! + + """ + fetch data from the table: "pokemon_v2_egggroup" using primary key columns + """ + pokemon_v2_egggroup_by_pk(id: Int!): pokemon_v2_egggroup + + """ + fetch data from the table: "pokemon_v2_egggroupname" + """ + pokemon_v2_egggroupname( + """distinct select on columns""" + distinct_on: [pokemon_v2_egggroupname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_egggroupname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_egggroupname_bool_exp + ): [pokemon_v2_egggroupname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_egggroupname" + """ + pokemon_v2_egggroupname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_egggroupname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_egggroupname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_egggroupname_bool_exp + ): pokemon_v2_egggroupname_aggregate! + + """ + fetch data from the table: "pokemon_v2_egggroupname" using primary key columns + """ + pokemon_v2_egggroupname_by_pk(id: Int!): pokemon_v2_egggroupname + + """ + fetch data from the table: "pokemon_v2_encounter" + """ + pokemon_v2_encounter( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounter_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounter_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounter_bool_exp + ): [pokemon_v2_encounter!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_encounter" + """ + pokemon_v2_encounter_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounter_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounter_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounter_bool_exp + ): pokemon_v2_encounter_aggregate! + + """ + fetch data from the table: "pokemon_v2_encounter" using primary key columns + """ + pokemon_v2_encounter_by_pk(id: Int!): pokemon_v2_encounter + + """ + fetch data from the table: "pokemon_v2_encountercondition" + """ + pokemon_v2_encountercondition( + """distinct select on columns""" + distinct_on: [pokemon_v2_encountercondition_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encountercondition_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encountercondition_bool_exp + ): [pokemon_v2_encountercondition!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_encountercondition" + """ + pokemon_v2_encountercondition_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_encountercondition_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encountercondition_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encountercondition_bool_exp + ): pokemon_v2_encountercondition_aggregate! + + """ + fetch data from the table: "pokemon_v2_encountercondition" using primary key columns + """ + pokemon_v2_encountercondition_by_pk(id: Int!): pokemon_v2_encountercondition + + """ + fetch data from the table: "pokemon_v2_encounterconditionname" + """ + pokemon_v2_encounterconditionname( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterconditionname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterconditionname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterconditionname_bool_exp + ): [pokemon_v2_encounterconditionname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_encounterconditionname" + """ + pokemon_v2_encounterconditionname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterconditionname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterconditionname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterconditionname_bool_exp + ): pokemon_v2_encounterconditionname_aggregate! + + """ + fetch data from the table: "pokemon_v2_encounterconditionname" using primary key columns + """ + pokemon_v2_encounterconditionname_by_pk(id: Int!): pokemon_v2_encounterconditionname + + """ + fetch data from the table: "pokemon_v2_encounterconditionvalue" + """ + pokemon_v2_encounterconditionvalue( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterconditionvalue_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterconditionvalue_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterconditionvalue_bool_exp + ): [pokemon_v2_encounterconditionvalue!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_encounterconditionvalue" + """ + pokemon_v2_encounterconditionvalue_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterconditionvalue_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterconditionvalue_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterconditionvalue_bool_exp + ): pokemon_v2_encounterconditionvalue_aggregate! + + """ + fetch data from the table: "pokemon_v2_encounterconditionvalue" using primary key columns + """ + pokemon_v2_encounterconditionvalue_by_pk(id: Int!): pokemon_v2_encounterconditionvalue + + """ + fetch data from the table: "pokemon_v2_encounterconditionvaluemap" + """ + pokemon_v2_encounterconditionvaluemap( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterconditionvaluemap_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterconditionvaluemap_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterconditionvaluemap_bool_exp + ): [pokemon_v2_encounterconditionvaluemap!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_encounterconditionvaluemap" + """ + pokemon_v2_encounterconditionvaluemap_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterconditionvaluemap_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterconditionvaluemap_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterconditionvaluemap_bool_exp + ): pokemon_v2_encounterconditionvaluemap_aggregate! + + """ + fetch data from the table: "pokemon_v2_encounterconditionvaluemap" using primary key columns + """ + pokemon_v2_encounterconditionvaluemap_by_pk(id: Int!): pokemon_v2_encounterconditionvaluemap + + """ + fetch data from the table: "pokemon_v2_encounterconditionvaluename" + """ + pokemon_v2_encounterconditionvaluename( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterconditionvaluename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterconditionvaluename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterconditionvaluename_bool_exp + ): [pokemon_v2_encounterconditionvaluename!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_encounterconditionvaluename" + """ + pokemon_v2_encounterconditionvaluename_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterconditionvaluename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterconditionvaluename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterconditionvaluename_bool_exp + ): pokemon_v2_encounterconditionvaluename_aggregate! + + """ + fetch data from the table: "pokemon_v2_encounterconditionvaluename" using primary key columns + """ + pokemon_v2_encounterconditionvaluename_by_pk(id: Int!): pokemon_v2_encounterconditionvaluename + + """ + fetch data from the table: "pokemon_v2_encountermethod" + """ + pokemon_v2_encountermethod( + """distinct select on columns""" + distinct_on: [pokemon_v2_encountermethod_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encountermethod_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encountermethod_bool_exp + ): [pokemon_v2_encountermethod!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_encountermethod" + """ + pokemon_v2_encountermethod_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_encountermethod_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encountermethod_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encountermethod_bool_exp + ): pokemon_v2_encountermethod_aggregate! + + """ + fetch data from the table: "pokemon_v2_encountermethod" using primary key columns + """ + pokemon_v2_encountermethod_by_pk(id: Int!): pokemon_v2_encountermethod + + """ + fetch data from the table: "pokemon_v2_encountermethodname" + """ + pokemon_v2_encountermethodname( + """distinct select on columns""" + distinct_on: [pokemon_v2_encountermethodname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encountermethodname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encountermethodname_bool_exp + ): [pokemon_v2_encountermethodname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_encountermethodname" + """ + pokemon_v2_encountermethodname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_encountermethodname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encountermethodname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encountermethodname_bool_exp + ): pokemon_v2_encountermethodname_aggregate! + + """ + fetch data from the table: "pokemon_v2_encountermethodname" using primary key columns + """ + pokemon_v2_encountermethodname_by_pk(id: Int!): pokemon_v2_encountermethodname + + """ + fetch data from the table: "pokemon_v2_encounterslot" + """ + pokemon_v2_encounterslot( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterslot_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterslot_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterslot_bool_exp + ): [pokemon_v2_encounterslot!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_encounterslot" + """ + pokemon_v2_encounterslot_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterslot_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterslot_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterslot_bool_exp + ): pokemon_v2_encounterslot_aggregate! + + """ + fetch data from the table: "pokemon_v2_encounterslot" using primary key columns + """ + pokemon_v2_encounterslot_by_pk(id: Int!): pokemon_v2_encounterslot + + """ + fetch data from the table: "pokemon_v2_evolutionchain" + """ + pokemon_v2_evolutionchain( + """distinct select on columns""" + distinct_on: [pokemon_v2_evolutionchain_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_evolutionchain_order_by!] + + """filter the rows returned""" + where: pokemon_v2_evolutionchain_bool_exp + ): [pokemon_v2_evolutionchain!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_evolutionchain" + """ + pokemon_v2_evolutionchain_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_evolutionchain_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_evolutionchain_order_by!] + + """filter the rows returned""" + where: pokemon_v2_evolutionchain_bool_exp + ): pokemon_v2_evolutionchain_aggregate! + + """ + fetch data from the table: "pokemon_v2_evolutionchain" using primary key columns + """ + pokemon_v2_evolutionchain_by_pk(id: Int!): pokemon_v2_evolutionchain + + """ + fetch data from the table: "pokemon_v2_evolutiontrigger" + """ + pokemon_v2_evolutiontrigger( + """distinct select on columns""" + distinct_on: [pokemon_v2_evolutiontrigger_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_evolutiontrigger_order_by!] + + """filter the rows returned""" + where: pokemon_v2_evolutiontrigger_bool_exp + ): [pokemon_v2_evolutiontrigger!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_evolutiontrigger" + """ + pokemon_v2_evolutiontrigger_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_evolutiontrigger_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_evolutiontrigger_order_by!] + + """filter the rows returned""" + where: pokemon_v2_evolutiontrigger_bool_exp + ): pokemon_v2_evolutiontrigger_aggregate! + + """ + fetch data from the table: "pokemon_v2_evolutiontrigger" using primary key columns + """ + pokemon_v2_evolutiontrigger_by_pk(id: Int!): pokemon_v2_evolutiontrigger + + """ + fetch data from the table: "pokemon_v2_evolutiontriggername" + """ + pokemon_v2_evolutiontriggername( + """distinct select on columns""" + distinct_on: [pokemon_v2_evolutiontriggername_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_evolutiontriggername_order_by!] + + """filter the rows returned""" + where: pokemon_v2_evolutiontriggername_bool_exp + ): [pokemon_v2_evolutiontriggername!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_evolutiontriggername" + """ + pokemon_v2_evolutiontriggername_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_evolutiontriggername_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_evolutiontriggername_order_by!] + + """filter the rows returned""" + where: pokemon_v2_evolutiontriggername_bool_exp + ): pokemon_v2_evolutiontriggername_aggregate! + + """ + fetch data from the table: "pokemon_v2_evolutiontriggername" using primary key columns + """ + pokemon_v2_evolutiontriggername_by_pk(id: Int!): pokemon_v2_evolutiontriggername + + """ + fetch data from the table: "pokemon_v2_experience" + """ + pokemon_v2_experience( + """distinct select on columns""" + distinct_on: [pokemon_v2_experience_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_experience_order_by!] + + """filter the rows returned""" + where: pokemon_v2_experience_bool_exp + ): [pokemon_v2_experience!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_experience" + """ + pokemon_v2_experience_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_experience_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_experience_order_by!] + + """filter the rows returned""" + where: pokemon_v2_experience_bool_exp + ): pokemon_v2_experience_aggregate! + + """ + fetch data from the table: "pokemon_v2_experience" using primary key columns + """ + pokemon_v2_experience_by_pk(id: Int!): pokemon_v2_experience + + """ + fetch data from the table: "pokemon_v2_gender" + """ + pokemon_v2_gender( + """distinct select on columns""" + distinct_on: [pokemon_v2_gender_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_gender_order_by!] + + """filter the rows returned""" + where: pokemon_v2_gender_bool_exp + ): [pokemon_v2_gender!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_gender" + """ + pokemon_v2_gender_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_gender_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_gender_order_by!] + + """filter the rows returned""" + where: pokemon_v2_gender_bool_exp + ): pokemon_v2_gender_aggregate! + + """ + fetch data from the table: "pokemon_v2_gender" using primary key columns + """ + pokemon_v2_gender_by_pk(id: Int!): pokemon_v2_gender + + """ + fetch data from the table: "pokemon_v2_generation" + """ + pokemon_v2_generation( + """distinct select on columns""" + distinct_on: [pokemon_v2_generation_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_generation_order_by!] + + """filter the rows returned""" + where: pokemon_v2_generation_bool_exp + ): [pokemon_v2_generation!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_generation" + """ + pokemon_v2_generation_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_generation_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_generation_order_by!] + + """filter the rows returned""" + where: pokemon_v2_generation_bool_exp + ): pokemon_v2_generation_aggregate! + + """ + fetch data from the table: "pokemon_v2_generation" using primary key columns + """ + pokemon_v2_generation_by_pk(id: Int!): pokemon_v2_generation + + """ + fetch data from the table: "pokemon_v2_generationname" + """ + pokemon_v2_generationname( + """distinct select on columns""" + distinct_on: [pokemon_v2_generationname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_generationname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_generationname_bool_exp + ): [pokemon_v2_generationname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_generationname" + """ + pokemon_v2_generationname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_generationname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_generationname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_generationname_bool_exp + ): pokemon_v2_generationname_aggregate! + + """ + fetch data from the table: "pokemon_v2_generationname" using primary key columns + """ + pokemon_v2_generationname_by_pk(id: Int!): pokemon_v2_generationname + + """ + fetch data from the table: "pokemon_v2_growthrate" + """ + pokemon_v2_growthrate( + """distinct select on columns""" + distinct_on: [pokemon_v2_growthrate_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_growthrate_order_by!] + + """filter the rows returned""" + where: pokemon_v2_growthrate_bool_exp + ): [pokemon_v2_growthrate!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_growthrate" + """ + pokemon_v2_growthrate_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_growthrate_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_growthrate_order_by!] + + """filter the rows returned""" + where: pokemon_v2_growthrate_bool_exp + ): pokemon_v2_growthrate_aggregate! + + """ + fetch data from the table: "pokemon_v2_growthrate" using primary key columns + """ + pokemon_v2_growthrate_by_pk(id: Int!): pokemon_v2_growthrate + + """ + fetch data from the table: "pokemon_v2_growthratedescription" + """ + pokemon_v2_growthratedescription( + """distinct select on columns""" + distinct_on: [pokemon_v2_growthratedescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_growthratedescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_growthratedescription_bool_exp + ): [pokemon_v2_growthratedescription!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_growthratedescription" + """ + pokemon_v2_growthratedescription_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_growthratedescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_growthratedescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_growthratedescription_bool_exp + ): pokemon_v2_growthratedescription_aggregate! + + """ + fetch data from the table: "pokemon_v2_growthratedescription" using primary key columns + """ + pokemon_v2_growthratedescription_by_pk(id: Int!): pokemon_v2_growthratedescription + + """ + fetch data from the table: "pokemon_v2_item" + """ + pokemon_v2_item( + """distinct select on columns""" + distinct_on: [pokemon_v2_item_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_item_order_by!] + + """filter the rows returned""" + where: pokemon_v2_item_bool_exp + ): [pokemon_v2_item!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_item" + """ + pokemon_v2_item_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_item_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_item_order_by!] + + """filter the rows returned""" + where: pokemon_v2_item_bool_exp + ): pokemon_v2_item_aggregate! + + """fetch data from the table: "pokemon_v2_item" using primary key columns""" + pokemon_v2_item_by_pk(id: Int!): pokemon_v2_item + + """ + fetch data from the table: "pokemon_v2_itemattribute" + """ + pokemon_v2_itemattribute( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemattribute_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemattribute_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemattribute_bool_exp + ): [pokemon_v2_itemattribute!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_itemattribute" + """ + pokemon_v2_itemattribute_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemattribute_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemattribute_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemattribute_bool_exp + ): pokemon_v2_itemattribute_aggregate! + + """ + fetch data from the table: "pokemon_v2_itemattribute" using primary key columns + """ + pokemon_v2_itemattribute_by_pk(id: Int!): pokemon_v2_itemattribute + + """ + fetch data from the table: "pokemon_v2_itemattributedescription" + """ + pokemon_v2_itemattributedescription( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemattributedescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemattributedescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemattributedescription_bool_exp + ): [pokemon_v2_itemattributedescription!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_itemattributedescription" + """ + pokemon_v2_itemattributedescription_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemattributedescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemattributedescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemattributedescription_bool_exp + ): pokemon_v2_itemattributedescription_aggregate! + + """ + fetch data from the table: "pokemon_v2_itemattributedescription" using primary key columns + """ + pokemon_v2_itemattributedescription_by_pk(id: Int!): pokemon_v2_itemattributedescription + + """ + fetch data from the table: "pokemon_v2_itemattributemap" + """ + pokemon_v2_itemattributemap( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemattributemap_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemattributemap_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemattributemap_bool_exp + ): [pokemon_v2_itemattributemap!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_itemattributemap" + """ + pokemon_v2_itemattributemap_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemattributemap_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemattributemap_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemattributemap_bool_exp + ): pokemon_v2_itemattributemap_aggregate! + + """ + fetch data from the table: "pokemon_v2_itemattributemap" using primary key columns + """ + pokemon_v2_itemattributemap_by_pk(id: Int!): pokemon_v2_itemattributemap + + """ + fetch data from the table: "pokemon_v2_itemattributename" + """ + pokemon_v2_itemattributename( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemattributename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemattributename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemattributename_bool_exp + ): [pokemon_v2_itemattributename!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_itemattributename" + """ + pokemon_v2_itemattributename_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemattributename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemattributename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemattributename_bool_exp + ): pokemon_v2_itemattributename_aggregate! + + """ + fetch data from the table: "pokemon_v2_itemattributename" using primary key columns + """ + pokemon_v2_itemattributename_by_pk(id: Int!): pokemon_v2_itemattributename + + """ + fetch data from the table: "pokemon_v2_itemcategory" + """ + pokemon_v2_itemcategory( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemcategory_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemcategory_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemcategory_bool_exp + ): [pokemon_v2_itemcategory!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_itemcategory" + """ + pokemon_v2_itemcategory_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemcategory_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemcategory_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemcategory_bool_exp + ): pokemon_v2_itemcategory_aggregate! + + """ + fetch data from the table: "pokemon_v2_itemcategory" using primary key columns + """ + pokemon_v2_itemcategory_by_pk(id: Int!): pokemon_v2_itemcategory + + """ + fetch data from the table: "pokemon_v2_itemcategoryname" + """ + pokemon_v2_itemcategoryname( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemcategoryname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemcategoryname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemcategoryname_bool_exp + ): [pokemon_v2_itemcategoryname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_itemcategoryname" + """ + pokemon_v2_itemcategoryname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemcategoryname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemcategoryname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemcategoryname_bool_exp + ): pokemon_v2_itemcategoryname_aggregate! + + """ + fetch data from the table: "pokemon_v2_itemcategoryname" using primary key columns + """ + pokemon_v2_itemcategoryname_by_pk(id: Int!): pokemon_v2_itemcategoryname + + """ + fetch data from the table: "pokemon_v2_itemeffecttext" + """ + pokemon_v2_itemeffecttext( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemeffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemeffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemeffecttext_bool_exp + ): [pokemon_v2_itemeffecttext!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_itemeffecttext" + """ + pokemon_v2_itemeffecttext_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemeffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemeffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemeffecttext_bool_exp + ): pokemon_v2_itemeffecttext_aggregate! + + """ + fetch data from the table: "pokemon_v2_itemeffecttext" using primary key columns + """ + pokemon_v2_itemeffecttext_by_pk(id: Int!): pokemon_v2_itemeffecttext + + """ + fetch data from the table: "pokemon_v2_itemflavortext" + """ + pokemon_v2_itemflavortext( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemflavortext_bool_exp + ): [pokemon_v2_itemflavortext!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_itemflavortext" + """ + pokemon_v2_itemflavortext_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemflavortext_bool_exp + ): pokemon_v2_itemflavortext_aggregate! + + """ + fetch data from the table: "pokemon_v2_itemflavortext" using primary key columns + """ + pokemon_v2_itemflavortext_by_pk(id: Int!): pokemon_v2_itemflavortext + + """ + fetch data from the table: "pokemon_v2_itemflingeffect" + """ + pokemon_v2_itemflingeffect( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemflingeffect_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemflingeffect_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemflingeffect_bool_exp + ): [pokemon_v2_itemflingeffect!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_itemflingeffect" + """ + pokemon_v2_itemflingeffect_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemflingeffect_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemflingeffect_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemflingeffect_bool_exp + ): pokemon_v2_itemflingeffect_aggregate! + + """ + fetch data from the table: "pokemon_v2_itemflingeffect" using primary key columns + """ + pokemon_v2_itemflingeffect_by_pk(id: Int!): pokemon_v2_itemflingeffect + + """ + fetch data from the table: "pokemon_v2_itemflingeffecteffecttext" + """ + pokemon_v2_itemflingeffecteffecttext( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemflingeffecteffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemflingeffecteffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemflingeffecteffecttext_bool_exp + ): [pokemon_v2_itemflingeffecteffecttext!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_itemflingeffecteffecttext" + """ + pokemon_v2_itemflingeffecteffecttext_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemflingeffecteffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemflingeffecteffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemflingeffecteffecttext_bool_exp + ): pokemon_v2_itemflingeffecteffecttext_aggregate! + + """ + fetch data from the table: "pokemon_v2_itemflingeffecteffecttext" using primary key columns + """ + pokemon_v2_itemflingeffecteffecttext_by_pk(id: Int!): pokemon_v2_itemflingeffecteffecttext + + """ + fetch data from the table: "pokemon_v2_itemgameindex" + """ + pokemon_v2_itemgameindex( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemgameindex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemgameindex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemgameindex_bool_exp + ): [pokemon_v2_itemgameindex!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_itemgameindex" + """ + pokemon_v2_itemgameindex_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemgameindex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemgameindex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemgameindex_bool_exp + ): pokemon_v2_itemgameindex_aggregate! + + """ + fetch data from the table: "pokemon_v2_itemgameindex" using primary key columns + """ + pokemon_v2_itemgameindex_by_pk(id: Int!): pokemon_v2_itemgameindex + + """ + fetch data from the table: "pokemon_v2_itemname" + """ + pokemon_v2_itemname( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemname_bool_exp + ): [pokemon_v2_itemname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_itemname" + """ + pokemon_v2_itemname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemname_bool_exp + ): pokemon_v2_itemname_aggregate! + + """ + fetch data from the table: "pokemon_v2_itemname" using primary key columns + """ + pokemon_v2_itemname_by_pk(id: Int!): pokemon_v2_itemname + + """ + fetch data from the table: "pokemon_v2_itempocket" + """ + pokemon_v2_itempocket( + """distinct select on columns""" + distinct_on: [pokemon_v2_itempocket_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itempocket_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itempocket_bool_exp + ): [pokemon_v2_itempocket!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_itempocket" + """ + pokemon_v2_itempocket_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itempocket_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itempocket_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itempocket_bool_exp + ): pokemon_v2_itempocket_aggregate! + + """ + fetch data from the table: "pokemon_v2_itempocket" using primary key columns + """ + pokemon_v2_itempocket_by_pk(id: Int!): pokemon_v2_itempocket + + """ + fetch data from the table: "pokemon_v2_itempocketname" + """ + pokemon_v2_itempocketname( + """distinct select on columns""" + distinct_on: [pokemon_v2_itempocketname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itempocketname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itempocketname_bool_exp + ): [pokemon_v2_itempocketname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_itempocketname" + """ + pokemon_v2_itempocketname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itempocketname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itempocketname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itempocketname_bool_exp + ): pokemon_v2_itempocketname_aggregate! + + """ + fetch data from the table: "pokemon_v2_itempocketname" using primary key columns + """ + pokemon_v2_itempocketname_by_pk(id: Int!): pokemon_v2_itempocketname + + """An array relationship""" + pokemon_v2_itemsprites( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemsprites_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemsprites_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemsprites_bool_exp + ): [pokemon_v2_itemsprites!]! + + """An aggregate relationship""" + pokemon_v2_itemsprites_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemsprites_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemsprites_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemsprites_bool_exp + ): pokemon_v2_itemsprites_aggregate! + + """ + fetch data from the table: "pokemon_v2_itemsprites" using primary key columns + """ + pokemon_v2_itemsprites_by_pk(id: Int!): pokemon_v2_itemsprites + + """ + fetch data from the table: "pokemon_v2_language" + """ + pokemon_v2_language( + """distinct select on columns""" + distinct_on: [pokemon_v2_language_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_language_order_by!] + + """filter the rows returned""" + where: pokemon_v2_language_bool_exp + ): [pokemon_v2_language!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_language" + """ + pokemon_v2_language_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_language_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_language_order_by!] + + """filter the rows returned""" + where: pokemon_v2_language_bool_exp + ): pokemon_v2_language_aggregate! + + """ + fetch data from the table: "pokemon_v2_language" using primary key columns + """ + pokemon_v2_language_by_pk(id: Int!): pokemon_v2_language + + """ + fetch data from the table: "pokemon_v2_languagename" + """ + pokemon_v2_languagename( + """distinct select on columns""" + distinct_on: [pokemon_v2_languagename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_languagename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_languagename_bool_exp + ): [pokemon_v2_languagename!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_languagename" + """ + pokemon_v2_languagename_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_languagename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_languagename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_languagename_bool_exp + ): pokemon_v2_languagename_aggregate! + + """ + fetch data from the table: "pokemon_v2_languagename" using primary key columns + """ + pokemon_v2_languagename_by_pk(id: Int!): pokemon_v2_languagename + + """ + fetch data from the table: "pokemon_v2_location" + """ + pokemon_v2_location( + """distinct select on columns""" + distinct_on: [pokemon_v2_location_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_location_order_by!] + + """filter the rows returned""" + where: pokemon_v2_location_bool_exp + ): [pokemon_v2_location!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_location" + """ + pokemon_v2_location_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_location_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_location_order_by!] + + """filter the rows returned""" + where: pokemon_v2_location_bool_exp + ): pokemon_v2_location_aggregate! + + """ + fetch data from the table: "pokemon_v2_location" using primary key columns + """ + pokemon_v2_location_by_pk(id: Int!): pokemon_v2_location + + """ + fetch data from the table: "pokemon_v2_locationarea" + """ + pokemon_v2_locationarea( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationarea_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationarea_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationarea_bool_exp + ): [pokemon_v2_locationarea!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_locationarea" + """ + pokemon_v2_locationarea_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationarea_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationarea_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationarea_bool_exp + ): pokemon_v2_locationarea_aggregate! + + """ + fetch data from the table: "pokemon_v2_locationarea" using primary key columns + """ + pokemon_v2_locationarea_by_pk(id: Int!): pokemon_v2_locationarea + + """ + fetch data from the table: "pokemon_v2_locationareaencounterrate" + """ + pokemon_v2_locationareaencounterrate( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationareaencounterrate_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationareaencounterrate_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationareaencounterrate_bool_exp + ): [pokemon_v2_locationareaencounterrate!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_locationareaencounterrate" + """ + pokemon_v2_locationareaencounterrate_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationareaencounterrate_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationareaencounterrate_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationareaencounterrate_bool_exp + ): pokemon_v2_locationareaencounterrate_aggregate! + + """ + fetch data from the table: "pokemon_v2_locationareaencounterrate" using primary key columns + """ + pokemon_v2_locationareaencounterrate_by_pk(id: Int!): pokemon_v2_locationareaencounterrate + + """ + fetch data from the table: "pokemon_v2_locationareaname" + """ + pokemon_v2_locationareaname( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationareaname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationareaname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationareaname_bool_exp + ): [pokemon_v2_locationareaname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_locationareaname" + """ + pokemon_v2_locationareaname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationareaname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationareaname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationareaname_bool_exp + ): pokemon_v2_locationareaname_aggregate! + + """ + fetch data from the table: "pokemon_v2_locationareaname" using primary key columns + """ + pokemon_v2_locationareaname_by_pk(id: Int!): pokemon_v2_locationareaname + + """ + fetch data from the table: "pokemon_v2_locationgameindex" + """ + pokemon_v2_locationgameindex( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationgameindex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationgameindex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationgameindex_bool_exp + ): [pokemon_v2_locationgameindex!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_locationgameindex" + """ + pokemon_v2_locationgameindex_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationgameindex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationgameindex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationgameindex_bool_exp + ): pokemon_v2_locationgameindex_aggregate! + + """ + fetch data from the table: "pokemon_v2_locationgameindex" using primary key columns + """ + pokemon_v2_locationgameindex_by_pk(id: Int!): pokemon_v2_locationgameindex + + """ + fetch data from the table: "pokemon_v2_locationname" + """ + pokemon_v2_locationname( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationname_bool_exp + ): [pokemon_v2_locationname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_locationname" + """ + pokemon_v2_locationname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationname_bool_exp + ): pokemon_v2_locationname_aggregate! + + """ + fetch data from the table: "pokemon_v2_locationname" using primary key columns + """ + pokemon_v2_locationname_by_pk(id: Int!): pokemon_v2_locationname + + """ + fetch data from the table: "pokemon_v2_machine" + """ + pokemon_v2_machine( + """distinct select on columns""" + distinct_on: [pokemon_v2_machine_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_machine_order_by!] + + """filter the rows returned""" + where: pokemon_v2_machine_bool_exp + ): [pokemon_v2_machine!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_machine" + """ + pokemon_v2_machine_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_machine_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_machine_order_by!] + + """filter the rows returned""" + where: pokemon_v2_machine_bool_exp + ): pokemon_v2_machine_aggregate! + + """ + fetch data from the table: "pokemon_v2_machine" using primary key columns + """ + pokemon_v2_machine_by_pk(id: Int!): pokemon_v2_machine + + """ + fetch data from the table: "pokemon_v2_move" + """ + pokemon_v2_move( + """distinct select on columns""" + distinct_on: [pokemon_v2_move_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_move_order_by!] + + """filter the rows returned""" + where: pokemon_v2_move_bool_exp + ): [pokemon_v2_move!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_move" + """ + pokemon_v2_move_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_move_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_move_order_by!] + + """filter the rows returned""" + where: pokemon_v2_move_bool_exp + ): pokemon_v2_move_aggregate! + + """fetch data from the table: "pokemon_v2_move" using primary key columns""" + pokemon_v2_move_by_pk(id: Int!): pokemon_v2_move + + """ + fetch data from the table: "pokemon_v2_moveattribute" + """ + pokemon_v2_moveattribute( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveattribute_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveattribute_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveattribute_bool_exp + ): [pokemon_v2_moveattribute!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_moveattribute" + """ + pokemon_v2_moveattribute_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveattribute_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveattribute_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveattribute_bool_exp + ): pokemon_v2_moveattribute_aggregate! + + """ + fetch data from the table: "pokemon_v2_moveattribute" using primary key columns + """ + pokemon_v2_moveattribute_by_pk(id: Int!): pokemon_v2_moveattribute + + """ + fetch data from the table: "pokemon_v2_moveattributedescription" + """ + pokemon_v2_moveattributedescription( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveattributedescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveattributedescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveattributedescription_bool_exp + ): [pokemon_v2_moveattributedescription!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_moveattributedescription" + """ + pokemon_v2_moveattributedescription_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveattributedescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveattributedescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveattributedescription_bool_exp + ): pokemon_v2_moveattributedescription_aggregate! + + """ + fetch data from the table: "pokemon_v2_moveattributedescription" using primary key columns + """ + pokemon_v2_moveattributedescription_by_pk(id: Int!): pokemon_v2_moveattributedescription + + """ + fetch data from the table: "pokemon_v2_moveattributemap" + """ + pokemon_v2_moveattributemap( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveattributemap_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveattributemap_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveattributemap_bool_exp + ): [pokemon_v2_moveattributemap!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_moveattributemap" + """ + pokemon_v2_moveattributemap_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveattributemap_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveattributemap_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveattributemap_bool_exp + ): pokemon_v2_moveattributemap_aggregate! + + """ + fetch data from the table: "pokemon_v2_moveattributemap" using primary key columns + """ + pokemon_v2_moveattributemap_by_pk(id: Int!): pokemon_v2_moveattributemap + + """ + fetch data from the table: "pokemon_v2_moveattributename" + """ + pokemon_v2_moveattributename( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveattributename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveattributename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveattributename_bool_exp + ): [pokemon_v2_moveattributename!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_moveattributename" + """ + pokemon_v2_moveattributename_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveattributename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveattributename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveattributename_bool_exp + ): pokemon_v2_moveattributename_aggregate! + + """ + fetch data from the table: "pokemon_v2_moveattributename" using primary key columns + """ + pokemon_v2_moveattributename_by_pk(id: Int!): pokemon_v2_moveattributename + + """ + fetch data from the table: "pokemon_v2_movebattlestyle" + """ + pokemon_v2_movebattlestyle( + """distinct select on columns""" + distinct_on: [pokemon_v2_movebattlestyle_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movebattlestyle_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movebattlestyle_bool_exp + ): [pokemon_v2_movebattlestyle!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movebattlestyle" + """ + pokemon_v2_movebattlestyle_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movebattlestyle_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movebattlestyle_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movebattlestyle_bool_exp + ): pokemon_v2_movebattlestyle_aggregate! + + """ + fetch data from the table: "pokemon_v2_movebattlestyle" using primary key columns + """ + pokemon_v2_movebattlestyle_by_pk(id: Int!): pokemon_v2_movebattlestyle + + """ + fetch data from the table: "pokemon_v2_movebattlestylename" + """ + pokemon_v2_movebattlestylename( + """distinct select on columns""" + distinct_on: [pokemon_v2_movebattlestylename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movebattlestylename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movebattlestylename_bool_exp + ): [pokemon_v2_movebattlestylename!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movebattlestylename" + """ + pokemon_v2_movebattlestylename_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movebattlestylename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movebattlestylename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movebattlestylename_bool_exp + ): pokemon_v2_movebattlestylename_aggregate! + + """ + fetch data from the table: "pokemon_v2_movebattlestylename" using primary key columns + """ + pokemon_v2_movebattlestylename_by_pk(id: Int!): pokemon_v2_movebattlestylename + + """ + fetch data from the table: "pokemon_v2_movechange" + """ + pokemon_v2_movechange( + """distinct select on columns""" + distinct_on: [pokemon_v2_movechange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movechange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movechange_bool_exp + ): [pokemon_v2_movechange!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movechange" + """ + pokemon_v2_movechange_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movechange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movechange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movechange_bool_exp + ): pokemon_v2_movechange_aggregate! + + """ + fetch data from the table: "pokemon_v2_movechange" using primary key columns + """ + pokemon_v2_movechange_by_pk(id: Int!): pokemon_v2_movechange + + """ + fetch data from the table: "pokemon_v2_movedamageclass" + """ + pokemon_v2_movedamageclass( + """distinct select on columns""" + distinct_on: [pokemon_v2_movedamageclass_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movedamageclass_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movedamageclass_bool_exp + ): [pokemon_v2_movedamageclass!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movedamageclass" + """ + pokemon_v2_movedamageclass_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movedamageclass_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movedamageclass_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movedamageclass_bool_exp + ): pokemon_v2_movedamageclass_aggregate! + + """ + fetch data from the table: "pokemon_v2_movedamageclass" using primary key columns + """ + pokemon_v2_movedamageclass_by_pk(id: Int!): pokemon_v2_movedamageclass + + """ + fetch data from the table: "pokemon_v2_movedamageclassdescription" + """ + pokemon_v2_movedamageclassdescription( + """distinct select on columns""" + distinct_on: [pokemon_v2_movedamageclassdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movedamageclassdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movedamageclassdescription_bool_exp + ): [pokemon_v2_movedamageclassdescription!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movedamageclassdescription" + """ + pokemon_v2_movedamageclassdescription_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movedamageclassdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movedamageclassdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movedamageclassdescription_bool_exp + ): pokemon_v2_movedamageclassdescription_aggregate! + + """ + fetch data from the table: "pokemon_v2_movedamageclassdescription" using primary key columns + """ + pokemon_v2_movedamageclassdescription_by_pk(id: Int!): pokemon_v2_movedamageclassdescription + + """ + fetch data from the table: "pokemon_v2_movedamageclassname" + """ + pokemon_v2_movedamageclassname( + """distinct select on columns""" + distinct_on: [pokemon_v2_movedamageclassname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movedamageclassname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movedamageclassname_bool_exp + ): [pokemon_v2_movedamageclassname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movedamageclassname" + """ + pokemon_v2_movedamageclassname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movedamageclassname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movedamageclassname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movedamageclassname_bool_exp + ): pokemon_v2_movedamageclassname_aggregate! + + """ + fetch data from the table: "pokemon_v2_movedamageclassname" using primary key columns + """ + pokemon_v2_movedamageclassname_by_pk(id: Int!): pokemon_v2_movedamageclassname + + """ + fetch data from the table: "pokemon_v2_moveeffect" + """ + pokemon_v2_moveeffect( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveeffect_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveeffect_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveeffect_bool_exp + ): [pokemon_v2_moveeffect!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_moveeffect" + """ + pokemon_v2_moveeffect_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveeffect_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveeffect_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveeffect_bool_exp + ): pokemon_v2_moveeffect_aggregate! + + """ + fetch data from the table: "pokemon_v2_moveeffect" using primary key columns + """ + pokemon_v2_moveeffect_by_pk(id: Int!): pokemon_v2_moveeffect + + """ + fetch data from the table: "pokemon_v2_moveeffectchange" + """ + pokemon_v2_moveeffectchange( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveeffectchange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveeffectchange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveeffectchange_bool_exp + ): [pokemon_v2_moveeffectchange!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_moveeffectchange" + """ + pokemon_v2_moveeffectchange_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveeffectchange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveeffectchange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveeffectchange_bool_exp + ): pokemon_v2_moveeffectchange_aggregate! + + """ + fetch data from the table: "pokemon_v2_moveeffectchange" using primary key columns + """ + pokemon_v2_moveeffectchange_by_pk(id: Int!): pokemon_v2_moveeffectchange + + """ + fetch data from the table: "pokemon_v2_moveeffectchangeeffecttext" + """ + pokemon_v2_moveeffectchangeeffecttext( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveeffectchangeeffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveeffectchangeeffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveeffectchangeeffecttext_bool_exp + ): [pokemon_v2_moveeffectchangeeffecttext!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_moveeffectchangeeffecttext" + """ + pokemon_v2_moveeffectchangeeffecttext_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveeffectchangeeffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveeffectchangeeffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveeffectchangeeffecttext_bool_exp + ): pokemon_v2_moveeffectchangeeffecttext_aggregate! + + """ + fetch data from the table: "pokemon_v2_moveeffectchangeeffecttext" using primary key columns + """ + pokemon_v2_moveeffectchangeeffecttext_by_pk(id: Int!): pokemon_v2_moveeffectchangeeffecttext + + """ + fetch data from the table: "pokemon_v2_moveeffecteffecttext" + """ + pokemon_v2_moveeffecteffecttext( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveeffecteffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveeffecteffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveeffecteffecttext_bool_exp + ): [pokemon_v2_moveeffecteffecttext!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_moveeffecteffecttext" + """ + pokemon_v2_moveeffecteffecttext_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveeffecteffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveeffecteffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveeffecteffecttext_bool_exp + ): pokemon_v2_moveeffecteffecttext_aggregate! + + """ + fetch data from the table: "pokemon_v2_moveeffecteffecttext" using primary key columns + """ + pokemon_v2_moveeffecteffecttext_by_pk(id: Int!): pokemon_v2_moveeffecteffecttext + + """ + fetch data from the table: "pokemon_v2_moveflavortext" + """ + pokemon_v2_moveflavortext( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveflavortext_bool_exp + ): [pokemon_v2_moveflavortext!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_moveflavortext" + """ + pokemon_v2_moveflavortext_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveflavortext_bool_exp + ): pokemon_v2_moveflavortext_aggregate! + + """ + fetch data from the table: "pokemon_v2_moveflavortext" using primary key columns + """ + pokemon_v2_moveflavortext_by_pk(id: Int!): pokemon_v2_moveflavortext + + """ + fetch data from the table: "pokemon_v2_movelearnmethod" + """ + pokemon_v2_movelearnmethod( + """distinct select on columns""" + distinct_on: [pokemon_v2_movelearnmethod_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movelearnmethod_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movelearnmethod_bool_exp + ): [pokemon_v2_movelearnmethod!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movelearnmethod" + """ + pokemon_v2_movelearnmethod_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movelearnmethod_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movelearnmethod_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movelearnmethod_bool_exp + ): pokemon_v2_movelearnmethod_aggregate! + + """ + fetch data from the table: "pokemon_v2_movelearnmethod" using primary key columns + """ + pokemon_v2_movelearnmethod_by_pk(id: Int!): pokemon_v2_movelearnmethod + + """ + fetch data from the table: "pokemon_v2_movelearnmethoddescription" + """ + pokemon_v2_movelearnmethoddescription( + """distinct select on columns""" + distinct_on: [pokemon_v2_movelearnmethoddescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movelearnmethoddescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movelearnmethoddescription_bool_exp + ): [pokemon_v2_movelearnmethoddescription!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movelearnmethoddescription" + """ + pokemon_v2_movelearnmethoddescription_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movelearnmethoddescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movelearnmethoddescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movelearnmethoddescription_bool_exp + ): pokemon_v2_movelearnmethoddescription_aggregate! + + """ + fetch data from the table: "pokemon_v2_movelearnmethoddescription" using primary key columns + """ + pokemon_v2_movelearnmethoddescription_by_pk(id: Int!): pokemon_v2_movelearnmethoddescription + + """ + fetch data from the table: "pokemon_v2_movelearnmethodname" + """ + pokemon_v2_movelearnmethodname( + """distinct select on columns""" + distinct_on: [pokemon_v2_movelearnmethodname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movelearnmethodname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movelearnmethodname_bool_exp + ): [pokemon_v2_movelearnmethodname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movelearnmethodname" + """ + pokemon_v2_movelearnmethodname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movelearnmethodname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movelearnmethodname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movelearnmethodname_bool_exp + ): pokemon_v2_movelearnmethodname_aggregate! + + """ + fetch data from the table: "pokemon_v2_movelearnmethodname" using primary key columns + """ + pokemon_v2_movelearnmethodname_by_pk(id: Int!): pokemon_v2_movelearnmethodname + + """An array relationship""" + pokemon_v2_movemeta( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemeta_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemeta_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemeta_bool_exp + ): [pokemon_v2_movemeta!]! + + """An aggregate relationship""" + pokemon_v2_movemeta_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemeta_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemeta_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemeta_bool_exp + ): pokemon_v2_movemeta_aggregate! + + """ + fetch data from the table: "pokemon_v2_movemeta" using primary key columns + """ + pokemon_v2_movemeta_by_pk(id: Int!): pokemon_v2_movemeta + + """ + fetch data from the table: "pokemon_v2_movemetaailment" + """ + pokemon_v2_movemetaailment( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemetaailment_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemetaailment_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemetaailment_bool_exp + ): [pokemon_v2_movemetaailment!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movemetaailment" + """ + pokemon_v2_movemetaailment_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemetaailment_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemetaailment_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemetaailment_bool_exp + ): pokemon_v2_movemetaailment_aggregate! + + """ + fetch data from the table: "pokemon_v2_movemetaailment" using primary key columns + """ + pokemon_v2_movemetaailment_by_pk(id: Int!): pokemon_v2_movemetaailment + + """ + fetch data from the table: "pokemon_v2_movemetaailmentname" + """ + pokemon_v2_movemetaailmentname( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemetaailmentname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemetaailmentname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemetaailmentname_bool_exp + ): [pokemon_v2_movemetaailmentname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movemetaailmentname" + """ + pokemon_v2_movemetaailmentname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemetaailmentname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemetaailmentname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemetaailmentname_bool_exp + ): pokemon_v2_movemetaailmentname_aggregate! + + """ + fetch data from the table: "pokemon_v2_movemetaailmentname" using primary key columns + """ + pokemon_v2_movemetaailmentname_by_pk(id: Int!): pokemon_v2_movemetaailmentname + + """ + fetch data from the table: "pokemon_v2_movemetacategory" + """ + pokemon_v2_movemetacategory( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemetacategory_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemetacategory_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemetacategory_bool_exp + ): [pokemon_v2_movemetacategory!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movemetacategory" + """ + pokemon_v2_movemetacategory_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemetacategory_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemetacategory_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemetacategory_bool_exp + ): pokemon_v2_movemetacategory_aggregate! + + """ + fetch data from the table: "pokemon_v2_movemetacategory" using primary key columns + """ + pokemon_v2_movemetacategory_by_pk(id: Int!): pokemon_v2_movemetacategory + + """ + fetch data from the table: "pokemon_v2_movemetacategorydescription" + """ + pokemon_v2_movemetacategorydescription( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemetacategorydescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemetacategorydescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemetacategorydescription_bool_exp + ): [pokemon_v2_movemetacategorydescription!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movemetacategorydescription" + """ + pokemon_v2_movemetacategorydescription_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemetacategorydescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemetacategorydescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemetacategorydescription_bool_exp + ): pokemon_v2_movemetacategorydescription_aggregate! + + """ + fetch data from the table: "pokemon_v2_movemetacategorydescription" using primary key columns + """ + pokemon_v2_movemetacategorydescription_by_pk(id: Int!): pokemon_v2_movemetacategorydescription + + """ + fetch data from the table: "pokemon_v2_movemetastatchange" + """ + pokemon_v2_movemetastatchange( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemetastatchange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemetastatchange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemetastatchange_bool_exp + ): [pokemon_v2_movemetastatchange!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movemetastatchange" + """ + pokemon_v2_movemetastatchange_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemetastatchange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemetastatchange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemetastatchange_bool_exp + ): pokemon_v2_movemetastatchange_aggregate! + + """ + fetch data from the table: "pokemon_v2_movemetastatchange" using primary key columns + """ + pokemon_v2_movemetastatchange_by_pk(id: Int!): pokemon_v2_movemetastatchange + + """ + fetch data from the table: "pokemon_v2_movename" + """ + pokemon_v2_movename( + """distinct select on columns""" + distinct_on: [pokemon_v2_movename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movename_bool_exp + ): [pokemon_v2_movename!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movename" + """ + pokemon_v2_movename_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movename_bool_exp + ): pokemon_v2_movename_aggregate! + + """ + fetch data from the table: "pokemon_v2_movename" using primary key columns + """ + pokemon_v2_movename_by_pk(id: Int!): pokemon_v2_movename + + """ + fetch data from the table: "pokemon_v2_movetarget" + """ + pokemon_v2_movetarget( + """distinct select on columns""" + distinct_on: [pokemon_v2_movetarget_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movetarget_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movetarget_bool_exp + ): [pokemon_v2_movetarget!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movetarget" + """ + pokemon_v2_movetarget_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movetarget_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movetarget_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movetarget_bool_exp + ): pokemon_v2_movetarget_aggregate! + + """ + fetch data from the table: "pokemon_v2_movetarget" using primary key columns + """ + pokemon_v2_movetarget_by_pk(id: Int!): pokemon_v2_movetarget + + """ + fetch data from the table: "pokemon_v2_movetargetdescription" + """ + pokemon_v2_movetargetdescription( + """distinct select on columns""" + distinct_on: [pokemon_v2_movetargetdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movetargetdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movetargetdescription_bool_exp + ): [pokemon_v2_movetargetdescription!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movetargetdescription" + """ + pokemon_v2_movetargetdescription_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movetargetdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movetargetdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movetargetdescription_bool_exp + ): pokemon_v2_movetargetdescription_aggregate! + + """ + fetch data from the table: "pokemon_v2_movetargetdescription" using primary key columns + """ + pokemon_v2_movetargetdescription_by_pk(id: Int!): pokemon_v2_movetargetdescription + + """ + fetch data from the table: "pokemon_v2_movetargetname" + """ + pokemon_v2_movetargetname( + """distinct select on columns""" + distinct_on: [pokemon_v2_movetargetname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movetargetname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movetargetname_bool_exp + ): [pokemon_v2_movetargetname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movetargetname" + """ + pokemon_v2_movetargetname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movetargetname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movetargetname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movetargetname_bool_exp + ): pokemon_v2_movetargetname_aggregate! + + """ + fetch data from the table: "pokemon_v2_movetargetname" using primary key columns + """ + pokemon_v2_movetargetname_by_pk(id: Int!): pokemon_v2_movetargetname + + """ + fetch data from the table: "pokemon_v2_nature" + """ + pokemon_v2_nature( + """distinct select on columns""" + distinct_on: [pokemon_v2_nature_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_nature_order_by!] + + """filter the rows returned""" + where: pokemon_v2_nature_bool_exp + ): [pokemon_v2_nature!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_nature" + """ + pokemon_v2_nature_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_nature_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_nature_order_by!] + + """filter the rows returned""" + where: pokemon_v2_nature_bool_exp + ): pokemon_v2_nature_aggregate! + + """ + fetch data from the table: "pokemon_v2_nature" using primary key columns + """ + pokemon_v2_nature_by_pk(id: Int!): pokemon_v2_nature + + """ + fetch data from the table: "pokemon_v2_naturebattlestylepreference" + """ + pokemon_v2_naturebattlestylepreference( + """distinct select on columns""" + distinct_on: [pokemon_v2_naturebattlestylepreference_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_naturebattlestylepreference_order_by!] + + """filter the rows returned""" + where: pokemon_v2_naturebattlestylepreference_bool_exp + ): [pokemon_v2_naturebattlestylepreference!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_naturebattlestylepreference" + """ + pokemon_v2_naturebattlestylepreference_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_naturebattlestylepreference_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_naturebattlestylepreference_order_by!] + + """filter the rows returned""" + where: pokemon_v2_naturebattlestylepreference_bool_exp + ): pokemon_v2_naturebattlestylepreference_aggregate! + + """ + fetch data from the table: "pokemon_v2_naturebattlestylepreference" using primary key columns + """ + pokemon_v2_naturebattlestylepreference_by_pk(id: Int!): pokemon_v2_naturebattlestylepreference + + """ + fetch data from the table: "pokemon_v2_naturename" + """ + pokemon_v2_naturename( + """distinct select on columns""" + distinct_on: [pokemon_v2_naturename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_naturename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_naturename_bool_exp + ): [pokemon_v2_naturename!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_naturename" + """ + pokemon_v2_naturename_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_naturename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_naturename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_naturename_bool_exp + ): pokemon_v2_naturename_aggregate! + + """ + fetch data from the table: "pokemon_v2_naturename" using primary key columns + """ + pokemon_v2_naturename_by_pk(id: Int!): pokemon_v2_naturename + + """ + fetch data from the table: "pokemon_v2_naturepokeathlonstat" + """ + pokemon_v2_naturepokeathlonstat( + """distinct select on columns""" + distinct_on: [pokemon_v2_naturepokeathlonstat_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_naturepokeathlonstat_order_by!] + + """filter the rows returned""" + where: pokemon_v2_naturepokeathlonstat_bool_exp + ): [pokemon_v2_naturepokeathlonstat!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_naturepokeathlonstat" + """ + pokemon_v2_naturepokeathlonstat_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_naturepokeathlonstat_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_naturepokeathlonstat_order_by!] + + """filter the rows returned""" + where: pokemon_v2_naturepokeathlonstat_bool_exp + ): pokemon_v2_naturepokeathlonstat_aggregate! + + """ + fetch data from the table: "pokemon_v2_naturepokeathlonstat" using primary key columns + """ + pokemon_v2_naturepokeathlonstat_by_pk(id: Int!): pokemon_v2_naturepokeathlonstat + + """ + fetch data from the table: "pokemon_v2_palpark" + """ + pokemon_v2_palpark( + """distinct select on columns""" + distinct_on: [pokemon_v2_palpark_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_palpark_order_by!] + + """filter the rows returned""" + where: pokemon_v2_palpark_bool_exp + ): [pokemon_v2_palpark!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_palpark" + """ + pokemon_v2_palpark_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_palpark_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_palpark_order_by!] + + """filter the rows returned""" + where: pokemon_v2_palpark_bool_exp + ): pokemon_v2_palpark_aggregate! + + """ + fetch data from the table: "pokemon_v2_palpark" using primary key columns + """ + pokemon_v2_palpark_by_pk(id: Int!): pokemon_v2_palpark + + """ + fetch data from the table: "pokemon_v2_palparkarea" + """ + pokemon_v2_palparkarea( + """distinct select on columns""" + distinct_on: [pokemon_v2_palparkarea_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_palparkarea_order_by!] + + """filter the rows returned""" + where: pokemon_v2_palparkarea_bool_exp + ): [pokemon_v2_palparkarea!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_palparkarea" + """ + pokemon_v2_palparkarea_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_palparkarea_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_palparkarea_order_by!] + + """filter the rows returned""" + where: pokemon_v2_palparkarea_bool_exp + ): pokemon_v2_palparkarea_aggregate! + + """ + fetch data from the table: "pokemon_v2_palparkarea" using primary key columns + """ + pokemon_v2_palparkarea_by_pk(id: Int!): pokemon_v2_palparkarea + + """ + fetch data from the table: "pokemon_v2_palparkareaname" + """ + pokemon_v2_palparkareaname( + """distinct select on columns""" + distinct_on: [pokemon_v2_palparkareaname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_palparkareaname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_palparkareaname_bool_exp + ): [pokemon_v2_palparkareaname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_palparkareaname" + """ + pokemon_v2_palparkareaname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_palparkareaname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_palparkareaname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_palparkareaname_bool_exp + ): pokemon_v2_palparkareaname_aggregate! + + """ + fetch data from the table: "pokemon_v2_palparkareaname" using primary key columns + """ + pokemon_v2_palparkareaname_by_pk(id: Int!): pokemon_v2_palparkareaname + + """ + fetch data from the table: "pokemon_v2_pokeathlonstat" + """ + pokemon_v2_pokeathlonstat( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokeathlonstat_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokeathlonstat_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokeathlonstat_bool_exp + ): [pokemon_v2_pokeathlonstat!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokeathlonstat" + """ + pokemon_v2_pokeathlonstat_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokeathlonstat_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokeathlonstat_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokeathlonstat_bool_exp + ): pokemon_v2_pokeathlonstat_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokeathlonstat" using primary key columns + """ + pokemon_v2_pokeathlonstat_by_pk(id: Int!): pokemon_v2_pokeathlonstat + + """ + fetch data from the table: "pokemon_v2_pokeathlonstatname" + """ + pokemon_v2_pokeathlonstatname( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokeathlonstatname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokeathlonstatname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokeathlonstatname_bool_exp + ): [pokemon_v2_pokeathlonstatname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokeathlonstatname" + """ + pokemon_v2_pokeathlonstatname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokeathlonstatname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokeathlonstatname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokeathlonstatname_bool_exp + ): pokemon_v2_pokeathlonstatname_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokeathlonstatname" using primary key columns + """ + pokemon_v2_pokeathlonstatname_by_pk(id: Int!): pokemon_v2_pokeathlonstatname + + """ + fetch data from the table: "pokemon_v2_pokedex" + """ + pokemon_v2_pokedex( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokedex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokedex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokedex_bool_exp + ): [pokemon_v2_pokedex!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokedex" + """ + pokemon_v2_pokedex_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokedex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokedex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokedex_bool_exp + ): pokemon_v2_pokedex_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokedex" using primary key columns + """ + pokemon_v2_pokedex_by_pk(id: Int!): pokemon_v2_pokedex + + """ + fetch data from the table: "pokemon_v2_pokedexdescription" + """ + pokemon_v2_pokedexdescription( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokedexdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokedexdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokedexdescription_bool_exp + ): [pokemon_v2_pokedexdescription!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokedexdescription" + """ + pokemon_v2_pokedexdescription_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokedexdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokedexdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokedexdescription_bool_exp + ): pokemon_v2_pokedexdescription_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokedexdescription" using primary key columns + """ + pokemon_v2_pokedexdescription_by_pk(id: Int!): pokemon_v2_pokedexdescription + + """ + fetch data from the table: "pokemon_v2_pokedexname" + """ + pokemon_v2_pokedexname( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokedexname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokedexname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokedexname_bool_exp + ): [pokemon_v2_pokedexname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokedexname" + """ + pokemon_v2_pokedexname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokedexname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokedexname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokedexname_bool_exp + ): pokemon_v2_pokedexname_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokedexname" using primary key columns + """ + pokemon_v2_pokedexname_by_pk(id: Int!): pokemon_v2_pokedexname + + """ + fetch data from the table: "pokemon_v2_pokedexversiongroup" + """ + pokemon_v2_pokedexversiongroup( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokedexversiongroup_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokedexversiongroup_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokedexversiongroup_bool_exp + ): [pokemon_v2_pokedexversiongroup!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokedexversiongroup" + """ + pokemon_v2_pokedexversiongroup_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokedexversiongroup_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokedexversiongroup_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokedexversiongroup_bool_exp + ): pokemon_v2_pokedexversiongroup_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokedexversiongroup" using primary key columns + """ + pokemon_v2_pokedexversiongroup_by_pk(id: Int!): pokemon_v2_pokedexversiongroup + + """ + fetch data from the table: "pokemon_v2_pokemon" + """ + pokemon_v2_pokemon( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemon_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemon_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemon_bool_exp + ): [pokemon_v2_pokemon!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemon" + """ + pokemon_v2_pokemon_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemon_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemon_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemon_bool_exp + ): pokemon_v2_pokemon_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemon" using primary key columns + """ + pokemon_v2_pokemon_by_pk(id: Int!): pokemon_v2_pokemon + + """ + fetch data from the table: "pokemon_v2_pokemonability" + """ + pokemon_v2_pokemonability( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonability_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonability_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonability_bool_exp + ): [pokemon_v2_pokemonability!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonability" + """ + pokemon_v2_pokemonability_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonability_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonability_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonability_bool_exp + ): pokemon_v2_pokemonability_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonability" using primary key columns + """ + pokemon_v2_pokemonability_by_pk(id: Int!): pokemon_v2_pokemonability + + """ + fetch data from the table: "pokemon_v2_pokemonabilitypast" + """ + pokemon_v2_pokemonabilitypast( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonabilitypast_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonabilitypast_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonabilitypast_bool_exp + ): [pokemon_v2_pokemonabilitypast!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonabilitypast" + """ + pokemon_v2_pokemonabilitypast_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonabilitypast_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonabilitypast_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonabilitypast_bool_exp + ): pokemon_v2_pokemonabilitypast_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonabilitypast" using primary key columns + """ + pokemon_v2_pokemonabilitypast_by_pk(id: Int!): pokemon_v2_pokemonabilitypast + + """ + fetch data from the table: "pokemon_v2_pokemoncolor" + """ + pokemon_v2_pokemoncolor( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemoncolor_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemoncolor_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemoncolor_bool_exp + ): [pokemon_v2_pokemoncolor!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemoncolor" + """ + pokemon_v2_pokemoncolor_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemoncolor_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemoncolor_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemoncolor_bool_exp + ): pokemon_v2_pokemoncolor_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemoncolor" using primary key columns + """ + pokemon_v2_pokemoncolor_by_pk(id: Int!): pokemon_v2_pokemoncolor + + """ + fetch data from the table: "pokemon_v2_pokemoncolorname" + """ + pokemon_v2_pokemoncolorname( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemoncolorname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemoncolorname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemoncolorname_bool_exp + ): [pokemon_v2_pokemoncolorname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemoncolorname" + """ + pokemon_v2_pokemoncolorname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemoncolorname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemoncolorname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemoncolorname_bool_exp + ): pokemon_v2_pokemoncolorname_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemoncolorname" using primary key columns + """ + pokemon_v2_pokemoncolorname_by_pk(id: Int!): pokemon_v2_pokemoncolorname + + """An array relationship""" + pokemon_v2_pokemoncries( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemoncries_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemoncries_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemoncries_bool_exp + ): [pokemon_v2_pokemoncries!]! + + """An aggregate relationship""" + pokemon_v2_pokemoncries_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemoncries_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemoncries_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemoncries_bool_exp + ): pokemon_v2_pokemoncries_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemoncries" using primary key columns + """ + pokemon_v2_pokemoncries_by_pk(id: Int!): pokemon_v2_pokemoncries + + """ + fetch data from the table: "pokemon_v2_pokemondexnumber" + """ + pokemon_v2_pokemondexnumber( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemondexnumber_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemondexnumber_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemondexnumber_bool_exp + ): [pokemon_v2_pokemondexnumber!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemondexnumber" + """ + pokemon_v2_pokemondexnumber_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemondexnumber_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemondexnumber_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemondexnumber_bool_exp + ): pokemon_v2_pokemondexnumber_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemondexnumber" using primary key columns + """ + pokemon_v2_pokemondexnumber_by_pk(id: Int!): pokemon_v2_pokemondexnumber + + """ + fetch data from the table: "pokemon_v2_pokemonegggroup" + """ + pokemon_v2_pokemonegggroup( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonegggroup_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonegggroup_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonegggroup_bool_exp + ): [pokemon_v2_pokemonegggroup!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonegggroup" + """ + pokemon_v2_pokemonegggroup_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonegggroup_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonegggroup_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonegggroup_bool_exp + ): pokemon_v2_pokemonegggroup_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonegggroup" using primary key columns + """ + pokemon_v2_pokemonegggroup_by_pk(id: Int!): pokemon_v2_pokemonegggroup + + """ + fetch data from the table: "pokemon_v2_pokemonevolution" + """ + pokemon_v2_pokemonevolution( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonevolution_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonevolution_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonevolution_bool_exp + ): [pokemon_v2_pokemonevolution!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonevolution" + """ + pokemon_v2_pokemonevolution_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonevolution_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonevolution_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonevolution_bool_exp + ): pokemon_v2_pokemonevolution_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonevolution" using primary key columns + """ + pokemon_v2_pokemonevolution_by_pk(id: Int!): pokemon_v2_pokemonevolution + + """ + fetch data from the table: "pokemon_v2_pokemonform" + """ + pokemon_v2_pokemonform( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonform_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonform_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonform_bool_exp + ): [pokemon_v2_pokemonform!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonform" + """ + pokemon_v2_pokemonform_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonform_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonform_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonform_bool_exp + ): pokemon_v2_pokemonform_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonform" using primary key columns + """ + pokemon_v2_pokemonform_by_pk(id: Int!): pokemon_v2_pokemonform + + """ + fetch data from the table: "pokemon_v2_pokemonformgeneration" + """ + pokemon_v2_pokemonformgeneration( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonformgeneration_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonformgeneration_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonformgeneration_bool_exp + ): [pokemon_v2_pokemonformgeneration!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonformgeneration" + """ + pokemon_v2_pokemonformgeneration_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonformgeneration_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonformgeneration_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonformgeneration_bool_exp + ): pokemon_v2_pokemonformgeneration_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonformgeneration" using primary key columns + """ + pokemon_v2_pokemonformgeneration_by_pk(id: Int!): pokemon_v2_pokemonformgeneration + + """ + fetch data from the table: "pokemon_v2_pokemonformname" + """ + pokemon_v2_pokemonformname( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonformname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonformname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonformname_bool_exp + ): [pokemon_v2_pokemonformname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonformname" + """ + pokemon_v2_pokemonformname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonformname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonformname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonformname_bool_exp + ): pokemon_v2_pokemonformname_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonformname" using primary key columns + """ + pokemon_v2_pokemonformname_by_pk(id: Int!): pokemon_v2_pokemonformname + + """An array relationship""" + pokemon_v2_pokemonformsprites( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonformsprites_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonformsprites_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonformsprites_bool_exp + ): [pokemon_v2_pokemonformsprites!]! + + """An aggregate relationship""" + pokemon_v2_pokemonformsprites_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonformsprites_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonformsprites_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonformsprites_bool_exp + ): pokemon_v2_pokemonformsprites_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonformsprites" using primary key columns + """ + pokemon_v2_pokemonformsprites_by_pk(id: Int!): pokemon_v2_pokemonformsprites + + """ + fetch data from the table: "pokemon_v2_pokemonformtype" + """ + pokemon_v2_pokemonformtype( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonformtype_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonformtype_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonformtype_bool_exp + ): [pokemon_v2_pokemonformtype!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonformtype" + """ + pokemon_v2_pokemonformtype_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonformtype_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonformtype_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonformtype_bool_exp + ): pokemon_v2_pokemonformtype_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonformtype" using primary key columns + """ + pokemon_v2_pokemonformtype_by_pk(id: Int!): pokemon_v2_pokemonformtype + + """ + fetch data from the table: "pokemon_v2_pokemongameindex" + """ + pokemon_v2_pokemongameindex( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemongameindex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemongameindex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemongameindex_bool_exp + ): [pokemon_v2_pokemongameindex!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemongameindex" + """ + pokemon_v2_pokemongameindex_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemongameindex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemongameindex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemongameindex_bool_exp + ): pokemon_v2_pokemongameindex_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemongameindex" using primary key columns + """ + pokemon_v2_pokemongameindex_by_pk(id: Int!): pokemon_v2_pokemongameindex + + """ + fetch data from the table: "pokemon_v2_pokemonhabitat" + """ + pokemon_v2_pokemonhabitat( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonhabitat_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonhabitat_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonhabitat_bool_exp + ): [pokemon_v2_pokemonhabitat!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonhabitat" + """ + pokemon_v2_pokemonhabitat_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonhabitat_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonhabitat_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonhabitat_bool_exp + ): pokemon_v2_pokemonhabitat_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonhabitat" using primary key columns + """ + pokemon_v2_pokemonhabitat_by_pk(id: Int!): pokemon_v2_pokemonhabitat + + """ + fetch data from the table: "pokemon_v2_pokemonhabitatname" + """ + pokemon_v2_pokemonhabitatname( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonhabitatname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonhabitatname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonhabitatname_bool_exp + ): [pokemon_v2_pokemonhabitatname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonhabitatname" + """ + pokemon_v2_pokemonhabitatname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonhabitatname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonhabitatname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonhabitatname_bool_exp + ): pokemon_v2_pokemonhabitatname_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonhabitatname" using primary key columns + """ + pokemon_v2_pokemonhabitatname_by_pk(id: Int!): pokemon_v2_pokemonhabitatname + + """ + fetch data from the table: "pokemon_v2_pokemonitem" + """ + pokemon_v2_pokemonitem( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonitem_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonitem_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonitem_bool_exp + ): [pokemon_v2_pokemonitem!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonitem" + """ + pokemon_v2_pokemonitem_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonitem_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonitem_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonitem_bool_exp + ): pokemon_v2_pokemonitem_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonitem" using primary key columns + """ + pokemon_v2_pokemonitem_by_pk(id: Int!): pokemon_v2_pokemonitem + + """ + fetch data from the table: "pokemon_v2_pokemonmove" + """ + pokemon_v2_pokemonmove( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonmove_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonmove_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonmove_bool_exp + ): [pokemon_v2_pokemonmove!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonmove" + """ + pokemon_v2_pokemonmove_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonmove_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonmove_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonmove_bool_exp + ): pokemon_v2_pokemonmove_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonmove" using primary key columns + """ + pokemon_v2_pokemonmove_by_pk(id: Int!): pokemon_v2_pokemonmove + + """ + fetch data from the table: "pokemon_v2_pokemonshape" + """ + pokemon_v2_pokemonshape( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonshape_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonshape_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonshape_bool_exp + ): [pokemon_v2_pokemonshape!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonshape" + """ + pokemon_v2_pokemonshape_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonshape_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonshape_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonshape_bool_exp + ): pokemon_v2_pokemonshape_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonshape" using primary key columns + """ + pokemon_v2_pokemonshape_by_pk(id: Int!): pokemon_v2_pokemonshape + + """ + fetch data from the table: "pokemon_v2_pokemonshapename" + """ + pokemon_v2_pokemonshapename( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonshapename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonshapename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonshapename_bool_exp + ): [pokemon_v2_pokemonshapename!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonshapename" + """ + pokemon_v2_pokemonshapename_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonshapename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonshapename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonshapename_bool_exp + ): pokemon_v2_pokemonshapename_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonshapename" using primary key columns + """ + pokemon_v2_pokemonshapename_by_pk(id: Int!): pokemon_v2_pokemonshapename + + """An array relationship""" + pokemon_v2_pokemonspecies( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspecies_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspecies_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspecies_bool_exp + ): [pokemon_v2_pokemonspecies!]! + + """An aggregate relationship""" + pokemon_v2_pokemonspecies_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspecies_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspecies_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspecies_bool_exp + ): pokemon_v2_pokemonspecies_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonspecies" using primary key columns + """ + pokemon_v2_pokemonspecies_by_pk(id: Int!): pokemon_v2_pokemonspecies + + """ + fetch data from the table: "pokemon_v2_pokemonspeciesdescription" + """ + pokemon_v2_pokemonspeciesdescription( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspeciesdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspeciesdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspeciesdescription_bool_exp + ): [pokemon_v2_pokemonspeciesdescription!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonspeciesdescription" + """ + pokemon_v2_pokemonspeciesdescription_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspeciesdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspeciesdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspeciesdescription_bool_exp + ): pokemon_v2_pokemonspeciesdescription_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonspeciesdescription" using primary key columns + """ + pokemon_v2_pokemonspeciesdescription_by_pk(id: Int!): pokemon_v2_pokemonspeciesdescription + + """ + fetch data from the table: "pokemon_v2_pokemonspeciesflavortext" + """ + pokemon_v2_pokemonspeciesflavortext( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspeciesflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspeciesflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspeciesflavortext_bool_exp + ): [pokemon_v2_pokemonspeciesflavortext!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonspeciesflavortext" + """ + pokemon_v2_pokemonspeciesflavortext_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspeciesflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspeciesflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspeciesflavortext_bool_exp + ): pokemon_v2_pokemonspeciesflavortext_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonspeciesflavortext" using primary key columns + """ + pokemon_v2_pokemonspeciesflavortext_by_pk(id: Int!): pokemon_v2_pokemonspeciesflavortext + + """ + fetch data from the table: "pokemon_v2_pokemonspeciesname" + """ + pokemon_v2_pokemonspeciesname( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspeciesname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspeciesname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspeciesname_bool_exp + ): [pokemon_v2_pokemonspeciesname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonspeciesname" + """ + pokemon_v2_pokemonspeciesname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspeciesname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspeciesname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspeciesname_bool_exp + ): pokemon_v2_pokemonspeciesname_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonspeciesname" using primary key columns + """ + pokemon_v2_pokemonspeciesname_by_pk(id: Int!): pokemon_v2_pokemonspeciesname + + """An array relationship""" + pokemon_v2_pokemonsprites( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonsprites_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonsprites_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonsprites_bool_exp + ): [pokemon_v2_pokemonsprites!]! + + """An aggregate relationship""" + pokemon_v2_pokemonsprites_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonsprites_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonsprites_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonsprites_bool_exp + ): pokemon_v2_pokemonsprites_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonsprites" using primary key columns + """ + pokemon_v2_pokemonsprites_by_pk(id: Int!): pokemon_v2_pokemonsprites + + """ + fetch data from the table: "pokemon_v2_pokemonstat" + """ + pokemon_v2_pokemonstat( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonstat_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonstat_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonstat_bool_exp + ): [pokemon_v2_pokemonstat!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonstat" + """ + pokemon_v2_pokemonstat_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonstat_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonstat_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonstat_bool_exp + ): pokemon_v2_pokemonstat_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonstat" using primary key columns + """ + pokemon_v2_pokemonstat_by_pk(id: Int!): pokemon_v2_pokemonstat + + """ + fetch data from the table: "pokemon_v2_pokemontype" + """ + pokemon_v2_pokemontype( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemontype_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemontype_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemontype_bool_exp + ): [pokemon_v2_pokemontype!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemontype" + """ + pokemon_v2_pokemontype_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemontype_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemontype_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemontype_bool_exp + ): pokemon_v2_pokemontype_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemontype" using primary key columns + """ + pokemon_v2_pokemontype_by_pk(id: Int!): pokemon_v2_pokemontype + + """ + fetch data from the table: "pokemon_v2_pokemontypepast" + """ + pokemon_v2_pokemontypepast( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemontypepast_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemontypepast_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemontypepast_bool_exp + ): [pokemon_v2_pokemontypepast!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemontypepast" + """ + pokemon_v2_pokemontypepast_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemontypepast_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemontypepast_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemontypepast_bool_exp + ): pokemon_v2_pokemontypepast_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemontypepast" using primary key columns + """ + pokemon_v2_pokemontypepast_by_pk(id: Int!): pokemon_v2_pokemontypepast + + """ + fetch data from the table: "pokemon_v2_region" + """ + pokemon_v2_region( + """distinct select on columns""" + distinct_on: [pokemon_v2_region_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_region_order_by!] + + """filter the rows returned""" + where: pokemon_v2_region_bool_exp + ): [pokemon_v2_region!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_region" + """ + pokemon_v2_region_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_region_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_region_order_by!] + + """filter the rows returned""" + where: pokemon_v2_region_bool_exp + ): pokemon_v2_region_aggregate! + + """ + fetch data from the table: "pokemon_v2_region" using primary key columns + """ + pokemon_v2_region_by_pk(id: Int!): pokemon_v2_region + + """ + fetch data from the table: "pokemon_v2_regionname" + """ + pokemon_v2_regionname( + """distinct select on columns""" + distinct_on: [pokemon_v2_regionname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_regionname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_regionname_bool_exp + ): [pokemon_v2_regionname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_regionname" + """ + pokemon_v2_regionname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_regionname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_regionname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_regionname_bool_exp + ): pokemon_v2_regionname_aggregate! + + """ + fetch data from the table: "pokemon_v2_regionname" using primary key columns + """ + pokemon_v2_regionname_by_pk(id: Int!): pokemon_v2_regionname + + """ + fetch data from the table: "pokemon_v2_stat" + """ + pokemon_v2_stat( + """distinct select on columns""" + distinct_on: [pokemon_v2_stat_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_stat_order_by!] + + """filter the rows returned""" + where: pokemon_v2_stat_bool_exp + ): [pokemon_v2_stat!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_stat" + """ + pokemon_v2_stat_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_stat_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_stat_order_by!] + + """filter the rows returned""" + where: pokemon_v2_stat_bool_exp + ): pokemon_v2_stat_aggregate! + + """fetch data from the table: "pokemon_v2_stat" using primary key columns""" + pokemon_v2_stat_by_pk(id: Int!): pokemon_v2_stat + + """ + fetch data from the table: "pokemon_v2_statname" + """ + pokemon_v2_statname( + """distinct select on columns""" + distinct_on: [pokemon_v2_statname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_statname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_statname_bool_exp + ): [pokemon_v2_statname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_statname" + """ + pokemon_v2_statname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_statname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_statname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_statname_bool_exp + ): pokemon_v2_statname_aggregate! + + """ + fetch data from the table: "pokemon_v2_statname" using primary key columns + """ + pokemon_v2_statname_by_pk(id: Int!): pokemon_v2_statname + + """ + fetch data from the table: "pokemon_v2_supercontestcombo" + """ + pokemon_v2_supercontestcombo( + """distinct select on columns""" + distinct_on: [pokemon_v2_supercontestcombo_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_supercontestcombo_order_by!] + + """filter the rows returned""" + where: pokemon_v2_supercontestcombo_bool_exp + ): [pokemon_v2_supercontestcombo!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_supercontestcombo" + """ + pokemon_v2_supercontestcombo_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_supercontestcombo_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_supercontestcombo_order_by!] + + """filter the rows returned""" + where: pokemon_v2_supercontestcombo_bool_exp + ): pokemon_v2_supercontestcombo_aggregate! + + """ + fetch data from the table: "pokemon_v2_supercontestcombo" using primary key columns + """ + pokemon_v2_supercontestcombo_by_pk(id: Int!): pokemon_v2_supercontestcombo + + """ + fetch data from the table: "pokemon_v2_supercontesteffect" + """ + pokemon_v2_supercontesteffect( + """distinct select on columns""" + distinct_on: [pokemon_v2_supercontesteffect_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_supercontesteffect_order_by!] + + """filter the rows returned""" + where: pokemon_v2_supercontesteffect_bool_exp + ): [pokemon_v2_supercontesteffect!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_supercontesteffect" + """ + pokemon_v2_supercontesteffect_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_supercontesteffect_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_supercontesteffect_order_by!] + + """filter the rows returned""" + where: pokemon_v2_supercontesteffect_bool_exp + ): pokemon_v2_supercontesteffect_aggregate! + + """ + fetch data from the table: "pokemon_v2_supercontesteffect" using primary key columns + """ + pokemon_v2_supercontesteffect_by_pk(id: Int!): pokemon_v2_supercontesteffect + + """ + fetch data from the table: "pokemon_v2_supercontesteffectflavortext" + """ + pokemon_v2_supercontesteffectflavortext( + """distinct select on columns""" + distinct_on: [pokemon_v2_supercontesteffectflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_supercontesteffectflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_supercontesteffectflavortext_bool_exp + ): [pokemon_v2_supercontesteffectflavortext!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_supercontesteffectflavortext" + """ + pokemon_v2_supercontesteffectflavortext_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_supercontesteffectflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_supercontesteffectflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_supercontesteffectflavortext_bool_exp + ): pokemon_v2_supercontesteffectflavortext_aggregate! + + """ + fetch data from the table: "pokemon_v2_supercontesteffectflavortext" using primary key columns + """ + pokemon_v2_supercontesteffectflavortext_by_pk(id: Int!): pokemon_v2_supercontesteffectflavortext + + """ + fetch data from the table: "pokemon_v2_type" + """ + pokemon_v2_type( + """distinct select on columns""" + distinct_on: [pokemon_v2_type_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_type_order_by!] + + """filter the rows returned""" + where: pokemon_v2_type_bool_exp + ): [pokemon_v2_type!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_type" + """ + pokemon_v2_type_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_type_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_type_order_by!] + + """filter the rows returned""" + where: pokemon_v2_type_bool_exp + ): pokemon_v2_type_aggregate! + + """fetch data from the table: "pokemon_v2_type" using primary key columns""" + pokemon_v2_type_by_pk(id: Int!): pokemon_v2_type + + """ + fetch data from the table: "pokemon_v2_typeefficacy" + """ + pokemon_v2_typeefficacy( + """distinct select on columns""" + distinct_on: [pokemon_v2_typeefficacy_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_typeefficacy_order_by!] + + """filter the rows returned""" + where: pokemon_v2_typeefficacy_bool_exp + ): [pokemon_v2_typeefficacy!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_typeefficacy" + """ + pokemon_v2_typeefficacy_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_typeefficacy_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_typeefficacy_order_by!] + + """filter the rows returned""" + where: pokemon_v2_typeefficacy_bool_exp + ): pokemon_v2_typeefficacy_aggregate! + + """ + fetch data from the table: "pokemon_v2_typeefficacy" using primary key columns + """ + pokemon_v2_typeefficacy_by_pk(id: Int!): pokemon_v2_typeefficacy + + """ + fetch data from the table: "pokemon_v2_typeefficacypast" + """ + pokemon_v2_typeefficacypast( + """distinct select on columns""" + distinct_on: [pokemon_v2_typeefficacypast_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_typeefficacypast_order_by!] + + """filter the rows returned""" + where: pokemon_v2_typeefficacypast_bool_exp + ): [pokemon_v2_typeefficacypast!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_typeefficacypast" + """ + pokemon_v2_typeefficacypast_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_typeefficacypast_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_typeefficacypast_order_by!] + + """filter the rows returned""" + where: pokemon_v2_typeefficacypast_bool_exp + ): pokemon_v2_typeefficacypast_aggregate! + + """ + fetch data from the table: "pokemon_v2_typeefficacypast" using primary key columns + """ + pokemon_v2_typeefficacypast_by_pk(id: Int!): pokemon_v2_typeefficacypast + + """ + fetch data from the table: "pokemon_v2_typegameindex" + """ + pokemon_v2_typegameindex( + """distinct select on columns""" + distinct_on: [pokemon_v2_typegameindex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_typegameindex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_typegameindex_bool_exp + ): [pokemon_v2_typegameindex!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_typegameindex" + """ + pokemon_v2_typegameindex_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_typegameindex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_typegameindex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_typegameindex_bool_exp + ): pokemon_v2_typegameindex_aggregate! + + """ + fetch data from the table: "pokemon_v2_typegameindex" using primary key columns + """ + pokemon_v2_typegameindex_by_pk(id: Int!): pokemon_v2_typegameindex + + """ + fetch data from the table: "pokemon_v2_typename" + """ + pokemon_v2_typename( + """distinct select on columns""" + distinct_on: [pokemon_v2_typename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_typename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_typename_bool_exp + ): [pokemon_v2_typename!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_typename" + """ + pokemon_v2_typename_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_typename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_typename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_typename_bool_exp + ): pokemon_v2_typename_aggregate! + + """ + fetch data from the table: "pokemon_v2_typename" using primary key columns + """ + pokemon_v2_typename_by_pk(id: Int!): pokemon_v2_typename + + """ + fetch data from the table: "pokemon_v2_version" + """ + pokemon_v2_version( + """distinct select on columns""" + distinct_on: [pokemon_v2_version_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_version_order_by!] + + """filter the rows returned""" + where: pokemon_v2_version_bool_exp + ): [pokemon_v2_version!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_version" + """ + pokemon_v2_version_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_version_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_version_order_by!] + + """filter the rows returned""" + where: pokemon_v2_version_bool_exp + ): pokemon_v2_version_aggregate! + + """ + fetch data from the table: "pokemon_v2_version" using primary key columns + """ + pokemon_v2_version_by_pk(id: Int!): pokemon_v2_version + + """ + fetch data from the table: "pokemon_v2_versiongroup" + """ + pokemon_v2_versiongroup( + """distinct select on columns""" + distinct_on: [pokemon_v2_versiongroup_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_versiongroup_order_by!] + + """filter the rows returned""" + where: pokemon_v2_versiongroup_bool_exp + ): [pokemon_v2_versiongroup!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_versiongroup" + """ + pokemon_v2_versiongroup_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_versiongroup_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_versiongroup_order_by!] + + """filter the rows returned""" + where: pokemon_v2_versiongroup_bool_exp + ): pokemon_v2_versiongroup_aggregate! + + """ + fetch data from the table: "pokemon_v2_versiongroup" using primary key columns + """ + pokemon_v2_versiongroup_by_pk(id: Int!): pokemon_v2_versiongroup + + """ + fetch data from the table: "pokemon_v2_versiongroupmovelearnmethod" + """ + pokemon_v2_versiongroupmovelearnmethod( + """distinct select on columns""" + distinct_on: [pokemon_v2_versiongroupmovelearnmethod_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_versiongroupmovelearnmethod_order_by!] + + """filter the rows returned""" + where: pokemon_v2_versiongroupmovelearnmethod_bool_exp + ): [pokemon_v2_versiongroupmovelearnmethod!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_versiongroupmovelearnmethod" + """ + pokemon_v2_versiongroupmovelearnmethod_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_versiongroupmovelearnmethod_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_versiongroupmovelearnmethod_order_by!] + + """filter the rows returned""" + where: pokemon_v2_versiongroupmovelearnmethod_bool_exp + ): pokemon_v2_versiongroupmovelearnmethod_aggregate! + + """ + fetch data from the table: "pokemon_v2_versiongroupmovelearnmethod" using primary key columns + """ + pokemon_v2_versiongroupmovelearnmethod_by_pk(id: Int!): pokemon_v2_versiongroupmovelearnmethod + + """ + fetch data from the table: "pokemon_v2_versiongroupregion" + """ + pokemon_v2_versiongroupregion( + """distinct select on columns""" + distinct_on: [pokemon_v2_versiongroupregion_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_versiongroupregion_order_by!] + + """filter the rows returned""" + where: pokemon_v2_versiongroupregion_bool_exp + ): [pokemon_v2_versiongroupregion!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_versiongroupregion" + """ + pokemon_v2_versiongroupregion_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_versiongroupregion_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_versiongroupregion_order_by!] + + """filter the rows returned""" + where: pokemon_v2_versiongroupregion_bool_exp + ): pokemon_v2_versiongroupregion_aggregate! + + """ + fetch data from the table: "pokemon_v2_versiongroupregion" using primary key columns + """ + pokemon_v2_versiongroupregion_by_pk(id: Int!): pokemon_v2_versiongroupregion + + """ + fetch data from the table: "pokemon_v2_versionname" + """ + pokemon_v2_versionname( + """distinct select on columns""" + distinct_on: [pokemon_v2_versionname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_versionname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_versionname_bool_exp + ): [pokemon_v2_versionname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_versionname" + """ + pokemon_v2_versionname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_versionname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_versionname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_versionname_bool_exp + ): pokemon_v2_versionname_aggregate! + + """ + fetch data from the table: "pokemon_v2_versionname" using primary key columns + """ + pokemon_v2_versionname_by_pk(id: Int!): pokemon_v2_versionname +} + +type subscription_root { + """ + fetch data from the table: "pokemon_v2_ability" + """ + pokemon_v2_ability( + """distinct select on columns""" + distinct_on: [pokemon_v2_ability_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_ability_order_by!] + + """filter the rows returned""" + where: pokemon_v2_ability_bool_exp + ): [pokemon_v2_ability!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_ability" + """ + pokemon_v2_ability_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_ability_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_ability_order_by!] + + """filter the rows returned""" + where: pokemon_v2_ability_bool_exp + ): pokemon_v2_ability_aggregate! + + """ + fetch data from the table: "pokemon_v2_ability" using primary key columns + """ + pokemon_v2_ability_by_pk(id: Int!): pokemon_v2_ability + + """ + fetch data from the table in a streaming manner: "pokemon_v2_ability" + """ + pokemon_v2_ability_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_ability_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_ability_bool_exp + ): [pokemon_v2_ability!]! + + """ + fetch data from the table: "pokemon_v2_abilitychange" + """ + pokemon_v2_abilitychange( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilitychange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilitychange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilitychange_bool_exp + ): [pokemon_v2_abilitychange!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_abilitychange" + """ + pokemon_v2_abilitychange_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilitychange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilitychange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilitychange_bool_exp + ): pokemon_v2_abilitychange_aggregate! + + """ + fetch data from the table: "pokemon_v2_abilitychange" using primary key columns + """ + pokemon_v2_abilitychange_by_pk(id: Int!): pokemon_v2_abilitychange + + """ + fetch data from the table in a streaming manner: "pokemon_v2_abilitychange" + """ + pokemon_v2_abilitychange_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_abilitychange_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_abilitychange_bool_exp + ): [pokemon_v2_abilitychange!]! + + """ + fetch data from the table: "pokemon_v2_abilitychangeeffecttext" + """ + pokemon_v2_abilitychangeeffecttext( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilitychangeeffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilitychangeeffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilitychangeeffecttext_bool_exp + ): [pokemon_v2_abilitychangeeffecttext!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_abilitychangeeffecttext" + """ + pokemon_v2_abilitychangeeffecttext_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilitychangeeffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilitychangeeffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilitychangeeffecttext_bool_exp + ): pokemon_v2_abilitychangeeffecttext_aggregate! + + """ + fetch data from the table: "pokemon_v2_abilitychangeeffecttext" using primary key columns + """ + pokemon_v2_abilitychangeeffecttext_by_pk(id: Int!): pokemon_v2_abilitychangeeffecttext + + """ + fetch data from the table in a streaming manner: "pokemon_v2_abilitychangeeffecttext" + """ + pokemon_v2_abilitychangeeffecttext_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_abilitychangeeffecttext_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_abilitychangeeffecttext_bool_exp + ): [pokemon_v2_abilitychangeeffecttext!]! + + """ + fetch data from the table: "pokemon_v2_abilityeffecttext" + """ + pokemon_v2_abilityeffecttext( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilityeffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilityeffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilityeffecttext_bool_exp + ): [pokemon_v2_abilityeffecttext!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_abilityeffecttext" + """ + pokemon_v2_abilityeffecttext_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilityeffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilityeffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilityeffecttext_bool_exp + ): pokemon_v2_abilityeffecttext_aggregate! + + """ + fetch data from the table: "pokemon_v2_abilityeffecttext" using primary key columns + """ + pokemon_v2_abilityeffecttext_by_pk(id: Int!): pokemon_v2_abilityeffecttext + + """ + fetch data from the table in a streaming manner: "pokemon_v2_abilityeffecttext" + """ + pokemon_v2_abilityeffecttext_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_abilityeffecttext_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_abilityeffecttext_bool_exp + ): [pokemon_v2_abilityeffecttext!]! + + """ + fetch data from the table: "pokemon_v2_abilityflavortext" + """ + pokemon_v2_abilityflavortext( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilityflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilityflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilityflavortext_bool_exp + ): [pokemon_v2_abilityflavortext!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_abilityflavortext" + """ + pokemon_v2_abilityflavortext_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilityflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilityflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilityflavortext_bool_exp + ): pokemon_v2_abilityflavortext_aggregate! + + """ + fetch data from the table: "pokemon_v2_abilityflavortext" using primary key columns + """ + pokemon_v2_abilityflavortext_by_pk(id: Int!): pokemon_v2_abilityflavortext + + """ + fetch data from the table in a streaming manner: "pokemon_v2_abilityflavortext" + """ + pokemon_v2_abilityflavortext_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_abilityflavortext_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_abilityflavortext_bool_exp + ): [pokemon_v2_abilityflavortext!]! + + """ + fetch data from the table: "pokemon_v2_abilityname" + """ + pokemon_v2_abilityname( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilityname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilityname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilityname_bool_exp + ): [pokemon_v2_abilityname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_abilityname" + """ + pokemon_v2_abilityname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_abilityname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_abilityname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_abilityname_bool_exp + ): pokemon_v2_abilityname_aggregate! + + """ + fetch data from the table: "pokemon_v2_abilityname" using primary key columns + """ + pokemon_v2_abilityname_by_pk(id: Int!): pokemon_v2_abilityname + + """ + fetch data from the table in a streaming manner: "pokemon_v2_abilityname" + """ + pokemon_v2_abilityname_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_abilityname_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_abilityname_bool_exp + ): [pokemon_v2_abilityname!]! + + """ + fetch data from the table: "pokemon_v2_berry" + """ + pokemon_v2_berry( + """distinct select on columns""" + distinct_on: [pokemon_v2_berry_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berry_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berry_bool_exp + ): [pokemon_v2_berry!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_berry" + """ + pokemon_v2_berry_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_berry_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berry_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berry_bool_exp + ): pokemon_v2_berry_aggregate! + + """ + fetch data from the table: "pokemon_v2_berry" using primary key columns + """ + pokemon_v2_berry_by_pk(id: Int!): pokemon_v2_berry + + """ + fetch data from the table in a streaming manner: "pokemon_v2_berry" + """ + pokemon_v2_berry_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_berry_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_berry_bool_exp + ): [pokemon_v2_berry!]! + + """ + fetch data from the table: "pokemon_v2_berryfirmness" + """ + pokemon_v2_berryfirmness( + """distinct select on columns""" + distinct_on: [pokemon_v2_berryfirmness_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berryfirmness_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berryfirmness_bool_exp + ): [pokemon_v2_berryfirmness!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_berryfirmness" + """ + pokemon_v2_berryfirmness_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_berryfirmness_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berryfirmness_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berryfirmness_bool_exp + ): pokemon_v2_berryfirmness_aggregate! + + """ + fetch data from the table: "pokemon_v2_berryfirmness" using primary key columns + """ + pokemon_v2_berryfirmness_by_pk(id: Int!): pokemon_v2_berryfirmness + + """ + fetch data from the table in a streaming manner: "pokemon_v2_berryfirmness" + """ + pokemon_v2_berryfirmness_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_berryfirmness_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_berryfirmness_bool_exp + ): [pokemon_v2_berryfirmness!]! + + """ + fetch data from the table: "pokemon_v2_berryfirmnessname" + """ + pokemon_v2_berryfirmnessname( + """distinct select on columns""" + distinct_on: [pokemon_v2_berryfirmnessname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berryfirmnessname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berryfirmnessname_bool_exp + ): [pokemon_v2_berryfirmnessname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_berryfirmnessname" + """ + pokemon_v2_berryfirmnessname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_berryfirmnessname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berryfirmnessname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berryfirmnessname_bool_exp + ): pokemon_v2_berryfirmnessname_aggregate! + + """ + fetch data from the table: "pokemon_v2_berryfirmnessname" using primary key columns + """ + pokemon_v2_berryfirmnessname_by_pk(id: Int!): pokemon_v2_berryfirmnessname + + """ + fetch data from the table in a streaming manner: "pokemon_v2_berryfirmnessname" + """ + pokemon_v2_berryfirmnessname_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_berryfirmnessname_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_berryfirmnessname_bool_exp + ): [pokemon_v2_berryfirmnessname!]! + + """ + fetch data from the table: "pokemon_v2_berryflavor" + """ + pokemon_v2_berryflavor( + """distinct select on columns""" + distinct_on: [pokemon_v2_berryflavor_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berryflavor_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berryflavor_bool_exp + ): [pokemon_v2_berryflavor!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_berryflavor" + """ + pokemon_v2_berryflavor_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_berryflavor_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berryflavor_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berryflavor_bool_exp + ): pokemon_v2_berryflavor_aggregate! + + """ + fetch data from the table: "pokemon_v2_berryflavor" using primary key columns + """ + pokemon_v2_berryflavor_by_pk(id: Int!): pokemon_v2_berryflavor + + """ + fetch data from the table in a streaming manner: "pokemon_v2_berryflavor" + """ + pokemon_v2_berryflavor_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_berryflavor_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_berryflavor_bool_exp + ): [pokemon_v2_berryflavor!]! + + """ + fetch data from the table: "pokemon_v2_berryflavormap" + """ + pokemon_v2_berryflavormap( + """distinct select on columns""" + distinct_on: [pokemon_v2_berryflavormap_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berryflavormap_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berryflavormap_bool_exp + ): [pokemon_v2_berryflavormap!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_berryflavormap" + """ + pokemon_v2_berryflavormap_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_berryflavormap_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berryflavormap_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berryflavormap_bool_exp + ): pokemon_v2_berryflavormap_aggregate! + + """ + fetch data from the table: "pokemon_v2_berryflavormap" using primary key columns + """ + pokemon_v2_berryflavormap_by_pk(id: Int!): pokemon_v2_berryflavormap + + """ + fetch data from the table in a streaming manner: "pokemon_v2_berryflavormap" + """ + pokemon_v2_berryflavormap_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_berryflavormap_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_berryflavormap_bool_exp + ): [pokemon_v2_berryflavormap!]! + + """ + fetch data from the table: "pokemon_v2_berryflavorname" + """ + pokemon_v2_berryflavorname( + """distinct select on columns""" + distinct_on: [pokemon_v2_berryflavorname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berryflavorname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berryflavorname_bool_exp + ): [pokemon_v2_berryflavorname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_berryflavorname" + """ + pokemon_v2_berryflavorname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_berryflavorname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_berryflavorname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_berryflavorname_bool_exp + ): pokemon_v2_berryflavorname_aggregate! + + """ + fetch data from the table: "pokemon_v2_berryflavorname" using primary key columns + """ + pokemon_v2_berryflavorname_by_pk(id: Int!): pokemon_v2_berryflavorname + + """ + fetch data from the table in a streaming manner: "pokemon_v2_berryflavorname" + """ + pokemon_v2_berryflavorname_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_berryflavorname_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_berryflavorname_bool_exp + ): [pokemon_v2_berryflavorname!]! + + """ + fetch data from the table: "pokemon_v2_characteristic" + """ + pokemon_v2_characteristic( + """distinct select on columns""" + distinct_on: [pokemon_v2_characteristic_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_characteristic_order_by!] + + """filter the rows returned""" + where: pokemon_v2_characteristic_bool_exp + ): [pokemon_v2_characteristic!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_characteristic" + """ + pokemon_v2_characteristic_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_characteristic_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_characteristic_order_by!] + + """filter the rows returned""" + where: pokemon_v2_characteristic_bool_exp + ): pokemon_v2_characteristic_aggregate! + + """ + fetch data from the table: "pokemon_v2_characteristic" using primary key columns + """ + pokemon_v2_characteristic_by_pk(id: Int!): pokemon_v2_characteristic + + """ + fetch data from the table in a streaming manner: "pokemon_v2_characteristic" + """ + pokemon_v2_characteristic_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_characteristic_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_characteristic_bool_exp + ): [pokemon_v2_characteristic!]! + + """ + fetch data from the table: "pokemon_v2_characteristicdescription" + """ + pokemon_v2_characteristicdescription( + """distinct select on columns""" + distinct_on: [pokemon_v2_characteristicdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_characteristicdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_characteristicdescription_bool_exp + ): [pokemon_v2_characteristicdescription!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_characteristicdescription" + """ + pokemon_v2_characteristicdescription_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_characteristicdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_characteristicdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_characteristicdescription_bool_exp + ): pokemon_v2_characteristicdescription_aggregate! + + """ + fetch data from the table: "pokemon_v2_characteristicdescription" using primary key columns + """ + pokemon_v2_characteristicdescription_by_pk(id: Int!): pokemon_v2_characteristicdescription + + """ + fetch data from the table in a streaming manner: "pokemon_v2_characteristicdescription" + """ + pokemon_v2_characteristicdescription_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_characteristicdescription_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_characteristicdescription_bool_exp + ): [pokemon_v2_characteristicdescription!]! + + """ + fetch data from the table: "pokemon_v2_contestcombo" + """ + pokemon_v2_contestcombo( + """distinct select on columns""" + distinct_on: [pokemon_v2_contestcombo_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contestcombo_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contestcombo_bool_exp + ): [pokemon_v2_contestcombo!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_contestcombo" + """ + pokemon_v2_contestcombo_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_contestcombo_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contestcombo_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contestcombo_bool_exp + ): pokemon_v2_contestcombo_aggregate! + + """ + fetch data from the table: "pokemon_v2_contestcombo" using primary key columns + """ + pokemon_v2_contestcombo_by_pk(id: Int!): pokemon_v2_contestcombo + + """ + fetch data from the table in a streaming manner: "pokemon_v2_contestcombo" + """ + pokemon_v2_contestcombo_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_contestcombo_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_contestcombo_bool_exp + ): [pokemon_v2_contestcombo!]! + + """ + fetch data from the table: "pokemon_v2_contesteffect" + """ + pokemon_v2_contesteffect( + """distinct select on columns""" + distinct_on: [pokemon_v2_contesteffect_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contesteffect_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contesteffect_bool_exp + ): [pokemon_v2_contesteffect!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_contesteffect" + """ + pokemon_v2_contesteffect_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_contesteffect_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contesteffect_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contesteffect_bool_exp + ): pokemon_v2_contesteffect_aggregate! + + """ + fetch data from the table: "pokemon_v2_contesteffect" using primary key columns + """ + pokemon_v2_contesteffect_by_pk(id: Int!): pokemon_v2_contesteffect + + """ + fetch data from the table in a streaming manner: "pokemon_v2_contesteffect" + """ + pokemon_v2_contesteffect_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_contesteffect_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_contesteffect_bool_exp + ): [pokemon_v2_contesteffect!]! + + """ + fetch data from the table: "pokemon_v2_contesteffecteffecttext" + """ + pokemon_v2_contesteffecteffecttext( + """distinct select on columns""" + distinct_on: [pokemon_v2_contesteffecteffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contesteffecteffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contesteffecteffecttext_bool_exp + ): [pokemon_v2_contesteffecteffecttext!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_contesteffecteffecttext" + """ + pokemon_v2_contesteffecteffecttext_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_contesteffecteffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contesteffecteffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contesteffecteffecttext_bool_exp + ): pokemon_v2_contesteffecteffecttext_aggregate! + + """ + fetch data from the table: "pokemon_v2_contesteffecteffecttext" using primary key columns + """ + pokemon_v2_contesteffecteffecttext_by_pk(id: Int!): pokemon_v2_contesteffecteffecttext + + """ + fetch data from the table in a streaming manner: "pokemon_v2_contesteffecteffecttext" + """ + pokemon_v2_contesteffecteffecttext_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_contesteffecteffecttext_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_contesteffecteffecttext_bool_exp + ): [pokemon_v2_contesteffecteffecttext!]! + + """ + fetch data from the table: "pokemon_v2_contesteffectflavortext" + """ + pokemon_v2_contesteffectflavortext( + """distinct select on columns""" + distinct_on: [pokemon_v2_contesteffectflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contesteffectflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contesteffectflavortext_bool_exp + ): [pokemon_v2_contesteffectflavortext!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_contesteffectflavortext" + """ + pokemon_v2_contesteffectflavortext_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_contesteffectflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contesteffectflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contesteffectflavortext_bool_exp + ): pokemon_v2_contesteffectflavortext_aggregate! + + """ + fetch data from the table: "pokemon_v2_contesteffectflavortext" using primary key columns + """ + pokemon_v2_contesteffectflavortext_by_pk(id: Int!): pokemon_v2_contesteffectflavortext + + """ + fetch data from the table in a streaming manner: "pokemon_v2_contesteffectflavortext" + """ + pokemon_v2_contesteffectflavortext_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_contesteffectflavortext_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_contesteffectflavortext_bool_exp + ): [pokemon_v2_contesteffectflavortext!]! + + """ + fetch data from the table: "pokemon_v2_contesttype" + """ + pokemon_v2_contesttype( + """distinct select on columns""" + distinct_on: [pokemon_v2_contesttype_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contesttype_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contesttype_bool_exp + ): [pokemon_v2_contesttype!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_contesttype" + """ + pokemon_v2_contesttype_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_contesttype_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contesttype_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contesttype_bool_exp + ): pokemon_v2_contesttype_aggregate! + + """ + fetch data from the table: "pokemon_v2_contesttype" using primary key columns + """ + pokemon_v2_contesttype_by_pk(id: Int!): pokemon_v2_contesttype + + """ + fetch data from the table in a streaming manner: "pokemon_v2_contesttype" + """ + pokemon_v2_contesttype_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_contesttype_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_contesttype_bool_exp + ): [pokemon_v2_contesttype!]! + + """ + fetch data from the table: "pokemon_v2_contesttypename" + """ + pokemon_v2_contesttypename( + """distinct select on columns""" + distinct_on: [pokemon_v2_contesttypename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contesttypename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contesttypename_bool_exp + ): [pokemon_v2_contesttypename!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_contesttypename" + """ + pokemon_v2_contesttypename_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_contesttypename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_contesttypename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_contesttypename_bool_exp + ): pokemon_v2_contesttypename_aggregate! + + """ + fetch data from the table: "pokemon_v2_contesttypename" using primary key columns + """ + pokemon_v2_contesttypename_by_pk(id: Int!): pokemon_v2_contesttypename + + """ + fetch data from the table in a streaming manner: "pokemon_v2_contesttypename" + """ + pokemon_v2_contesttypename_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_contesttypename_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_contesttypename_bool_exp + ): [pokemon_v2_contesttypename!]! + + """ + fetch data from the table: "pokemon_v2_egggroup" + """ + pokemon_v2_egggroup( + """distinct select on columns""" + distinct_on: [pokemon_v2_egggroup_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_egggroup_order_by!] + + """filter the rows returned""" + where: pokemon_v2_egggroup_bool_exp + ): [pokemon_v2_egggroup!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_egggroup" + """ + pokemon_v2_egggroup_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_egggroup_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_egggroup_order_by!] + + """filter the rows returned""" + where: pokemon_v2_egggroup_bool_exp + ): pokemon_v2_egggroup_aggregate! + + """ + fetch data from the table: "pokemon_v2_egggroup" using primary key columns + """ + pokemon_v2_egggroup_by_pk(id: Int!): pokemon_v2_egggroup + + """ + fetch data from the table in a streaming manner: "pokemon_v2_egggroup" + """ + pokemon_v2_egggroup_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_egggroup_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_egggroup_bool_exp + ): [pokemon_v2_egggroup!]! + + """ + fetch data from the table: "pokemon_v2_egggroupname" + """ + pokemon_v2_egggroupname( + """distinct select on columns""" + distinct_on: [pokemon_v2_egggroupname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_egggroupname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_egggroupname_bool_exp + ): [pokemon_v2_egggroupname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_egggroupname" + """ + pokemon_v2_egggroupname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_egggroupname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_egggroupname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_egggroupname_bool_exp + ): pokemon_v2_egggroupname_aggregate! + + """ + fetch data from the table: "pokemon_v2_egggroupname" using primary key columns + """ + pokemon_v2_egggroupname_by_pk(id: Int!): pokemon_v2_egggroupname + + """ + fetch data from the table in a streaming manner: "pokemon_v2_egggroupname" + """ + pokemon_v2_egggroupname_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_egggroupname_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_egggroupname_bool_exp + ): [pokemon_v2_egggroupname!]! + + """ + fetch data from the table: "pokemon_v2_encounter" + """ + pokemon_v2_encounter( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounter_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounter_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounter_bool_exp + ): [pokemon_v2_encounter!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_encounter" + """ + pokemon_v2_encounter_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounter_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounter_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounter_bool_exp + ): pokemon_v2_encounter_aggregate! + + """ + fetch data from the table: "pokemon_v2_encounter" using primary key columns + """ + pokemon_v2_encounter_by_pk(id: Int!): pokemon_v2_encounter + + """ + fetch data from the table in a streaming manner: "pokemon_v2_encounter" + """ + pokemon_v2_encounter_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_encounter_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_encounter_bool_exp + ): [pokemon_v2_encounter!]! + + """ + fetch data from the table: "pokemon_v2_encountercondition" + """ + pokemon_v2_encountercondition( + """distinct select on columns""" + distinct_on: [pokemon_v2_encountercondition_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encountercondition_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encountercondition_bool_exp + ): [pokemon_v2_encountercondition!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_encountercondition" + """ + pokemon_v2_encountercondition_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_encountercondition_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encountercondition_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encountercondition_bool_exp + ): pokemon_v2_encountercondition_aggregate! + + """ + fetch data from the table: "pokemon_v2_encountercondition" using primary key columns + """ + pokemon_v2_encountercondition_by_pk(id: Int!): pokemon_v2_encountercondition + + """ + fetch data from the table in a streaming manner: "pokemon_v2_encountercondition" + """ + pokemon_v2_encountercondition_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_encountercondition_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_encountercondition_bool_exp + ): [pokemon_v2_encountercondition!]! + + """ + fetch data from the table: "pokemon_v2_encounterconditionname" + """ + pokemon_v2_encounterconditionname( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterconditionname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterconditionname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterconditionname_bool_exp + ): [pokemon_v2_encounterconditionname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_encounterconditionname" + """ + pokemon_v2_encounterconditionname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterconditionname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterconditionname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterconditionname_bool_exp + ): pokemon_v2_encounterconditionname_aggregate! + + """ + fetch data from the table: "pokemon_v2_encounterconditionname" using primary key columns + """ + pokemon_v2_encounterconditionname_by_pk(id: Int!): pokemon_v2_encounterconditionname + + """ + fetch data from the table in a streaming manner: "pokemon_v2_encounterconditionname" + """ + pokemon_v2_encounterconditionname_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_encounterconditionname_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_encounterconditionname_bool_exp + ): [pokemon_v2_encounterconditionname!]! + + """ + fetch data from the table: "pokemon_v2_encounterconditionvalue" + """ + pokemon_v2_encounterconditionvalue( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterconditionvalue_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterconditionvalue_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterconditionvalue_bool_exp + ): [pokemon_v2_encounterconditionvalue!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_encounterconditionvalue" + """ + pokemon_v2_encounterconditionvalue_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterconditionvalue_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterconditionvalue_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterconditionvalue_bool_exp + ): pokemon_v2_encounterconditionvalue_aggregate! + + """ + fetch data from the table: "pokemon_v2_encounterconditionvalue" using primary key columns + """ + pokemon_v2_encounterconditionvalue_by_pk(id: Int!): pokemon_v2_encounterconditionvalue + + """ + fetch data from the table in a streaming manner: "pokemon_v2_encounterconditionvalue" + """ + pokemon_v2_encounterconditionvalue_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_encounterconditionvalue_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_encounterconditionvalue_bool_exp + ): [pokemon_v2_encounterconditionvalue!]! + + """ + fetch data from the table: "pokemon_v2_encounterconditionvaluemap" + """ + pokemon_v2_encounterconditionvaluemap( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterconditionvaluemap_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterconditionvaluemap_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterconditionvaluemap_bool_exp + ): [pokemon_v2_encounterconditionvaluemap!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_encounterconditionvaluemap" + """ + pokemon_v2_encounterconditionvaluemap_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterconditionvaluemap_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterconditionvaluemap_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterconditionvaluemap_bool_exp + ): pokemon_v2_encounterconditionvaluemap_aggregate! + + """ + fetch data from the table: "pokemon_v2_encounterconditionvaluemap" using primary key columns + """ + pokemon_v2_encounterconditionvaluemap_by_pk(id: Int!): pokemon_v2_encounterconditionvaluemap + + """ + fetch data from the table in a streaming manner: "pokemon_v2_encounterconditionvaluemap" + """ + pokemon_v2_encounterconditionvaluemap_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_encounterconditionvaluemap_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_encounterconditionvaluemap_bool_exp + ): [pokemon_v2_encounterconditionvaluemap!]! + + """ + fetch data from the table: "pokemon_v2_encounterconditionvaluename" + """ + pokemon_v2_encounterconditionvaluename( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterconditionvaluename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterconditionvaluename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterconditionvaluename_bool_exp + ): [pokemon_v2_encounterconditionvaluename!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_encounterconditionvaluename" + """ + pokemon_v2_encounterconditionvaluename_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterconditionvaluename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterconditionvaluename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterconditionvaluename_bool_exp + ): pokemon_v2_encounterconditionvaluename_aggregate! + + """ + fetch data from the table: "pokemon_v2_encounterconditionvaluename" using primary key columns + """ + pokemon_v2_encounterconditionvaluename_by_pk(id: Int!): pokemon_v2_encounterconditionvaluename + + """ + fetch data from the table in a streaming manner: "pokemon_v2_encounterconditionvaluename" + """ + pokemon_v2_encounterconditionvaluename_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_encounterconditionvaluename_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_encounterconditionvaluename_bool_exp + ): [pokemon_v2_encounterconditionvaluename!]! + + """ + fetch data from the table: "pokemon_v2_encountermethod" + """ + pokemon_v2_encountermethod( + """distinct select on columns""" + distinct_on: [pokemon_v2_encountermethod_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encountermethod_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encountermethod_bool_exp + ): [pokemon_v2_encountermethod!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_encountermethod" + """ + pokemon_v2_encountermethod_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_encountermethod_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encountermethod_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encountermethod_bool_exp + ): pokemon_v2_encountermethod_aggregate! + + """ + fetch data from the table: "pokemon_v2_encountermethod" using primary key columns + """ + pokemon_v2_encountermethod_by_pk(id: Int!): pokemon_v2_encountermethod + + """ + fetch data from the table in a streaming manner: "pokemon_v2_encountermethod" + """ + pokemon_v2_encountermethod_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_encountermethod_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_encountermethod_bool_exp + ): [pokemon_v2_encountermethod!]! + + """ + fetch data from the table: "pokemon_v2_encountermethodname" + """ + pokemon_v2_encountermethodname( + """distinct select on columns""" + distinct_on: [pokemon_v2_encountermethodname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encountermethodname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encountermethodname_bool_exp + ): [pokemon_v2_encountermethodname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_encountermethodname" + """ + pokemon_v2_encountermethodname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_encountermethodname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encountermethodname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encountermethodname_bool_exp + ): pokemon_v2_encountermethodname_aggregate! + + """ + fetch data from the table: "pokemon_v2_encountermethodname" using primary key columns + """ + pokemon_v2_encountermethodname_by_pk(id: Int!): pokemon_v2_encountermethodname + + """ + fetch data from the table in a streaming manner: "pokemon_v2_encountermethodname" + """ + pokemon_v2_encountermethodname_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_encountermethodname_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_encountermethodname_bool_exp + ): [pokemon_v2_encountermethodname!]! + + """ + fetch data from the table: "pokemon_v2_encounterslot" + """ + pokemon_v2_encounterslot( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterslot_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterslot_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterslot_bool_exp + ): [pokemon_v2_encounterslot!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_encounterslot" + """ + pokemon_v2_encounterslot_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_encounterslot_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_encounterslot_order_by!] + + """filter the rows returned""" + where: pokemon_v2_encounterslot_bool_exp + ): pokemon_v2_encounterslot_aggregate! + + """ + fetch data from the table: "pokemon_v2_encounterslot" using primary key columns + """ + pokemon_v2_encounterslot_by_pk(id: Int!): pokemon_v2_encounterslot + + """ + fetch data from the table in a streaming manner: "pokemon_v2_encounterslot" + """ + pokemon_v2_encounterslot_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_encounterslot_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_encounterslot_bool_exp + ): [pokemon_v2_encounterslot!]! + + """ + fetch data from the table: "pokemon_v2_evolutionchain" + """ + pokemon_v2_evolutionchain( + """distinct select on columns""" + distinct_on: [pokemon_v2_evolutionchain_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_evolutionchain_order_by!] + + """filter the rows returned""" + where: pokemon_v2_evolutionchain_bool_exp + ): [pokemon_v2_evolutionchain!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_evolutionchain" + """ + pokemon_v2_evolutionchain_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_evolutionchain_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_evolutionchain_order_by!] + + """filter the rows returned""" + where: pokemon_v2_evolutionchain_bool_exp + ): pokemon_v2_evolutionchain_aggregate! + + """ + fetch data from the table: "pokemon_v2_evolutionchain" using primary key columns + """ + pokemon_v2_evolutionchain_by_pk(id: Int!): pokemon_v2_evolutionchain + + """ + fetch data from the table in a streaming manner: "pokemon_v2_evolutionchain" + """ + pokemon_v2_evolutionchain_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_evolutionchain_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_evolutionchain_bool_exp + ): [pokemon_v2_evolutionchain!]! + + """ + fetch data from the table: "pokemon_v2_evolutiontrigger" + """ + pokemon_v2_evolutiontrigger( + """distinct select on columns""" + distinct_on: [pokemon_v2_evolutiontrigger_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_evolutiontrigger_order_by!] + + """filter the rows returned""" + where: pokemon_v2_evolutiontrigger_bool_exp + ): [pokemon_v2_evolutiontrigger!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_evolutiontrigger" + """ + pokemon_v2_evolutiontrigger_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_evolutiontrigger_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_evolutiontrigger_order_by!] + + """filter the rows returned""" + where: pokemon_v2_evolutiontrigger_bool_exp + ): pokemon_v2_evolutiontrigger_aggregate! + + """ + fetch data from the table: "pokemon_v2_evolutiontrigger" using primary key columns + """ + pokemon_v2_evolutiontrigger_by_pk(id: Int!): pokemon_v2_evolutiontrigger + + """ + fetch data from the table in a streaming manner: "pokemon_v2_evolutiontrigger" + """ + pokemon_v2_evolutiontrigger_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_evolutiontrigger_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_evolutiontrigger_bool_exp + ): [pokemon_v2_evolutiontrigger!]! + + """ + fetch data from the table: "pokemon_v2_evolutiontriggername" + """ + pokemon_v2_evolutiontriggername( + """distinct select on columns""" + distinct_on: [pokemon_v2_evolutiontriggername_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_evolutiontriggername_order_by!] + + """filter the rows returned""" + where: pokemon_v2_evolutiontriggername_bool_exp + ): [pokemon_v2_evolutiontriggername!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_evolutiontriggername" + """ + pokemon_v2_evolutiontriggername_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_evolutiontriggername_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_evolutiontriggername_order_by!] + + """filter the rows returned""" + where: pokemon_v2_evolutiontriggername_bool_exp + ): pokemon_v2_evolutiontriggername_aggregate! + + """ + fetch data from the table: "pokemon_v2_evolutiontriggername" using primary key columns + """ + pokemon_v2_evolutiontriggername_by_pk(id: Int!): pokemon_v2_evolutiontriggername + + """ + fetch data from the table in a streaming manner: "pokemon_v2_evolutiontriggername" + """ + pokemon_v2_evolutiontriggername_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_evolutiontriggername_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_evolutiontriggername_bool_exp + ): [pokemon_v2_evolutiontriggername!]! + + """ + fetch data from the table: "pokemon_v2_experience" + """ + pokemon_v2_experience( + """distinct select on columns""" + distinct_on: [pokemon_v2_experience_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_experience_order_by!] + + """filter the rows returned""" + where: pokemon_v2_experience_bool_exp + ): [pokemon_v2_experience!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_experience" + """ + pokemon_v2_experience_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_experience_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_experience_order_by!] + + """filter the rows returned""" + where: pokemon_v2_experience_bool_exp + ): pokemon_v2_experience_aggregate! + + """ + fetch data from the table: "pokemon_v2_experience" using primary key columns + """ + pokemon_v2_experience_by_pk(id: Int!): pokemon_v2_experience + + """ + fetch data from the table in a streaming manner: "pokemon_v2_experience" + """ + pokemon_v2_experience_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_experience_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_experience_bool_exp + ): [pokemon_v2_experience!]! + + """ + fetch data from the table: "pokemon_v2_gender" + """ + pokemon_v2_gender( + """distinct select on columns""" + distinct_on: [pokemon_v2_gender_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_gender_order_by!] + + """filter the rows returned""" + where: pokemon_v2_gender_bool_exp + ): [pokemon_v2_gender!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_gender" + """ + pokemon_v2_gender_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_gender_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_gender_order_by!] + + """filter the rows returned""" + where: pokemon_v2_gender_bool_exp + ): pokemon_v2_gender_aggregate! + + """ + fetch data from the table: "pokemon_v2_gender" using primary key columns + """ + pokemon_v2_gender_by_pk(id: Int!): pokemon_v2_gender + + """ + fetch data from the table in a streaming manner: "pokemon_v2_gender" + """ + pokemon_v2_gender_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_gender_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_gender_bool_exp + ): [pokemon_v2_gender!]! + + """ + fetch data from the table: "pokemon_v2_generation" + """ + pokemon_v2_generation( + """distinct select on columns""" + distinct_on: [pokemon_v2_generation_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_generation_order_by!] + + """filter the rows returned""" + where: pokemon_v2_generation_bool_exp + ): [pokemon_v2_generation!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_generation" + """ + pokemon_v2_generation_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_generation_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_generation_order_by!] + + """filter the rows returned""" + where: pokemon_v2_generation_bool_exp + ): pokemon_v2_generation_aggregate! + + """ + fetch data from the table: "pokemon_v2_generation" using primary key columns + """ + pokemon_v2_generation_by_pk(id: Int!): pokemon_v2_generation + + """ + fetch data from the table in a streaming manner: "pokemon_v2_generation" + """ + pokemon_v2_generation_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_generation_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_generation_bool_exp + ): [pokemon_v2_generation!]! + + """ + fetch data from the table: "pokemon_v2_generationname" + """ + pokemon_v2_generationname( + """distinct select on columns""" + distinct_on: [pokemon_v2_generationname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_generationname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_generationname_bool_exp + ): [pokemon_v2_generationname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_generationname" + """ + pokemon_v2_generationname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_generationname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_generationname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_generationname_bool_exp + ): pokemon_v2_generationname_aggregate! + + """ + fetch data from the table: "pokemon_v2_generationname" using primary key columns + """ + pokemon_v2_generationname_by_pk(id: Int!): pokemon_v2_generationname + + """ + fetch data from the table in a streaming manner: "pokemon_v2_generationname" + """ + pokemon_v2_generationname_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_generationname_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_generationname_bool_exp + ): [pokemon_v2_generationname!]! + + """ + fetch data from the table: "pokemon_v2_growthrate" + """ + pokemon_v2_growthrate( + """distinct select on columns""" + distinct_on: [pokemon_v2_growthrate_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_growthrate_order_by!] + + """filter the rows returned""" + where: pokemon_v2_growthrate_bool_exp + ): [pokemon_v2_growthrate!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_growthrate" + """ + pokemon_v2_growthrate_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_growthrate_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_growthrate_order_by!] + + """filter the rows returned""" + where: pokemon_v2_growthrate_bool_exp + ): pokemon_v2_growthrate_aggregate! + + """ + fetch data from the table: "pokemon_v2_growthrate" using primary key columns + """ + pokemon_v2_growthrate_by_pk(id: Int!): pokemon_v2_growthrate + + """ + fetch data from the table in a streaming manner: "pokemon_v2_growthrate" + """ + pokemon_v2_growthrate_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_growthrate_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_growthrate_bool_exp + ): [pokemon_v2_growthrate!]! + + """ + fetch data from the table: "pokemon_v2_growthratedescription" + """ + pokemon_v2_growthratedescription( + """distinct select on columns""" + distinct_on: [pokemon_v2_growthratedescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_growthratedescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_growthratedescription_bool_exp + ): [pokemon_v2_growthratedescription!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_growthratedescription" + """ + pokemon_v2_growthratedescription_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_growthratedescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_growthratedescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_growthratedescription_bool_exp + ): pokemon_v2_growthratedescription_aggregate! + + """ + fetch data from the table: "pokemon_v2_growthratedescription" using primary key columns + """ + pokemon_v2_growthratedescription_by_pk(id: Int!): pokemon_v2_growthratedescription + + """ + fetch data from the table in a streaming manner: "pokemon_v2_growthratedescription" + """ + pokemon_v2_growthratedescription_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_growthratedescription_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_growthratedescription_bool_exp + ): [pokemon_v2_growthratedescription!]! + + """ + fetch data from the table: "pokemon_v2_item" + """ + pokemon_v2_item( + """distinct select on columns""" + distinct_on: [pokemon_v2_item_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_item_order_by!] + + """filter the rows returned""" + where: pokemon_v2_item_bool_exp + ): [pokemon_v2_item!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_item" + """ + pokemon_v2_item_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_item_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_item_order_by!] + + """filter the rows returned""" + where: pokemon_v2_item_bool_exp + ): pokemon_v2_item_aggregate! + + """fetch data from the table: "pokemon_v2_item" using primary key columns""" + pokemon_v2_item_by_pk(id: Int!): pokemon_v2_item + + """ + fetch data from the table in a streaming manner: "pokemon_v2_item" + """ + pokemon_v2_item_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_item_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_item_bool_exp + ): [pokemon_v2_item!]! + + """ + fetch data from the table: "pokemon_v2_itemattribute" + """ + pokemon_v2_itemattribute( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemattribute_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemattribute_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemattribute_bool_exp + ): [pokemon_v2_itemattribute!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_itemattribute" + """ + pokemon_v2_itemattribute_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemattribute_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemattribute_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemattribute_bool_exp + ): pokemon_v2_itemattribute_aggregate! + + """ + fetch data from the table: "pokemon_v2_itemattribute" using primary key columns + """ + pokemon_v2_itemattribute_by_pk(id: Int!): pokemon_v2_itemattribute + + """ + fetch data from the table in a streaming manner: "pokemon_v2_itemattribute" + """ + pokemon_v2_itemattribute_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_itemattribute_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_itemattribute_bool_exp + ): [pokemon_v2_itemattribute!]! + + """ + fetch data from the table: "pokemon_v2_itemattributedescription" + """ + pokemon_v2_itemattributedescription( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemattributedescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemattributedescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemattributedescription_bool_exp + ): [pokemon_v2_itemattributedescription!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_itemattributedescription" + """ + pokemon_v2_itemattributedescription_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemattributedescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemattributedescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemattributedescription_bool_exp + ): pokemon_v2_itemattributedescription_aggregate! + + """ + fetch data from the table: "pokemon_v2_itemattributedescription" using primary key columns + """ + pokemon_v2_itemattributedescription_by_pk(id: Int!): pokemon_v2_itemattributedescription + + """ + fetch data from the table in a streaming manner: "pokemon_v2_itemattributedescription" + """ + pokemon_v2_itemattributedescription_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_itemattributedescription_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_itemattributedescription_bool_exp + ): [pokemon_v2_itemattributedescription!]! + + """ + fetch data from the table: "pokemon_v2_itemattributemap" + """ + pokemon_v2_itemattributemap( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemattributemap_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemattributemap_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemattributemap_bool_exp + ): [pokemon_v2_itemattributemap!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_itemattributemap" + """ + pokemon_v2_itemattributemap_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemattributemap_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemattributemap_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemattributemap_bool_exp + ): pokemon_v2_itemattributemap_aggregate! + + """ + fetch data from the table: "pokemon_v2_itemattributemap" using primary key columns + """ + pokemon_v2_itemattributemap_by_pk(id: Int!): pokemon_v2_itemattributemap + + """ + fetch data from the table in a streaming manner: "pokemon_v2_itemattributemap" + """ + pokemon_v2_itemattributemap_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_itemattributemap_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_itemattributemap_bool_exp + ): [pokemon_v2_itemattributemap!]! + + """ + fetch data from the table: "pokemon_v2_itemattributename" + """ + pokemon_v2_itemattributename( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemattributename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemattributename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemattributename_bool_exp + ): [pokemon_v2_itemattributename!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_itemattributename" + """ + pokemon_v2_itemattributename_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemattributename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemattributename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemattributename_bool_exp + ): pokemon_v2_itemattributename_aggregate! + + """ + fetch data from the table: "pokemon_v2_itemattributename" using primary key columns + """ + pokemon_v2_itemattributename_by_pk(id: Int!): pokemon_v2_itemattributename + + """ + fetch data from the table in a streaming manner: "pokemon_v2_itemattributename" + """ + pokemon_v2_itemattributename_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_itemattributename_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_itemattributename_bool_exp + ): [pokemon_v2_itemattributename!]! + + """ + fetch data from the table: "pokemon_v2_itemcategory" + """ + pokemon_v2_itemcategory( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemcategory_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemcategory_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemcategory_bool_exp + ): [pokemon_v2_itemcategory!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_itemcategory" + """ + pokemon_v2_itemcategory_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemcategory_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemcategory_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemcategory_bool_exp + ): pokemon_v2_itemcategory_aggregate! + + """ + fetch data from the table: "pokemon_v2_itemcategory" using primary key columns + """ + pokemon_v2_itemcategory_by_pk(id: Int!): pokemon_v2_itemcategory + + """ + fetch data from the table in a streaming manner: "pokemon_v2_itemcategory" + """ + pokemon_v2_itemcategory_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_itemcategory_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_itemcategory_bool_exp + ): [pokemon_v2_itemcategory!]! + + """ + fetch data from the table: "pokemon_v2_itemcategoryname" + """ + pokemon_v2_itemcategoryname( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemcategoryname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemcategoryname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemcategoryname_bool_exp + ): [pokemon_v2_itemcategoryname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_itemcategoryname" + """ + pokemon_v2_itemcategoryname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemcategoryname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemcategoryname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemcategoryname_bool_exp + ): pokemon_v2_itemcategoryname_aggregate! + + """ + fetch data from the table: "pokemon_v2_itemcategoryname" using primary key columns + """ + pokemon_v2_itemcategoryname_by_pk(id: Int!): pokemon_v2_itemcategoryname + + """ + fetch data from the table in a streaming manner: "pokemon_v2_itemcategoryname" + """ + pokemon_v2_itemcategoryname_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_itemcategoryname_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_itemcategoryname_bool_exp + ): [pokemon_v2_itemcategoryname!]! + + """ + fetch data from the table: "pokemon_v2_itemeffecttext" + """ + pokemon_v2_itemeffecttext( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemeffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemeffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemeffecttext_bool_exp + ): [pokemon_v2_itemeffecttext!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_itemeffecttext" + """ + pokemon_v2_itemeffecttext_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemeffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemeffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemeffecttext_bool_exp + ): pokemon_v2_itemeffecttext_aggregate! + + """ + fetch data from the table: "pokemon_v2_itemeffecttext" using primary key columns + """ + pokemon_v2_itemeffecttext_by_pk(id: Int!): pokemon_v2_itemeffecttext + + """ + fetch data from the table in a streaming manner: "pokemon_v2_itemeffecttext" + """ + pokemon_v2_itemeffecttext_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_itemeffecttext_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_itemeffecttext_bool_exp + ): [pokemon_v2_itemeffecttext!]! + + """ + fetch data from the table: "pokemon_v2_itemflavortext" + """ + pokemon_v2_itemflavortext( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemflavortext_bool_exp + ): [pokemon_v2_itemflavortext!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_itemflavortext" + """ + pokemon_v2_itemflavortext_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemflavortext_bool_exp + ): pokemon_v2_itemflavortext_aggregate! + + """ + fetch data from the table: "pokemon_v2_itemflavortext" using primary key columns + """ + pokemon_v2_itemflavortext_by_pk(id: Int!): pokemon_v2_itemflavortext + + """ + fetch data from the table in a streaming manner: "pokemon_v2_itemflavortext" + """ + pokemon_v2_itemflavortext_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_itemflavortext_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_itemflavortext_bool_exp + ): [pokemon_v2_itemflavortext!]! + + """ + fetch data from the table: "pokemon_v2_itemflingeffect" + """ + pokemon_v2_itemflingeffect( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemflingeffect_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemflingeffect_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemflingeffect_bool_exp + ): [pokemon_v2_itemflingeffect!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_itemflingeffect" + """ + pokemon_v2_itemflingeffect_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemflingeffect_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemflingeffect_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemflingeffect_bool_exp + ): pokemon_v2_itemflingeffect_aggregate! + + """ + fetch data from the table: "pokemon_v2_itemflingeffect" using primary key columns + """ + pokemon_v2_itemflingeffect_by_pk(id: Int!): pokemon_v2_itemflingeffect + + """ + fetch data from the table in a streaming manner: "pokemon_v2_itemflingeffect" + """ + pokemon_v2_itemflingeffect_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_itemflingeffect_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_itemflingeffect_bool_exp + ): [pokemon_v2_itemflingeffect!]! + + """ + fetch data from the table: "pokemon_v2_itemflingeffecteffecttext" + """ + pokemon_v2_itemflingeffecteffecttext( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemflingeffecteffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemflingeffecteffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemflingeffecteffecttext_bool_exp + ): [pokemon_v2_itemflingeffecteffecttext!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_itemflingeffecteffecttext" + """ + pokemon_v2_itemflingeffecteffecttext_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemflingeffecteffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemflingeffecteffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemflingeffecteffecttext_bool_exp + ): pokemon_v2_itemflingeffecteffecttext_aggregate! + + """ + fetch data from the table: "pokemon_v2_itemflingeffecteffecttext" using primary key columns + """ + pokemon_v2_itemflingeffecteffecttext_by_pk(id: Int!): pokemon_v2_itemflingeffecteffecttext + + """ + fetch data from the table in a streaming manner: "pokemon_v2_itemflingeffecteffecttext" + """ + pokemon_v2_itemflingeffecteffecttext_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_itemflingeffecteffecttext_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_itemflingeffecteffecttext_bool_exp + ): [pokemon_v2_itemflingeffecteffecttext!]! + + """ + fetch data from the table: "pokemon_v2_itemgameindex" + """ + pokemon_v2_itemgameindex( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemgameindex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemgameindex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemgameindex_bool_exp + ): [pokemon_v2_itemgameindex!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_itemgameindex" + """ + pokemon_v2_itemgameindex_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemgameindex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemgameindex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemgameindex_bool_exp + ): pokemon_v2_itemgameindex_aggregate! + + """ + fetch data from the table: "pokemon_v2_itemgameindex" using primary key columns + """ + pokemon_v2_itemgameindex_by_pk(id: Int!): pokemon_v2_itemgameindex + + """ + fetch data from the table in a streaming manner: "pokemon_v2_itemgameindex" + """ + pokemon_v2_itemgameindex_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_itemgameindex_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_itemgameindex_bool_exp + ): [pokemon_v2_itemgameindex!]! + + """ + fetch data from the table: "pokemon_v2_itemname" + """ + pokemon_v2_itemname( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemname_bool_exp + ): [pokemon_v2_itemname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_itemname" + """ + pokemon_v2_itemname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemname_bool_exp + ): pokemon_v2_itemname_aggregate! + + """ + fetch data from the table: "pokemon_v2_itemname" using primary key columns + """ + pokemon_v2_itemname_by_pk(id: Int!): pokemon_v2_itemname + + """ + fetch data from the table in a streaming manner: "pokemon_v2_itemname" + """ + pokemon_v2_itemname_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_itemname_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_itemname_bool_exp + ): [pokemon_v2_itemname!]! + + """ + fetch data from the table: "pokemon_v2_itempocket" + """ + pokemon_v2_itempocket( + """distinct select on columns""" + distinct_on: [pokemon_v2_itempocket_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itempocket_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itempocket_bool_exp + ): [pokemon_v2_itempocket!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_itempocket" + """ + pokemon_v2_itempocket_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itempocket_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itempocket_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itempocket_bool_exp + ): pokemon_v2_itempocket_aggregate! + + """ + fetch data from the table: "pokemon_v2_itempocket" using primary key columns + """ + pokemon_v2_itempocket_by_pk(id: Int!): pokemon_v2_itempocket + + """ + fetch data from the table in a streaming manner: "pokemon_v2_itempocket" + """ + pokemon_v2_itempocket_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_itempocket_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_itempocket_bool_exp + ): [pokemon_v2_itempocket!]! + + """ + fetch data from the table: "pokemon_v2_itempocketname" + """ + pokemon_v2_itempocketname( + """distinct select on columns""" + distinct_on: [pokemon_v2_itempocketname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itempocketname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itempocketname_bool_exp + ): [pokemon_v2_itempocketname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_itempocketname" + """ + pokemon_v2_itempocketname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itempocketname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itempocketname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itempocketname_bool_exp + ): pokemon_v2_itempocketname_aggregate! + + """ + fetch data from the table: "pokemon_v2_itempocketname" using primary key columns + """ + pokemon_v2_itempocketname_by_pk(id: Int!): pokemon_v2_itempocketname + + """ + fetch data from the table in a streaming manner: "pokemon_v2_itempocketname" + """ + pokemon_v2_itempocketname_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_itempocketname_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_itempocketname_bool_exp + ): [pokemon_v2_itempocketname!]! + + """An array relationship""" + pokemon_v2_itemsprites( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemsprites_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemsprites_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemsprites_bool_exp + ): [pokemon_v2_itemsprites!]! + + """An aggregate relationship""" + pokemon_v2_itemsprites_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_itemsprites_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_itemsprites_order_by!] + + """filter the rows returned""" + where: pokemon_v2_itemsprites_bool_exp + ): pokemon_v2_itemsprites_aggregate! + + """ + fetch data from the table: "pokemon_v2_itemsprites" using primary key columns + """ + pokemon_v2_itemsprites_by_pk(id: Int!): pokemon_v2_itemsprites + + """ + fetch data from the table in a streaming manner: "pokemon_v2_itemsprites" + """ + pokemon_v2_itemsprites_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_itemsprites_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_itemsprites_bool_exp + ): [pokemon_v2_itemsprites!]! + + """ + fetch data from the table: "pokemon_v2_language" + """ + pokemon_v2_language( + """distinct select on columns""" + distinct_on: [pokemon_v2_language_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_language_order_by!] + + """filter the rows returned""" + where: pokemon_v2_language_bool_exp + ): [pokemon_v2_language!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_language" + """ + pokemon_v2_language_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_language_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_language_order_by!] + + """filter the rows returned""" + where: pokemon_v2_language_bool_exp + ): pokemon_v2_language_aggregate! + + """ + fetch data from the table: "pokemon_v2_language" using primary key columns + """ + pokemon_v2_language_by_pk(id: Int!): pokemon_v2_language + + """ + fetch data from the table in a streaming manner: "pokemon_v2_language" + """ + pokemon_v2_language_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_language_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_language_bool_exp + ): [pokemon_v2_language!]! + + """ + fetch data from the table: "pokemon_v2_languagename" + """ + pokemon_v2_languagename( + """distinct select on columns""" + distinct_on: [pokemon_v2_languagename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_languagename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_languagename_bool_exp + ): [pokemon_v2_languagename!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_languagename" + """ + pokemon_v2_languagename_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_languagename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_languagename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_languagename_bool_exp + ): pokemon_v2_languagename_aggregate! + + """ + fetch data from the table: "pokemon_v2_languagename" using primary key columns + """ + pokemon_v2_languagename_by_pk(id: Int!): pokemon_v2_languagename + + """ + fetch data from the table in a streaming manner: "pokemon_v2_languagename" + """ + pokemon_v2_languagename_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_languagename_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_languagename_bool_exp + ): [pokemon_v2_languagename!]! + + """ + fetch data from the table: "pokemon_v2_location" + """ + pokemon_v2_location( + """distinct select on columns""" + distinct_on: [pokemon_v2_location_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_location_order_by!] + + """filter the rows returned""" + where: pokemon_v2_location_bool_exp + ): [pokemon_v2_location!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_location" + """ + pokemon_v2_location_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_location_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_location_order_by!] + + """filter the rows returned""" + where: pokemon_v2_location_bool_exp + ): pokemon_v2_location_aggregate! + + """ + fetch data from the table: "pokemon_v2_location" using primary key columns + """ + pokemon_v2_location_by_pk(id: Int!): pokemon_v2_location + + """ + fetch data from the table in a streaming manner: "pokemon_v2_location" + """ + pokemon_v2_location_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_location_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_location_bool_exp + ): [pokemon_v2_location!]! + + """ + fetch data from the table: "pokemon_v2_locationarea" + """ + pokemon_v2_locationarea( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationarea_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationarea_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationarea_bool_exp + ): [pokemon_v2_locationarea!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_locationarea" + """ + pokemon_v2_locationarea_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationarea_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationarea_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationarea_bool_exp + ): pokemon_v2_locationarea_aggregate! + + """ + fetch data from the table: "pokemon_v2_locationarea" using primary key columns + """ + pokemon_v2_locationarea_by_pk(id: Int!): pokemon_v2_locationarea + + """ + fetch data from the table in a streaming manner: "pokemon_v2_locationarea" + """ + pokemon_v2_locationarea_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_locationarea_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_locationarea_bool_exp + ): [pokemon_v2_locationarea!]! + + """ + fetch data from the table: "pokemon_v2_locationareaencounterrate" + """ + pokemon_v2_locationareaencounterrate( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationareaencounterrate_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationareaencounterrate_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationareaencounterrate_bool_exp + ): [pokemon_v2_locationareaencounterrate!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_locationareaencounterrate" + """ + pokemon_v2_locationareaencounterrate_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationareaencounterrate_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationareaencounterrate_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationareaencounterrate_bool_exp + ): pokemon_v2_locationareaencounterrate_aggregate! + + """ + fetch data from the table: "pokemon_v2_locationareaencounterrate" using primary key columns + """ + pokemon_v2_locationareaencounterrate_by_pk(id: Int!): pokemon_v2_locationareaencounterrate + + """ + fetch data from the table in a streaming manner: "pokemon_v2_locationareaencounterrate" + """ + pokemon_v2_locationareaencounterrate_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_locationareaencounterrate_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_locationareaencounterrate_bool_exp + ): [pokemon_v2_locationareaencounterrate!]! + + """ + fetch data from the table: "pokemon_v2_locationareaname" + """ + pokemon_v2_locationareaname( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationareaname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationareaname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationareaname_bool_exp + ): [pokemon_v2_locationareaname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_locationareaname" + """ + pokemon_v2_locationareaname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationareaname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationareaname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationareaname_bool_exp + ): pokemon_v2_locationareaname_aggregate! + + """ + fetch data from the table: "pokemon_v2_locationareaname" using primary key columns + """ + pokemon_v2_locationareaname_by_pk(id: Int!): pokemon_v2_locationareaname + + """ + fetch data from the table in a streaming manner: "pokemon_v2_locationareaname" + """ + pokemon_v2_locationareaname_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_locationareaname_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_locationareaname_bool_exp + ): [pokemon_v2_locationareaname!]! + + """ + fetch data from the table: "pokemon_v2_locationgameindex" + """ + pokemon_v2_locationgameindex( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationgameindex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationgameindex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationgameindex_bool_exp + ): [pokemon_v2_locationgameindex!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_locationgameindex" + """ + pokemon_v2_locationgameindex_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationgameindex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationgameindex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationgameindex_bool_exp + ): pokemon_v2_locationgameindex_aggregate! + + """ + fetch data from the table: "pokemon_v2_locationgameindex" using primary key columns + """ + pokemon_v2_locationgameindex_by_pk(id: Int!): pokemon_v2_locationgameindex + + """ + fetch data from the table in a streaming manner: "pokemon_v2_locationgameindex" + """ + pokemon_v2_locationgameindex_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_locationgameindex_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_locationgameindex_bool_exp + ): [pokemon_v2_locationgameindex!]! + + """ + fetch data from the table: "pokemon_v2_locationname" + """ + pokemon_v2_locationname( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationname_bool_exp + ): [pokemon_v2_locationname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_locationname" + """ + pokemon_v2_locationname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_locationname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_locationname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_locationname_bool_exp + ): pokemon_v2_locationname_aggregate! + + """ + fetch data from the table: "pokemon_v2_locationname" using primary key columns + """ + pokemon_v2_locationname_by_pk(id: Int!): pokemon_v2_locationname + + """ + fetch data from the table in a streaming manner: "pokemon_v2_locationname" + """ + pokemon_v2_locationname_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_locationname_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_locationname_bool_exp + ): [pokemon_v2_locationname!]! + + """ + fetch data from the table: "pokemon_v2_machine" + """ + pokemon_v2_machine( + """distinct select on columns""" + distinct_on: [pokemon_v2_machine_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_machine_order_by!] + + """filter the rows returned""" + where: pokemon_v2_machine_bool_exp + ): [pokemon_v2_machine!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_machine" + """ + pokemon_v2_machine_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_machine_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_machine_order_by!] + + """filter the rows returned""" + where: pokemon_v2_machine_bool_exp + ): pokemon_v2_machine_aggregate! + + """ + fetch data from the table: "pokemon_v2_machine" using primary key columns + """ + pokemon_v2_machine_by_pk(id: Int!): pokemon_v2_machine + + """ + fetch data from the table in a streaming manner: "pokemon_v2_machine" + """ + pokemon_v2_machine_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_machine_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_machine_bool_exp + ): [pokemon_v2_machine!]! + + """ + fetch data from the table: "pokemon_v2_move" + """ + pokemon_v2_move( + """distinct select on columns""" + distinct_on: [pokemon_v2_move_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_move_order_by!] + + """filter the rows returned""" + where: pokemon_v2_move_bool_exp + ): [pokemon_v2_move!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_move" + """ + pokemon_v2_move_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_move_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_move_order_by!] + + """filter the rows returned""" + where: pokemon_v2_move_bool_exp + ): pokemon_v2_move_aggregate! + + """fetch data from the table: "pokemon_v2_move" using primary key columns""" + pokemon_v2_move_by_pk(id: Int!): pokemon_v2_move + + """ + fetch data from the table in a streaming manner: "pokemon_v2_move" + """ + pokemon_v2_move_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_move_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_move_bool_exp + ): [pokemon_v2_move!]! + + """ + fetch data from the table: "pokemon_v2_moveattribute" + """ + pokemon_v2_moveattribute( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveattribute_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveattribute_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveattribute_bool_exp + ): [pokemon_v2_moveattribute!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_moveattribute" + """ + pokemon_v2_moveattribute_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveattribute_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveattribute_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveattribute_bool_exp + ): pokemon_v2_moveattribute_aggregate! + + """ + fetch data from the table: "pokemon_v2_moveattribute" using primary key columns + """ + pokemon_v2_moveattribute_by_pk(id: Int!): pokemon_v2_moveattribute + + """ + fetch data from the table in a streaming manner: "pokemon_v2_moveattribute" + """ + pokemon_v2_moveattribute_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_moveattribute_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_moveattribute_bool_exp + ): [pokemon_v2_moveattribute!]! + + """ + fetch data from the table: "pokemon_v2_moveattributedescription" + """ + pokemon_v2_moveattributedescription( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveattributedescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveattributedescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveattributedescription_bool_exp + ): [pokemon_v2_moveattributedescription!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_moveattributedescription" + """ + pokemon_v2_moveattributedescription_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveattributedescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveattributedescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveattributedescription_bool_exp + ): pokemon_v2_moveattributedescription_aggregate! + + """ + fetch data from the table: "pokemon_v2_moveattributedescription" using primary key columns + """ + pokemon_v2_moveattributedescription_by_pk(id: Int!): pokemon_v2_moveattributedescription + + """ + fetch data from the table in a streaming manner: "pokemon_v2_moveattributedescription" + """ + pokemon_v2_moveattributedescription_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_moveattributedescription_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_moveattributedescription_bool_exp + ): [pokemon_v2_moveattributedescription!]! + + """ + fetch data from the table: "pokemon_v2_moveattributemap" + """ + pokemon_v2_moveattributemap( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveattributemap_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveattributemap_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveattributemap_bool_exp + ): [pokemon_v2_moveattributemap!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_moveattributemap" + """ + pokemon_v2_moveattributemap_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveattributemap_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveattributemap_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveattributemap_bool_exp + ): pokemon_v2_moveattributemap_aggregate! + + """ + fetch data from the table: "pokemon_v2_moveattributemap" using primary key columns + """ + pokemon_v2_moveattributemap_by_pk(id: Int!): pokemon_v2_moveattributemap + + """ + fetch data from the table in a streaming manner: "pokemon_v2_moveattributemap" + """ + pokemon_v2_moveattributemap_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_moveattributemap_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_moveattributemap_bool_exp + ): [pokemon_v2_moveattributemap!]! + + """ + fetch data from the table: "pokemon_v2_moveattributename" + """ + pokemon_v2_moveattributename( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveattributename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveattributename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveattributename_bool_exp + ): [pokemon_v2_moveattributename!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_moveattributename" + """ + pokemon_v2_moveattributename_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveattributename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveattributename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveattributename_bool_exp + ): pokemon_v2_moveattributename_aggregate! + + """ + fetch data from the table: "pokemon_v2_moveattributename" using primary key columns + """ + pokemon_v2_moveattributename_by_pk(id: Int!): pokemon_v2_moveattributename + + """ + fetch data from the table in a streaming manner: "pokemon_v2_moveattributename" + """ + pokemon_v2_moveattributename_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_moveattributename_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_moveattributename_bool_exp + ): [pokemon_v2_moveattributename!]! + + """ + fetch data from the table: "pokemon_v2_movebattlestyle" + """ + pokemon_v2_movebattlestyle( + """distinct select on columns""" + distinct_on: [pokemon_v2_movebattlestyle_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movebattlestyle_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movebattlestyle_bool_exp + ): [pokemon_v2_movebattlestyle!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movebattlestyle" + """ + pokemon_v2_movebattlestyle_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movebattlestyle_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movebattlestyle_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movebattlestyle_bool_exp + ): pokemon_v2_movebattlestyle_aggregate! + + """ + fetch data from the table: "pokemon_v2_movebattlestyle" using primary key columns + """ + pokemon_v2_movebattlestyle_by_pk(id: Int!): pokemon_v2_movebattlestyle + + """ + fetch data from the table in a streaming manner: "pokemon_v2_movebattlestyle" + """ + pokemon_v2_movebattlestyle_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_movebattlestyle_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_movebattlestyle_bool_exp + ): [pokemon_v2_movebattlestyle!]! + + """ + fetch data from the table: "pokemon_v2_movebattlestylename" + """ + pokemon_v2_movebattlestylename( + """distinct select on columns""" + distinct_on: [pokemon_v2_movebattlestylename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movebattlestylename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movebattlestylename_bool_exp + ): [pokemon_v2_movebattlestylename!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movebattlestylename" + """ + pokemon_v2_movebattlestylename_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movebattlestylename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movebattlestylename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movebattlestylename_bool_exp + ): pokemon_v2_movebattlestylename_aggregate! + + """ + fetch data from the table: "pokemon_v2_movebattlestylename" using primary key columns + """ + pokemon_v2_movebattlestylename_by_pk(id: Int!): pokemon_v2_movebattlestylename + + """ + fetch data from the table in a streaming manner: "pokemon_v2_movebattlestylename" + """ + pokemon_v2_movebattlestylename_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_movebattlestylename_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_movebattlestylename_bool_exp + ): [pokemon_v2_movebattlestylename!]! + + """ + fetch data from the table: "pokemon_v2_movechange" + """ + pokemon_v2_movechange( + """distinct select on columns""" + distinct_on: [pokemon_v2_movechange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movechange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movechange_bool_exp + ): [pokemon_v2_movechange!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movechange" + """ + pokemon_v2_movechange_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movechange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movechange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movechange_bool_exp + ): pokemon_v2_movechange_aggregate! + + """ + fetch data from the table: "pokemon_v2_movechange" using primary key columns + """ + pokemon_v2_movechange_by_pk(id: Int!): pokemon_v2_movechange + + """ + fetch data from the table in a streaming manner: "pokemon_v2_movechange" + """ + pokemon_v2_movechange_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_movechange_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_movechange_bool_exp + ): [pokemon_v2_movechange!]! + + """ + fetch data from the table: "pokemon_v2_movedamageclass" + """ + pokemon_v2_movedamageclass( + """distinct select on columns""" + distinct_on: [pokemon_v2_movedamageclass_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movedamageclass_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movedamageclass_bool_exp + ): [pokemon_v2_movedamageclass!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movedamageclass" + """ + pokemon_v2_movedamageclass_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movedamageclass_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movedamageclass_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movedamageclass_bool_exp + ): pokemon_v2_movedamageclass_aggregate! + + """ + fetch data from the table: "pokemon_v2_movedamageclass" using primary key columns + """ + pokemon_v2_movedamageclass_by_pk(id: Int!): pokemon_v2_movedamageclass + + """ + fetch data from the table in a streaming manner: "pokemon_v2_movedamageclass" + """ + pokemon_v2_movedamageclass_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_movedamageclass_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_movedamageclass_bool_exp + ): [pokemon_v2_movedamageclass!]! + + """ + fetch data from the table: "pokemon_v2_movedamageclassdescription" + """ + pokemon_v2_movedamageclassdescription( + """distinct select on columns""" + distinct_on: [pokemon_v2_movedamageclassdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movedamageclassdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movedamageclassdescription_bool_exp + ): [pokemon_v2_movedamageclassdescription!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movedamageclassdescription" + """ + pokemon_v2_movedamageclassdescription_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movedamageclassdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movedamageclassdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movedamageclassdescription_bool_exp + ): pokemon_v2_movedamageclassdescription_aggregate! + + """ + fetch data from the table: "pokemon_v2_movedamageclassdescription" using primary key columns + """ + pokemon_v2_movedamageclassdescription_by_pk(id: Int!): pokemon_v2_movedamageclassdescription + + """ + fetch data from the table in a streaming manner: "pokemon_v2_movedamageclassdescription" + """ + pokemon_v2_movedamageclassdescription_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_movedamageclassdescription_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_movedamageclassdescription_bool_exp + ): [pokemon_v2_movedamageclassdescription!]! + + """ + fetch data from the table: "pokemon_v2_movedamageclassname" + """ + pokemon_v2_movedamageclassname( + """distinct select on columns""" + distinct_on: [pokemon_v2_movedamageclassname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movedamageclassname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movedamageclassname_bool_exp + ): [pokemon_v2_movedamageclassname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movedamageclassname" + """ + pokemon_v2_movedamageclassname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movedamageclassname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movedamageclassname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movedamageclassname_bool_exp + ): pokemon_v2_movedamageclassname_aggregate! + + """ + fetch data from the table: "pokemon_v2_movedamageclassname" using primary key columns + """ + pokemon_v2_movedamageclassname_by_pk(id: Int!): pokemon_v2_movedamageclassname + + """ + fetch data from the table in a streaming manner: "pokemon_v2_movedamageclassname" + """ + pokemon_v2_movedamageclassname_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_movedamageclassname_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_movedamageclassname_bool_exp + ): [pokemon_v2_movedamageclassname!]! + + """ + fetch data from the table: "pokemon_v2_moveeffect" + """ + pokemon_v2_moveeffect( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveeffect_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveeffect_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveeffect_bool_exp + ): [pokemon_v2_moveeffect!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_moveeffect" + """ + pokemon_v2_moveeffect_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveeffect_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveeffect_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveeffect_bool_exp + ): pokemon_v2_moveeffect_aggregate! + + """ + fetch data from the table: "pokemon_v2_moveeffect" using primary key columns + """ + pokemon_v2_moveeffect_by_pk(id: Int!): pokemon_v2_moveeffect + + """ + fetch data from the table in a streaming manner: "pokemon_v2_moveeffect" + """ + pokemon_v2_moveeffect_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_moveeffect_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_moveeffect_bool_exp + ): [pokemon_v2_moveeffect!]! + + """ + fetch data from the table: "pokemon_v2_moveeffectchange" + """ + pokemon_v2_moveeffectchange( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveeffectchange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveeffectchange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveeffectchange_bool_exp + ): [pokemon_v2_moveeffectchange!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_moveeffectchange" + """ + pokemon_v2_moveeffectchange_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveeffectchange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveeffectchange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveeffectchange_bool_exp + ): pokemon_v2_moveeffectchange_aggregate! + + """ + fetch data from the table: "pokemon_v2_moveeffectchange" using primary key columns + """ + pokemon_v2_moveeffectchange_by_pk(id: Int!): pokemon_v2_moveeffectchange + + """ + fetch data from the table in a streaming manner: "pokemon_v2_moveeffectchange" + """ + pokemon_v2_moveeffectchange_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_moveeffectchange_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_moveeffectchange_bool_exp + ): [pokemon_v2_moveeffectchange!]! + + """ + fetch data from the table: "pokemon_v2_moveeffectchangeeffecttext" + """ + pokemon_v2_moveeffectchangeeffecttext( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveeffectchangeeffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveeffectchangeeffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveeffectchangeeffecttext_bool_exp + ): [pokemon_v2_moveeffectchangeeffecttext!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_moveeffectchangeeffecttext" + """ + pokemon_v2_moveeffectchangeeffecttext_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveeffectchangeeffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveeffectchangeeffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveeffectchangeeffecttext_bool_exp + ): pokemon_v2_moveeffectchangeeffecttext_aggregate! + + """ + fetch data from the table: "pokemon_v2_moveeffectchangeeffecttext" using primary key columns + """ + pokemon_v2_moveeffectchangeeffecttext_by_pk(id: Int!): pokemon_v2_moveeffectchangeeffecttext + + """ + fetch data from the table in a streaming manner: "pokemon_v2_moveeffectchangeeffecttext" + """ + pokemon_v2_moveeffectchangeeffecttext_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_moveeffectchangeeffecttext_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_moveeffectchangeeffecttext_bool_exp + ): [pokemon_v2_moveeffectchangeeffecttext!]! + + """ + fetch data from the table: "pokemon_v2_moveeffecteffecttext" + """ + pokemon_v2_moveeffecteffecttext( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveeffecteffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveeffecteffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveeffecteffecttext_bool_exp + ): [pokemon_v2_moveeffecteffecttext!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_moveeffecteffecttext" + """ + pokemon_v2_moveeffecteffecttext_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveeffecteffecttext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveeffecteffecttext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveeffecteffecttext_bool_exp + ): pokemon_v2_moveeffecteffecttext_aggregate! + + """ + fetch data from the table: "pokemon_v2_moveeffecteffecttext" using primary key columns + """ + pokemon_v2_moveeffecteffecttext_by_pk(id: Int!): pokemon_v2_moveeffecteffecttext + + """ + fetch data from the table in a streaming manner: "pokemon_v2_moveeffecteffecttext" + """ + pokemon_v2_moveeffecteffecttext_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_moveeffecteffecttext_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_moveeffecteffecttext_bool_exp + ): [pokemon_v2_moveeffecteffecttext!]! + + """ + fetch data from the table: "pokemon_v2_moveflavortext" + """ + pokemon_v2_moveflavortext( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveflavortext_bool_exp + ): [pokemon_v2_moveflavortext!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_moveflavortext" + """ + pokemon_v2_moveflavortext_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_moveflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_moveflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_moveflavortext_bool_exp + ): pokemon_v2_moveflavortext_aggregate! + + """ + fetch data from the table: "pokemon_v2_moveflavortext" using primary key columns + """ + pokemon_v2_moveflavortext_by_pk(id: Int!): pokemon_v2_moveflavortext + + """ + fetch data from the table in a streaming manner: "pokemon_v2_moveflavortext" + """ + pokemon_v2_moveflavortext_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_moveflavortext_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_moveflavortext_bool_exp + ): [pokemon_v2_moveflavortext!]! + + """ + fetch data from the table: "pokemon_v2_movelearnmethod" + """ + pokemon_v2_movelearnmethod( + """distinct select on columns""" + distinct_on: [pokemon_v2_movelearnmethod_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movelearnmethod_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movelearnmethod_bool_exp + ): [pokemon_v2_movelearnmethod!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movelearnmethod" + """ + pokemon_v2_movelearnmethod_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movelearnmethod_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movelearnmethod_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movelearnmethod_bool_exp + ): pokemon_v2_movelearnmethod_aggregate! + + """ + fetch data from the table: "pokemon_v2_movelearnmethod" using primary key columns + """ + pokemon_v2_movelearnmethod_by_pk(id: Int!): pokemon_v2_movelearnmethod + + """ + fetch data from the table in a streaming manner: "pokemon_v2_movelearnmethod" + """ + pokemon_v2_movelearnmethod_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_movelearnmethod_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_movelearnmethod_bool_exp + ): [pokemon_v2_movelearnmethod!]! + + """ + fetch data from the table: "pokemon_v2_movelearnmethoddescription" + """ + pokemon_v2_movelearnmethoddescription( + """distinct select on columns""" + distinct_on: [pokemon_v2_movelearnmethoddescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movelearnmethoddescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movelearnmethoddescription_bool_exp + ): [pokemon_v2_movelearnmethoddescription!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movelearnmethoddescription" + """ + pokemon_v2_movelearnmethoddescription_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movelearnmethoddescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movelearnmethoddescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movelearnmethoddescription_bool_exp + ): pokemon_v2_movelearnmethoddescription_aggregate! + + """ + fetch data from the table: "pokemon_v2_movelearnmethoddescription" using primary key columns + """ + pokemon_v2_movelearnmethoddescription_by_pk(id: Int!): pokemon_v2_movelearnmethoddescription + + """ + fetch data from the table in a streaming manner: "pokemon_v2_movelearnmethoddescription" + """ + pokemon_v2_movelearnmethoddescription_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_movelearnmethoddescription_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_movelearnmethoddescription_bool_exp + ): [pokemon_v2_movelearnmethoddescription!]! + + """ + fetch data from the table: "pokemon_v2_movelearnmethodname" + """ + pokemon_v2_movelearnmethodname( + """distinct select on columns""" + distinct_on: [pokemon_v2_movelearnmethodname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movelearnmethodname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movelearnmethodname_bool_exp + ): [pokemon_v2_movelearnmethodname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movelearnmethodname" + """ + pokemon_v2_movelearnmethodname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movelearnmethodname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movelearnmethodname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movelearnmethodname_bool_exp + ): pokemon_v2_movelearnmethodname_aggregate! + + """ + fetch data from the table: "pokemon_v2_movelearnmethodname" using primary key columns + """ + pokemon_v2_movelearnmethodname_by_pk(id: Int!): pokemon_v2_movelearnmethodname + + """ + fetch data from the table in a streaming manner: "pokemon_v2_movelearnmethodname" + """ + pokemon_v2_movelearnmethodname_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_movelearnmethodname_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_movelearnmethodname_bool_exp + ): [pokemon_v2_movelearnmethodname!]! + + """An array relationship""" + pokemon_v2_movemeta( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemeta_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemeta_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemeta_bool_exp + ): [pokemon_v2_movemeta!]! + + """An aggregate relationship""" + pokemon_v2_movemeta_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemeta_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemeta_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemeta_bool_exp + ): pokemon_v2_movemeta_aggregate! + + """ + fetch data from the table: "pokemon_v2_movemeta" using primary key columns + """ + pokemon_v2_movemeta_by_pk(id: Int!): pokemon_v2_movemeta + + """ + fetch data from the table in a streaming manner: "pokemon_v2_movemeta" + """ + pokemon_v2_movemeta_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_movemeta_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_movemeta_bool_exp + ): [pokemon_v2_movemeta!]! + + """ + fetch data from the table: "pokemon_v2_movemetaailment" + """ + pokemon_v2_movemetaailment( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemetaailment_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemetaailment_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemetaailment_bool_exp + ): [pokemon_v2_movemetaailment!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movemetaailment" + """ + pokemon_v2_movemetaailment_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemetaailment_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemetaailment_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemetaailment_bool_exp + ): pokemon_v2_movemetaailment_aggregate! + + """ + fetch data from the table: "pokemon_v2_movemetaailment" using primary key columns + """ + pokemon_v2_movemetaailment_by_pk(id: Int!): pokemon_v2_movemetaailment + + """ + fetch data from the table in a streaming manner: "pokemon_v2_movemetaailment" + """ + pokemon_v2_movemetaailment_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_movemetaailment_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_movemetaailment_bool_exp + ): [pokemon_v2_movemetaailment!]! + + """ + fetch data from the table: "pokemon_v2_movemetaailmentname" + """ + pokemon_v2_movemetaailmentname( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemetaailmentname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemetaailmentname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemetaailmentname_bool_exp + ): [pokemon_v2_movemetaailmentname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movemetaailmentname" + """ + pokemon_v2_movemetaailmentname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemetaailmentname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemetaailmentname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemetaailmentname_bool_exp + ): pokemon_v2_movemetaailmentname_aggregate! + + """ + fetch data from the table: "pokemon_v2_movemetaailmentname" using primary key columns + """ + pokemon_v2_movemetaailmentname_by_pk(id: Int!): pokemon_v2_movemetaailmentname + + """ + fetch data from the table in a streaming manner: "pokemon_v2_movemetaailmentname" + """ + pokemon_v2_movemetaailmentname_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_movemetaailmentname_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_movemetaailmentname_bool_exp + ): [pokemon_v2_movemetaailmentname!]! + + """ + fetch data from the table: "pokemon_v2_movemetacategory" + """ + pokemon_v2_movemetacategory( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemetacategory_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemetacategory_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemetacategory_bool_exp + ): [pokemon_v2_movemetacategory!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movemetacategory" + """ + pokemon_v2_movemetacategory_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemetacategory_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemetacategory_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemetacategory_bool_exp + ): pokemon_v2_movemetacategory_aggregate! + + """ + fetch data from the table: "pokemon_v2_movemetacategory" using primary key columns + """ + pokemon_v2_movemetacategory_by_pk(id: Int!): pokemon_v2_movemetacategory + + """ + fetch data from the table in a streaming manner: "pokemon_v2_movemetacategory" + """ + pokemon_v2_movemetacategory_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_movemetacategory_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_movemetacategory_bool_exp + ): [pokemon_v2_movemetacategory!]! + + """ + fetch data from the table: "pokemon_v2_movemetacategorydescription" + """ + pokemon_v2_movemetacategorydescription( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemetacategorydescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemetacategorydescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemetacategorydescription_bool_exp + ): [pokemon_v2_movemetacategorydescription!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movemetacategorydescription" + """ + pokemon_v2_movemetacategorydescription_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemetacategorydescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemetacategorydescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemetacategorydescription_bool_exp + ): pokemon_v2_movemetacategorydescription_aggregate! + + """ + fetch data from the table: "pokemon_v2_movemetacategorydescription" using primary key columns + """ + pokemon_v2_movemetacategorydescription_by_pk(id: Int!): pokemon_v2_movemetacategorydescription + + """ + fetch data from the table in a streaming manner: "pokemon_v2_movemetacategorydescription" + """ + pokemon_v2_movemetacategorydescription_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_movemetacategorydescription_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_movemetacategorydescription_bool_exp + ): [pokemon_v2_movemetacategorydescription!]! + + """ + fetch data from the table: "pokemon_v2_movemetastatchange" + """ + pokemon_v2_movemetastatchange( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemetastatchange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemetastatchange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemetastatchange_bool_exp + ): [pokemon_v2_movemetastatchange!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movemetastatchange" + """ + pokemon_v2_movemetastatchange_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movemetastatchange_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movemetastatchange_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movemetastatchange_bool_exp + ): pokemon_v2_movemetastatchange_aggregate! + + """ + fetch data from the table: "pokemon_v2_movemetastatchange" using primary key columns + """ + pokemon_v2_movemetastatchange_by_pk(id: Int!): pokemon_v2_movemetastatchange + + """ + fetch data from the table in a streaming manner: "pokemon_v2_movemetastatchange" + """ + pokemon_v2_movemetastatchange_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_movemetastatchange_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_movemetastatchange_bool_exp + ): [pokemon_v2_movemetastatchange!]! + + """ + fetch data from the table: "pokemon_v2_movename" + """ + pokemon_v2_movename( + """distinct select on columns""" + distinct_on: [pokemon_v2_movename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movename_bool_exp + ): [pokemon_v2_movename!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movename" + """ + pokemon_v2_movename_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movename_bool_exp + ): pokemon_v2_movename_aggregate! + + """ + fetch data from the table: "pokemon_v2_movename" using primary key columns + """ + pokemon_v2_movename_by_pk(id: Int!): pokemon_v2_movename + + """ + fetch data from the table in a streaming manner: "pokemon_v2_movename" + """ + pokemon_v2_movename_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_movename_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_movename_bool_exp + ): [pokemon_v2_movename!]! + + """ + fetch data from the table: "pokemon_v2_movetarget" + """ + pokemon_v2_movetarget( + """distinct select on columns""" + distinct_on: [pokemon_v2_movetarget_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movetarget_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movetarget_bool_exp + ): [pokemon_v2_movetarget!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movetarget" + """ + pokemon_v2_movetarget_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movetarget_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movetarget_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movetarget_bool_exp + ): pokemon_v2_movetarget_aggregate! + + """ + fetch data from the table: "pokemon_v2_movetarget" using primary key columns + """ + pokemon_v2_movetarget_by_pk(id: Int!): pokemon_v2_movetarget + + """ + fetch data from the table in a streaming manner: "pokemon_v2_movetarget" + """ + pokemon_v2_movetarget_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_movetarget_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_movetarget_bool_exp + ): [pokemon_v2_movetarget!]! + + """ + fetch data from the table: "pokemon_v2_movetargetdescription" + """ + pokemon_v2_movetargetdescription( + """distinct select on columns""" + distinct_on: [pokemon_v2_movetargetdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movetargetdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movetargetdescription_bool_exp + ): [pokemon_v2_movetargetdescription!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movetargetdescription" + """ + pokemon_v2_movetargetdescription_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movetargetdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movetargetdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movetargetdescription_bool_exp + ): pokemon_v2_movetargetdescription_aggregate! + + """ + fetch data from the table: "pokemon_v2_movetargetdescription" using primary key columns + """ + pokemon_v2_movetargetdescription_by_pk(id: Int!): pokemon_v2_movetargetdescription + + """ + fetch data from the table in a streaming manner: "pokemon_v2_movetargetdescription" + """ + pokemon_v2_movetargetdescription_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_movetargetdescription_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_movetargetdescription_bool_exp + ): [pokemon_v2_movetargetdescription!]! + + """ + fetch data from the table: "pokemon_v2_movetargetname" + """ + pokemon_v2_movetargetname( + """distinct select on columns""" + distinct_on: [pokemon_v2_movetargetname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movetargetname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movetargetname_bool_exp + ): [pokemon_v2_movetargetname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_movetargetname" + """ + pokemon_v2_movetargetname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_movetargetname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_movetargetname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_movetargetname_bool_exp + ): pokemon_v2_movetargetname_aggregate! + + """ + fetch data from the table: "pokemon_v2_movetargetname" using primary key columns + """ + pokemon_v2_movetargetname_by_pk(id: Int!): pokemon_v2_movetargetname + + """ + fetch data from the table in a streaming manner: "pokemon_v2_movetargetname" + """ + pokemon_v2_movetargetname_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_movetargetname_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_movetargetname_bool_exp + ): [pokemon_v2_movetargetname!]! + + """ + fetch data from the table: "pokemon_v2_nature" + """ + pokemon_v2_nature( + """distinct select on columns""" + distinct_on: [pokemon_v2_nature_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_nature_order_by!] + + """filter the rows returned""" + where: pokemon_v2_nature_bool_exp + ): [pokemon_v2_nature!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_nature" + """ + pokemon_v2_nature_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_nature_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_nature_order_by!] + + """filter the rows returned""" + where: pokemon_v2_nature_bool_exp + ): pokemon_v2_nature_aggregate! + + """ + fetch data from the table: "pokemon_v2_nature" using primary key columns + """ + pokemon_v2_nature_by_pk(id: Int!): pokemon_v2_nature + + """ + fetch data from the table in a streaming manner: "pokemon_v2_nature" + """ + pokemon_v2_nature_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_nature_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_nature_bool_exp + ): [pokemon_v2_nature!]! + + """ + fetch data from the table: "pokemon_v2_naturebattlestylepreference" + """ + pokemon_v2_naturebattlestylepreference( + """distinct select on columns""" + distinct_on: [pokemon_v2_naturebattlestylepreference_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_naturebattlestylepreference_order_by!] + + """filter the rows returned""" + where: pokemon_v2_naturebattlestylepreference_bool_exp + ): [pokemon_v2_naturebattlestylepreference!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_naturebattlestylepreference" + """ + pokemon_v2_naturebattlestylepreference_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_naturebattlestylepreference_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_naturebattlestylepreference_order_by!] + + """filter the rows returned""" + where: pokemon_v2_naturebattlestylepreference_bool_exp + ): pokemon_v2_naturebattlestylepreference_aggregate! + + """ + fetch data from the table: "pokemon_v2_naturebattlestylepreference" using primary key columns + """ + pokemon_v2_naturebattlestylepreference_by_pk(id: Int!): pokemon_v2_naturebattlestylepreference + + """ + fetch data from the table in a streaming manner: "pokemon_v2_naturebattlestylepreference" + """ + pokemon_v2_naturebattlestylepreference_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_naturebattlestylepreference_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_naturebattlestylepreference_bool_exp + ): [pokemon_v2_naturebattlestylepreference!]! + + """ + fetch data from the table: "pokemon_v2_naturename" + """ + pokemon_v2_naturename( + """distinct select on columns""" + distinct_on: [pokemon_v2_naturename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_naturename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_naturename_bool_exp + ): [pokemon_v2_naturename!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_naturename" + """ + pokemon_v2_naturename_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_naturename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_naturename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_naturename_bool_exp + ): pokemon_v2_naturename_aggregate! + + """ + fetch data from the table: "pokemon_v2_naturename" using primary key columns + """ + pokemon_v2_naturename_by_pk(id: Int!): pokemon_v2_naturename + + """ + fetch data from the table in a streaming manner: "pokemon_v2_naturename" + """ + pokemon_v2_naturename_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_naturename_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_naturename_bool_exp + ): [pokemon_v2_naturename!]! + + """ + fetch data from the table: "pokemon_v2_naturepokeathlonstat" + """ + pokemon_v2_naturepokeathlonstat( + """distinct select on columns""" + distinct_on: [pokemon_v2_naturepokeathlonstat_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_naturepokeathlonstat_order_by!] + + """filter the rows returned""" + where: pokemon_v2_naturepokeathlonstat_bool_exp + ): [pokemon_v2_naturepokeathlonstat!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_naturepokeathlonstat" + """ + pokemon_v2_naturepokeathlonstat_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_naturepokeathlonstat_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_naturepokeathlonstat_order_by!] + + """filter the rows returned""" + where: pokemon_v2_naturepokeathlonstat_bool_exp + ): pokemon_v2_naturepokeathlonstat_aggregate! + + """ + fetch data from the table: "pokemon_v2_naturepokeathlonstat" using primary key columns + """ + pokemon_v2_naturepokeathlonstat_by_pk(id: Int!): pokemon_v2_naturepokeathlonstat + + """ + fetch data from the table in a streaming manner: "pokemon_v2_naturepokeathlonstat" + """ + pokemon_v2_naturepokeathlonstat_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_naturepokeathlonstat_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_naturepokeathlonstat_bool_exp + ): [pokemon_v2_naturepokeathlonstat!]! + + """ + fetch data from the table: "pokemon_v2_palpark" + """ + pokemon_v2_palpark( + """distinct select on columns""" + distinct_on: [pokemon_v2_palpark_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_palpark_order_by!] + + """filter the rows returned""" + where: pokemon_v2_palpark_bool_exp + ): [pokemon_v2_palpark!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_palpark" + """ + pokemon_v2_palpark_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_palpark_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_palpark_order_by!] + + """filter the rows returned""" + where: pokemon_v2_palpark_bool_exp + ): pokemon_v2_palpark_aggregate! + + """ + fetch data from the table: "pokemon_v2_palpark" using primary key columns + """ + pokemon_v2_palpark_by_pk(id: Int!): pokemon_v2_palpark + + """ + fetch data from the table in a streaming manner: "pokemon_v2_palpark" + """ + pokemon_v2_palpark_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_palpark_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_palpark_bool_exp + ): [pokemon_v2_palpark!]! + + """ + fetch data from the table: "pokemon_v2_palparkarea" + """ + pokemon_v2_palparkarea( + """distinct select on columns""" + distinct_on: [pokemon_v2_palparkarea_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_palparkarea_order_by!] + + """filter the rows returned""" + where: pokemon_v2_palparkarea_bool_exp + ): [pokemon_v2_palparkarea!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_palparkarea" + """ + pokemon_v2_palparkarea_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_palparkarea_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_palparkarea_order_by!] + + """filter the rows returned""" + where: pokemon_v2_palparkarea_bool_exp + ): pokemon_v2_palparkarea_aggregate! + + """ + fetch data from the table: "pokemon_v2_palparkarea" using primary key columns + """ + pokemon_v2_palparkarea_by_pk(id: Int!): pokemon_v2_palparkarea + + """ + fetch data from the table in a streaming manner: "pokemon_v2_palparkarea" + """ + pokemon_v2_palparkarea_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_palparkarea_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_palparkarea_bool_exp + ): [pokemon_v2_palparkarea!]! + + """ + fetch data from the table: "pokemon_v2_palparkareaname" + """ + pokemon_v2_palparkareaname( + """distinct select on columns""" + distinct_on: [pokemon_v2_palparkareaname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_palparkareaname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_palparkareaname_bool_exp + ): [pokemon_v2_palparkareaname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_palparkareaname" + """ + pokemon_v2_palparkareaname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_palparkareaname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_palparkareaname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_palparkareaname_bool_exp + ): pokemon_v2_palparkareaname_aggregate! + + """ + fetch data from the table: "pokemon_v2_palparkareaname" using primary key columns + """ + pokemon_v2_palparkareaname_by_pk(id: Int!): pokemon_v2_palparkareaname + + """ + fetch data from the table in a streaming manner: "pokemon_v2_palparkareaname" + """ + pokemon_v2_palparkareaname_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_palparkareaname_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_palparkareaname_bool_exp + ): [pokemon_v2_palparkareaname!]! + + """ + fetch data from the table: "pokemon_v2_pokeathlonstat" + """ + pokemon_v2_pokeathlonstat( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokeathlonstat_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokeathlonstat_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokeathlonstat_bool_exp + ): [pokemon_v2_pokeathlonstat!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokeathlonstat" + """ + pokemon_v2_pokeathlonstat_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokeathlonstat_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokeathlonstat_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokeathlonstat_bool_exp + ): pokemon_v2_pokeathlonstat_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokeathlonstat" using primary key columns + """ + pokemon_v2_pokeathlonstat_by_pk(id: Int!): pokemon_v2_pokeathlonstat + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokeathlonstat" + """ + pokemon_v2_pokeathlonstat_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokeathlonstat_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokeathlonstat_bool_exp + ): [pokemon_v2_pokeathlonstat!]! + + """ + fetch data from the table: "pokemon_v2_pokeathlonstatname" + """ + pokemon_v2_pokeathlonstatname( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokeathlonstatname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokeathlonstatname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokeathlonstatname_bool_exp + ): [pokemon_v2_pokeathlonstatname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokeathlonstatname" + """ + pokemon_v2_pokeathlonstatname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokeathlonstatname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokeathlonstatname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokeathlonstatname_bool_exp + ): pokemon_v2_pokeathlonstatname_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokeathlonstatname" using primary key columns + """ + pokemon_v2_pokeathlonstatname_by_pk(id: Int!): pokemon_v2_pokeathlonstatname + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokeathlonstatname" + """ + pokemon_v2_pokeathlonstatname_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokeathlonstatname_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokeathlonstatname_bool_exp + ): [pokemon_v2_pokeathlonstatname!]! + + """ + fetch data from the table: "pokemon_v2_pokedex" + """ + pokemon_v2_pokedex( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokedex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokedex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokedex_bool_exp + ): [pokemon_v2_pokedex!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokedex" + """ + pokemon_v2_pokedex_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokedex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokedex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokedex_bool_exp + ): pokemon_v2_pokedex_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokedex" using primary key columns + """ + pokemon_v2_pokedex_by_pk(id: Int!): pokemon_v2_pokedex + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokedex" + """ + pokemon_v2_pokedex_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokedex_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokedex_bool_exp + ): [pokemon_v2_pokedex!]! + + """ + fetch data from the table: "pokemon_v2_pokedexdescription" + """ + pokemon_v2_pokedexdescription( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokedexdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokedexdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokedexdescription_bool_exp + ): [pokemon_v2_pokedexdescription!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokedexdescription" + """ + pokemon_v2_pokedexdescription_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokedexdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokedexdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokedexdescription_bool_exp + ): pokemon_v2_pokedexdescription_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokedexdescription" using primary key columns + """ + pokemon_v2_pokedexdescription_by_pk(id: Int!): pokemon_v2_pokedexdescription + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokedexdescription" + """ + pokemon_v2_pokedexdescription_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokedexdescription_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokedexdescription_bool_exp + ): [pokemon_v2_pokedexdescription!]! + + """ + fetch data from the table: "pokemon_v2_pokedexname" + """ + pokemon_v2_pokedexname( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokedexname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokedexname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokedexname_bool_exp + ): [pokemon_v2_pokedexname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokedexname" + """ + pokemon_v2_pokedexname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokedexname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokedexname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokedexname_bool_exp + ): pokemon_v2_pokedexname_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokedexname" using primary key columns + """ + pokemon_v2_pokedexname_by_pk(id: Int!): pokemon_v2_pokedexname + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokedexname" + """ + pokemon_v2_pokedexname_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokedexname_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokedexname_bool_exp + ): [pokemon_v2_pokedexname!]! + + """ + fetch data from the table: "pokemon_v2_pokedexversiongroup" + """ + pokemon_v2_pokedexversiongroup( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokedexversiongroup_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokedexversiongroup_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokedexversiongroup_bool_exp + ): [pokemon_v2_pokedexversiongroup!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokedexversiongroup" + """ + pokemon_v2_pokedexversiongroup_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokedexversiongroup_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokedexversiongroup_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokedexversiongroup_bool_exp + ): pokemon_v2_pokedexversiongroup_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokedexversiongroup" using primary key columns + """ + pokemon_v2_pokedexversiongroup_by_pk(id: Int!): pokemon_v2_pokedexversiongroup + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokedexversiongroup" + """ + pokemon_v2_pokedexversiongroup_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokedexversiongroup_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokedexversiongroup_bool_exp + ): [pokemon_v2_pokedexversiongroup!]! + + """ + fetch data from the table: "pokemon_v2_pokemon" + """ + pokemon_v2_pokemon( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemon_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemon_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemon_bool_exp + ): [pokemon_v2_pokemon!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemon" + """ + pokemon_v2_pokemon_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemon_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemon_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemon_bool_exp + ): pokemon_v2_pokemon_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemon" using primary key columns + """ + pokemon_v2_pokemon_by_pk(id: Int!): pokemon_v2_pokemon + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokemon" + """ + pokemon_v2_pokemon_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokemon_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokemon_bool_exp + ): [pokemon_v2_pokemon!]! + + """ + fetch data from the table: "pokemon_v2_pokemonability" + """ + pokemon_v2_pokemonability( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonability_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonability_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonability_bool_exp + ): [pokemon_v2_pokemonability!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonability" + """ + pokemon_v2_pokemonability_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonability_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonability_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonability_bool_exp + ): pokemon_v2_pokemonability_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonability" using primary key columns + """ + pokemon_v2_pokemonability_by_pk(id: Int!): pokemon_v2_pokemonability + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokemonability" + """ + pokemon_v2_pokemonability_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokemonability_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokemonability_bool_exp + ): [pokemon_v2_pokemonability!]! + + """ + fetch data from the table: "pokemon_v2_pokemonabilitypast" + """ + pokemon_v2_pokemonabilitypast( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonabilitypast_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonabilitypast_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonabilitypast_bool_exp + ): [pokemon_v2_pokemonabilitypast!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonabilitypast" + """ + pokemon_v2_pokemonabilitypast_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonabilitypast_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonabilitypast_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonabilitypast_bool_exp + ): pokemon_v2_pokemonabilitypast_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonabilitypast" using primary key columns + """ + pokemon_v2_pokemonabilitypast_by_pk(id: Int!): pokemon_v2_pokemonabilitypast + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokemonabilitypast" + """ + pokemon_v2_pokemonabilitypast_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokemonabilitypast_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokemonabilitypast_bool_exp + ): [pokemon_v2_pokemonabilitypast!]! + + """ + fetch data from the table: "pokemon_v2_pokemoncolor" + """ + pokemon_v2_pokemoncolor( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemoncolor_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemoncolor_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemoncolor_bool_exp + ): [pokemon_v2_pokemoncolor!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemoncolor" + """ + pokemon_v2_pokemoncolor_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemoncolor_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemoncolor_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemoncolor_bool_exp + ): pokemon_v2_pokemoncolor_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemoncolor" using primary key columns + """ + pokemon_v2_pokemoncolor_by_pk(id: Int!): pokemon_v2_pokemoncolor + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokemoncolor" + """ + pokemon_v2_pokemoncolor_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokemoncolor_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokemoncolor_bool_exp + ): [pokemon_v2_pokemoncolor!]! + + """ + fetch data from the table: "pokemon_v2_pokemoncolorname" + """ + pokemon_v2_pokemoncolorname( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemoncolorname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemoncolorname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemoncolorname_bool_exp + ): [pokemon_v2_pokemoncolorname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemoncolorname" + """ + pokemon_v2_pokemoncolorname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemoncolorname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemoncolorname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemoncolorname_bool_exp + ): pokemon_v2_pokemoncolorname_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemoncolorname" using primary key columns + """ + pokemon_v2_pokemoncolorname_by_pk(id: Int!): pokemon_v2_pokemoncolorname + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokemoncolorname" + """ + pokemon_v2_pokemoncolorname_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokemoncolorname_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokemoncolorname_bool_exp + ): [pokemon_v2_pokemoncolorname!]! + + """An array relationship""" + pokemon_v2_pokemoncries( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemoncries_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemoncries_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemoncries_bool_exp + ): [pokemon_v2_pokemoncries!]! + + """An aggregate relationship""" + pokemon_v2_pokemoncries_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemoncries_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemoncries_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemoncries_bool_exp + ): pokemon_v2_pokemoncries_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemoncries" using primary key columns + """ + pokemon_v2_pokemoncries_by_pk(id: Int!): pokemon_v2_pokemoncries + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokemoncries" + """ + pokemon_v2_pokemoncries_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokemoncries_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokemoncries_bool_exp + ): [pokemon_v2_pokemoncries!]! + + """ + fetch data from the table: "pokemon_v2_pokemondexnumber" + """ + pokemon_v2_pokemondexnumber( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemondexnumber_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemondexnumber_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemondexnumber_bool_exp + ): [pokemon_v2_pokemondexnumber!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemondexnumber" + """ + pokemon_v2_pokemondexnumber_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemondexnumber_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemondexnumber_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemondexnumber_bool_exp + ): pokemon_v2_pokemondexnumber_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemondexnumber" using primary key columns + """ + pokemon_v2_pokemondexnumber_by_pk(id: Int!): pokemon_v2_pokemondexnumber + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokemondexnumber" + """ + pokemon_v2_pokemondexnumber_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokemondexnumber_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokemondexnumber_bool_exp + ): [pokemon_v2_pokemondexnumber!]! + + """ + fetch data from the table: "pokemon_v2_pokemonegggroup" + """ + pokemon_v2_pokemonegggroup( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonegggroup_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonegggroup_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonegggroup_bool_exp + ): [pokemon_v2_pokemonegggroup!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonegggroup" + """ + pokemon_v2_pokemonegggroup_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonegggroup_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonegggroup_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonegggroup_bool_exp + ): pokemon_v2_pokemonegggroup_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonegggroup" using primary key columns + """ + pokemon_v2_pokemonegggroup_by_pk(id: Int!): pokemon_v2_pokemonegggroup + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokemonegggroup" + """ + pokemon_v2_pokemonegggroup_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokemonegggroup_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokemonegggroup_bool_exp + ): [pokemon_v2_pokemonegggroup!]! + + """ + fetch data from the table: "pokemon_v2_pokemonevolution" + """ + pokemon_v2_pokemonevolution( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonevolution_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonevolution_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonevolution_bool_exp + ): [pokemon_v2_pokemonevolution!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonevolution" + """ + pokemon_v2_pokemonevolution_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonevolution_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonevolution_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonevolution_bool_exp + ): pokemon_v2_pokemonevolution_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonevolution" using primary key columns + """ + pokemon_v2_pokemonevolution_by_pk(id: Int!): pokemon_v2_pokemonevolution + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokemonevolution" + """ + pokemon_v2_pokemonevolution_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokemonevolution_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokemonevolution_bool_exp + ): [pokemon_v2_pokemonevolution!]! + + """ + fetch data from the table: "pokemon_v2_pokemonform" + """ + pokemon_v2_pokemonform( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonform_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonform_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonform_bool_exp + ): [pokemon_v2_pokemonform!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonform" + """ + pokemon_v2_pokemonform_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonform_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonform_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonform_bool_exp + ): pokemon_v2_pokemonform_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonform" using primary key columns + """ + pokemon_v2_pokemonform_by_pk(id: Int!): pokemon_v2_pokemonform + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokemonform" + """ + pokemon_v2_pokemonform_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokemonform_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokemonform_bool_exp + ): [pokemon_v2_pokemonform!]! + + """ + fetch data from the table: "pokemon_v2_pokemonformgeneration" + """ + pokemon_v2_pokemonformgeneration( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonformgeneration_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonformgeneration_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonformgeneration_bool_exp + ): [pokemon_v2_pokemonformgeneration!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonformgeneration" + """ + pokemon_v2_pokemonformgeneration_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonformgeneration_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonformgeneration_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonformgeneration_bool_exp + ): pokemon_v2_pokemonformgeneration_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonformgeneration" using primary key columns + """ + pokemon_v2_pokemonformgeneration_by_pk(id: Int!): pokemon_v2_pokemonformgeneration + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokemonformgeneration" + """ + pokemon_v2_pokemonformgeneration_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokemonformgeneration_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokemonformgeneration_bool_exp + ): [pokemon_v2_pokemonformgeneration!]! + + """ + fetch data from the table: "pokemon_v2_pokemonformname" + """ + pokemon_v2_pokemonformname( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonformname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonformname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonformname_bool_exp + ): [pokemon_v2_pokemonformname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonformname" + """ + pokemon_v2_pokemonformname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonformname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonformname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonformname_bool_exp + ): pokemon_v2_pokemonformname_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonformname" using primary key columns + """ + pokemon_v2_pokemonformname_by_pk(id: Int!): pokemon_v2_pokemonformname + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokemonformname" + """ + pokemon_v2_pokemonformname_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokemonformname_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokemonformname_bool_exp + ): [pokemon_v2_pokemonformname!]! + + """An array relationship""" + pokemon_v2_pokemonformsprites( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonformsprites_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonformsprites_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonformsprites_bool_exp + ): [pokemon_v2_pokemonformsprites!]! + + """An aggregate relationship""" + pokemon_v2_pokemonformsprites_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonformsprites_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonformsprites_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonformsprites_bool_exp + ): pokemon_v2_pokemonformsprites_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonformsprites" using primary key columns + """ + pokemon_v2_pokemonformsprites_by_pk(id: Int!): pokemon_v2_pokemonformsprites + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokemonformsprites" + """ + pokemon_v2_pokemonformsprites_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokemonformsprites_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokemonformsprites_bool_exp + ): [pokemon_v2_pokemonformsprites!]! + + """ + fetch data from the table: "pokemon_v2_pokemonformtype" + """ + pokemon_v2_pokemonformtype( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonformtype_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonformtype_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonformtype_bool_exp + ): [pokemon_v2_pokemonformtype!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonformtype" + """ + pokemon_v2_pokemonformtype_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonformtype_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonformtype_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonformtype_bool_exp + ): pokemon_v2_pokemonformtype_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonformtype" using primary key columns + """ + pokemon_v2_pokemonformtype_by_pk(id: Int!): pokemon_v2_pokemonformtype + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokemonformtype" + """ + pokemon_v2_pokemonformtype_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokemonformtype_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokemonformtype_bool_exp + ): [pokemon_v2_pokemonformtype!]! + + """ + fetch data from the table: "pokemon_v2_pokemongameindex" + """ + pokemon_v2_pokemongameindex( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemongameindex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemongameindex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemongameindex_bool_exp + ): [pokemon_v2_pokemongameindex!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemongameindex" + """ + pokemon_v2_pokemongameindex_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemongameindex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemongameindex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemongameindex_bool_exp + ): pokemon_v2_pokemongameindex_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemongameindex" using primary key columns + """ + pokemon_v2_pokemongameindex_by_pk(id: Int!): pokemon_v2_pokemongameindex + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokemongameindex" + """ + pokemon_v2_pokemongameindex_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokemongameindex_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokemongameindex_bool_exp + ): [pokemon_v2_pokemongameindex!]! + + """ + fetch data from the table: "pokemon_v2_pokemonhabitat" + """ + pokemon_v2_pokemonhabitat( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonhabitat_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonhabitat_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonhabitat_bool_exp + ): [pokemon_v2_pokemonhabitat!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonhabitat" + """ + pokemon_v2_pokemonhabitat_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonhabitat_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonhabitat_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonhabitat_bool_exp + ): pokemon_v2_pokemonhabitat_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonhabitat" using primary key columns + """ + pokemon_v2_pokemonhabitat_by_pk(id: Int!): pokemon_v2_pokemonhabitat + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokemonhabitat" + """ + pokemon_v2_pokemonhabitat_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokemonhabitat_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokemonhabitat_bool_exp + ): [pokemon_v2_pokemonhabitat!]! + + """ + fetch data from the table: "pokemon_v2_pokemonhabitatname" + """ + pokemon_v2_pokemonhabitatname( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonhabitatname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonhabitatname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonhabitatname_bool_exp + ): [pokemon_v2_pokemonhabitatname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonhabitatname" + """ + pokemon_v2_pokemonhabitatname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonhabitatname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonhabitatname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonhabitatname_bool_exp + ): pokemon_v2_pokemonhabitatname_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonhabitatname" using primary key columns + """ + pokemon_v2_pokemonhabitatname_by_pk(id: Int!): pokemon_v2_pokemonhabitatname + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokemonhabitatname" + """ + pokemon_v2_pokemonhabitatname_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokemonhabitatname_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokemonhabitatname_bool_exp + ): [pokemon_v2_pokemonhabitatname!]! + + """ + fetch data from the table: "pokemon_v2_pokemonitem" + """ + pokemon_v2_pokemonitem( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonitem_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonitem_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonitem_bool_exp + ): [pokemon_v2_pokemonitem!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonitem" + """ + pokemon_v2_pokemonitem_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonitem_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonitem_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonitem_bool_exp + ): pokemon_v2_pokemonitem_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonitem" using primary key columns + """ + pokemon_v2_pokemonitem_by_pk(id: Int!): pokemon_v2_pokemonitem + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokemonitem" + """ + pokemon_v2_pokemonitem_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokemonitem_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokemonitem_bool_exp + ): [pokemon_v2_pokemonitem!]! + + """ + fetch data from the table: "pokemon_v2_pokemonmove" + """ + pokemon_v2_pokemonmove( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonmove_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonmove_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonmove_bool_exp + ): [pokemon_v2_pokemonmove!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonmove" + """ + pokemon_v2_pokemonmove_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonmove_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonmove_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonmove_bool_exp + ): pokemon_v2_pokemonmove_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonmove" using primary key columns + """ + pokemon_v2_pokemonmove_by_pk(id: Int!): pokemon_v2_pokemonmove + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokemonmove" + """ + pokemon_v2_pokemonmove_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokemonmove_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokemonmove_bool_exp + ): [pokemon_v2_pokemonmove!]! + + """ + fetch data from the table: "pokemon_v2_pokemonshape" + """ + pokemon_v2_pokemonshape( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonshape_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonshape_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonshape_bool_exp + ): [pokemon_v2_pokemonshape!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonshape" + """ + pokemon_v2_pokemonshape_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonshape_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonshape_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonshape_bool_exp + ): pokemon_v2_pokemonshape_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonshape" using primary key columns + """ + pokemon_v2_pokemonshape_by_pk(id: Int!): pokemon_v2_pokemonshape + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokemonshape" + """ + pokemon_v2_pokemonshape_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokemonshape_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokemonshape_bool_exp + ): [pokemon_v2_pokemonshape!]! + + """ + fetch data from the table: "pokemon_v2_pokemonshapename" + """ + pokemon_v2_pokemonshapename( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonshapename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonshapename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonshapename_bool_exp + ): [pokemon_v2_pokemonshapename!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonshapename" + """ + pokemon_v2_pokemonshapename_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonshapename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonshapename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonshapename_bool_exp + ): pokemon_v2_pokemonshapename_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonshapename" using primary key columns + """ + pokemon_v2_pokemonshapename_by_pk(id: Int!): pokemon_v2_pokemonshapename + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokemonshapename" + """ + pokemon_v2_pokemonshapename_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokemonshapename_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokemonshapename_bool_exp + ): [pokemon_v2_pokemonshapename!]! + + """An array relationship""" + pokemon_v2_pokemonspecies( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspecies_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspecies_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspecies_bool_exp + ): [pokemon_v2_pokemonspecies!]! + + """An aggregate relationship""" + pokemon_v2_pokemonspecies_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspecies_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspecies_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspecies_bool_exp + ): pokemon_v2_pokemonspecies_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonspecies" using primary key columns + """ + pokemon_v2_pokemonspecies_by_pk(id: Int!): pokemon_v2_pokemonspecies + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokemonspecies" + """ + pokemon_v2_pokemonspecies_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokemonspecies_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokemonspecies_bool_exp + ): [pokemon_v2_pokemonspecies!]! + + """ + fetch data from the table: "pokemon_v2_pokemonspeciesdescription" + """ + pokemon_v2_pokemonspeciesdescription( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspeciesdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspeciesdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspeciesdescription_bool_exp + ): [pokemon_v2_pokemonspeciesdescription!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonspeciesdescription" + """ + pokemon_v2_pokemonspeciesdescription_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspeciesdescription_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspeciesdescription_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspeciesdescription_bool_exp + ): pokemon_v2_pokemonspeciesdescription_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonspeciesdescription" using primary key columns + """ + pokemon_v2_pokemonspeciesdescription_by_pk(id: Int!): pokemon_v2_pokemonspeciesdescription + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokemonspeciesdescription" + """ + pokemon_v2_pokemonspeciesdescription_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokemonspeciesdescription_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokemonspeciesdescription_bool_exp + ): [pokemon_v2_pokemonspeciesdescription!]! + + """ + fetch data from the table: "pokemon_v2_pokemonspeciesflavortext" + """ + pokemon_v2_pokemonspeciesflavortext( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspeciesflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspeciesflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspeciesflavortext_bool_exp + ): [pokemon_v2_pokemonspeciesflavortext!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonspeciesflavortext" + """ + pokemon_v2_pokemonspeciesflavortext_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspeciesflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspeciesflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspeciesflavortext_bool_exp + ): pokemon_v2_pokemonspeciesflavortext_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonspeciesflavortext" using primary key columns + """ + pokemon_v2_pokemonspeciesflavortext_by_pk(id: Int!): pokemon_v2_pokemonspeciesflavortext + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokemonspeciesflavortext" + """ + pokemon_v2_pokemonspeciesflavortext_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokemonspeciesflavortext_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokemonspeciesflavortext_bool_exp + ): [pokemon_v2_pokemonspeciesflavortext!]! + + """ + fetch data from the table: "pokemon_v2_pokemonspeciesname" + """ + pokemon_v2_pokemonspeciesname( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspeciesname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspeciesname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspeciesname_bool_exp + ): [pokemon_v2_pokemonspeciesname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonspeciesname" + """ + pokemon_v2_pokemonspeciesname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonspeciesname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonspeciesname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonspeciesname_bool_exp + ): pokemon_v2_pokemonspeciesname_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonspeciesname" using primary key columns + """ + pokemon_v2_pokemonspeciesname_by_pk(id: Int!): pokemon_v2_pokemonspeciesname + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokemonspeciesname" + """ + pokemon_v2_pokemonspeciesname_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokemonspeciesname_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokemonspeciesname_bool_exp + ): [pokemon_v2_pokemonspeciesname!]! + + """An array relationship""" + pokemon_v2_pokemonsprites( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonsprites_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonsprites_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonsprites_bool_exp + ): [pokemon_v2_pokemonsprites!]! + + """An aggregate relationship""" + pokemon_v2_pokemonsprites_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonsprites_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonsprites_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonsprites_bool_exp + ): pokemon_v2_pokemonsprites_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonsprites" using primary key columns + """ + pokemon_v2_pokemonsprites_by_pk(id: Int!): pokemon_v2_pokemonsprites + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokemonsprites" + """ + pokemon_v2_pokemonsprites_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokemonsprites_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokemonsprites_bool_exp + ): [pokemon_v2_pokemonsprites!]! + + """ + fetch data from the table: "pokemon_v2_pokemonstat" + """ + pokemon_v2_pokemonstat( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonstat_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonstat_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonstat_bool_exp + ): [pokemon_v2_pokemonstat!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemonstat" + """ + pokemon_v2_pokemonstat_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemonstat_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemonstat_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemonstat_bool_exp + ): pokemon_v2_pokemonstat_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemonstat" using primary key columns + """ + pokemon_v2_pokemonstat_by_pk(id: Int!): pokemon_v2_pokemonstat + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokemonstat" + """ + pokemon_v2_pokemonstat_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokemonstat_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokemonstat_bool_exp + ): [pokemon_v2_pokemonstat!]! + + """ + fetch data from the table: "pokemon_v2_pokemontype" + """ + pokemon_v2_pokemontype( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemontype_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemontype_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemontype_bool_exp + ): [pokemon_v2_pokemontype!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemontype" + """ + pokemon_v2_pokemontype_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemontype_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemontype_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemontype_bool_exp + ): pokemon_v2_pokemontype_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemontype" using primary key columns + """ + pokemon_v2_pokemontype_by_pk(id: Int!): pokemon_v2_pokemontype + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokemontype" + """ + pokemon_v2_pokemontype_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokemontype_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokemontype_bool_exp + ): [pokemon_v2_pokemontype!]! + + """ + fetch data from the table: "pokemon_v2_pokemontypepast" + """ + pokemon_v2_pokemontypepast( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemontypepast_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemontypepast_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemontypepast_bool_exp + ): [pokemon_v2_pokemontypepast!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_pokemontypepast" + """ + pokemon_v2_pokemontypepast_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_pokemontypepast_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_pokemontypepast_order_by!] + + """filter the rows returned""" + where: pokemon_v2_pokemontypepast_bool_exp + ): pokemon_v2_pokemontypepast_aggregate! + + """ + fetch data from the table: "pokemon_v2_pokemontypepast" using primary key columns + """ + pokemon_v2_pokemontypepast_by_pk(id: Int!): pokemon_v2_pokemontypepast + + """ + fetch data from the table in a streaming manner: "pokemon_v2_pokemontypepast" + """ + pokemon_v2_pokemontypepast_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_pokemontypepast_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_pokemontypepast_bool_exp + ): [pokemon_v2_pokemontypepast!]! + + """ + fetch data from the table: "pokemon_v2_region" + """ + pokemon_v2_region( + """distinct select on columns""" + distinct_on: [pokemon_v2_region_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_region_order_by!] + + """filter the rows returned""" + where: pokemon_v2_region_bool_exp + ): [pokemon_v2_region!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_region" + """ + pokemon_v2_region_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_region_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_region_order_by!] + + """filter the rows returned""" + where: pokemon_v2_region_bool_exp + ): pokemon_v2_region_aggregate! + + """ + fetch data from the table: "pokemon_v2_region" using primary key columns + """ + pokemon_v2_region_by_pk(id: Int!): pokemon_v2_region + + """ + fetch data from the table in a streaming manner: "pokemon_v2_region" + """ + pokemon_v2_region_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_region_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_region_bool_exp + ): [pokemon_v2_region!]! + + """ + fetch data from the table: "pokemon_v2_regionname" + """ + pokemon_v2_regionname( + """distinct select on columns""" + distinct_on: [pokemon_v2_regionname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_regionname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_regionname_bool_exp + ): [pokemon_v2_regionname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_regionname" + """ + pokemon_v2_regionname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_regionname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_regionname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_regionname_bool_exp + ): pokemon_v2_regionname_aggregate! + + """ + fetch data from the table: "pokemon_v2_regionname" using primary key columns + """ + pokemon_v2_regionname_by_pk(id: Int!): pokemon_v2_regionname + + """ + fetch data from the table in a streaming manner: "pokemon_v2_regionname" + """ + pokemon_v2_regionname_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_regionname_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_regionname_bool_exp + ): [pokemon_v2_regionname!]! + + """ + fetch data from the table: "pokemon_v2_stat" + """ + pokemon_v2_stat( + """distinct select on columns""" + distinct_on: [pokemon_v2_stat_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_stat_order_by!] + + """filter the rows returned""" + where: pokemon_v2_stat_bool_exp + ): [pokemon_v2_stat!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_stat" + """ + pokemon_v2_stat_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_stat_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_stat_order_by!] + + """filter the rows returned""" + where: pokemon_v2_stat_bool_exp + ): pokemon_v2_stat_aggregate! + + """fetch data from the table: "pokemon_v2_stat" using primary key columns""" + pokemon_v2_stat_by_pk(id: Int!): pokemon_v2_stat + + """ + fetch data from the table in a streaming manner: "pokemon_v2_stat" + """ + pokemon_v2_stat_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_stat_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_stat_bool_exp + ): [pokemon_v2_stat!]! + + """ + fetch data from the table: "pokemon_v2_statname" + """ + pokemon_v2_statname( + """distinct select on columns""" + distinct_on: [pokemon_v2_statname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_statname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_statname_bool_exp + ): [pokemon_v2_statname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_statname" + """ + pokemon_v2_statname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_statname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_statname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_statname_bool_exp + ): pokemon_v2_statname_aggregate! + + """ + fetch data from the table: "pokemon_v2_statname" using primary key columns + """ + pokemon_v2_statname_by_pk(id: Int!): pokemon_v2_statname + + """ + fetch data from the table in a streaming manner: "pokemon_v2_statname" + """ + pokemon_v2_statname_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_statname_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_statname_bool_exp + ): [pokemon_v2_statname!]! + + """ + fetch data from the table: "pokemon_v2_supercontestcombo" + """ + pokemon_v2_supercontestcombo( + """distinct select on columns""" + distinct_on: [pokemon_v2_supercontestcombo_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_supercontestcombo_order_by!] + + """filter the rows returned""" + where: pokemon_v2_supercontestcombo_bool_exp + ): [pokemon_v2_supercontestcombo!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_supercontestcombo" + """ + pokemon_v2_supercontestcombo_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_supercontestcombo_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_supercontestcombo_order_by!] + + """filter the rows returned""" + where: pokemon_v2_supercontestcombo_bool_exp + ): pokemon_v2_supercontestcombo_aggregate! + + """ + fetch data from the table: "pokemon_v2_supercontestcombo" using primary key columns + """ + pokemon_v2_supercontestcombo_by_pk(id: Int!): pokemon_v2_supercontestcombo + + """ + fetch data from the table in a streaming manner: "pokemon_v2_supercontestcombo" + """ + pokemon_v2_supercontestcombo_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_supercontestcombo_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_supercontestcombo_bool_exp + ): [pokemon_v2_supercontestcombo!]! + + """ + fetch data from the table: "pokemon_v2_supercontesteffect" + """ + pokemon_v2_supercontesteffect( + """distinct select on columns""" + distinct_on: [pokemon_v2_supercontesteffect_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_supercontesteffect_order_by!] + + """filter the rows returned""" + where: pokemon_v2_supercontesteffect_bool_exp + ): [pokemon_v2_supercontesteffect!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_supercontesteffect" + """ + pokemon_v2_supercontesteffect_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_supercontesteffect_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_supercontesteffect_order_by!] + + """filter the rows returned""" + where: pokemon_v2_supercontesteffect_bool_exp + ): pokemon_v2_supercontesteffect_aggregate! + + """ + fetch data from the table: "pokemon_v2_supercontesteffect" using primary key columns + """ + pokemon_v2_supercontesteffect_by_pk(id: Int!): pokemon_v2_supercontesteffect + + """ + fetch data from the table in a streaming manner: "pokemon_v2_supercontesteffect" + """ + pokemon_v2_supercontesteffect_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_supercontesteffect_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_supercontesteffect_bool_exp + ): [pokemon_v2_supercontesteffect!]! + + """ + fetch data from the table: "pokemon_v2_supercontesteffectflavortext" + """ + pokemon_v2_supercontesteffectflavortext( + """distinct select on columns""" + distinct_on: [pokemon_v2_supercontesteffectflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_supercontesteffectflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_supercontesteffectflavortext_bool_exp + ): [pokemon_v2_supercontesteffectflavortext!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_supercontesteffectflavortext" + """ + pokemon_v2_supercontesteffectflavortext_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_supercontesteffectflavortext_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_supercontesteffectflavortext_order_by!] + + """filter the rows returned""" + where: pokemon_v2_supercontesteffectflavortext_bool_exp + ): pokemon_v2_supercontesteffectflavortext_aggregate! + + """ + fetch data from the table: "pokemon_v2_supercontesteffectflavortext" using primary key columns + """ + pokemon_v2_supercontesteffectflavortext_by_pk(id: Int!): pokemon_v2_supercontesteffectflavortext + + """ + fetch data from the table in a streaming manner: "pokemon_v2_supercontesteffectflavortext" + """ + pokemon_v2_supercontesteffectflavortext_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_supercontesteffectflavortext_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_supercontesteffectflavortext_bool_exp + ): [pokemon_v2_supercontesteffectflavortext!]! + + """ + fetch data from the table: "pokemon_v2_type" + """ + pokemon_v2_type( + """distinct select on columns""" + distinct_on: [pokemon_v2_type_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_type_order_by!] + + """filter the rows returned""" + where: pokemon_v2_type_bool_exp + ): [pokemon_v2_type!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_type" + """ + pokemon_v2_type_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_type_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_type_order_by!] + + """filter the rows returned""" + where: pokemon_v2_type_bool_exp + ): pokemon_v2_type_aggregate! + + """fetch data from the table: "pokemon_v2_type" using primary key columns""" + pokemon_v2_type_by_pk(id: Int!): pokemon_v2_type + + """ + fetch data from the table in a streaming manner: "pokemon_v2_type" + """ + pokemon_v2_type_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_type_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_type_bool_exp + ): [pokemon_v2_type!]! + + """ + fetch data from the table: "pokemon_v2_typeefficacy" + """ + pokemon_v2_typeefficacy( + """distinct select on columns""" + distinct_on: [pokemon_v2_typeefficacy_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_typeefficacy_order_by!] + + """filter the rows returned""" + where: pokemon_v2_typeefficacy_bool_exp + ): [pokemon_v2_typeefficacy!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_typeefficacy" + """ + pokemon_v2_typeefficacy_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_typeefficacy_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_typeefficacy_order_by!] + + """filter the rows returned""" + where: pokemon_v2_typeefficacy_bool_exp + ): pokemon_v2_typeefficacy_aggregate! + + """ + fetch data from the table: "pokemon_v2_typeefficacy" using primary key columns + """ + pokemon_v2_typeefficacy_by_pk(id: Int!): pokemon_v2_typeefficacy + + """ + fetch data from the table in a streaming manner: "pokemon_v2_typeefficacy" + """ + pokemon_v2_typeefficacy_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_typeefficacy_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_typeefficacy_bool_exp + ): [pokemon_v2_typeefficacy!]! + + """ + fetch data from the table: "pokemon_v2_typeefficacypast" + """ + pokemon_v2_typeefficacypast( + """distinct select on columns""" + distinct_on: [pokemon_v2_typeefficacypast_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_typeefficacypast_order_by!] + + """filter the rows returned""" + where: pokemon_v2_typeefficacypast_bool_exp + ): [pokemon_v2_typeefficacypast!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_typeefficacypast" + """ + pokemon_v2_typeefficacypast_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_typeefficacypast_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_typeefficacypast_order_by!] + + """filter the rows returned""" + where: pokemon_v2_typeefficacypast_bool_exp + ): pokemon_v2_typeefficacypast_aggregate! + + """ + fetch data from the table: "pokemon_v2_typeefficacypast" using primary key columns + """ + pokemon_v2_typeefficacypast_by_pk(id: Int!): pokemon_v2_typeefficacypast + + """ + fetch data from the table in a streaming manner: "pokemon_v2_typeefficacypast" + """ + pokemon_v2_typeefficacypast_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_typeefficacypast_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_typeefficacypast_bool_exp + ): [pokemon_v2_typeefficacypast!]! + + """ + fetch data from the table: "pokemon_v2_typegameindex" + """ + pokemon_v2_typegameindex( + """distinct select on columns""" + distinct_on: [pokemon_v2_typegameindex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_typegameindex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_typegameindex_bool_exp + ): [pokemon_v2_typegameindex!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_typegameindex" + """ + pokemon_v2_typegameindex_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_typegameindex_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_typegameindex_order_by!] + + """filter the rows returned""" + where: pokemon_v2_typegameindex_bool_exp + ): pokemon_v2_typegameindex_aggregate! + + """ + fetch data from the table: "pokemon_v2_typegameindex" using primary key columns + """ + pokemon_v2_typegameindex_by_pk(id: Int!): pokemon_v2_typegameindex + + """ + fetch data from the table in a streaming manner: "pokemon_v2_typegameindex" + """ + pokemon_v2_typegameindex_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_typegameindex_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_typegameindex_bool_exp + ): [pokemon_v2_typegameindex!]! + + """ + fetch data from the table: "pokemon_v2_typename" + """ + pokemon_v2_typename( + """distinct select on columns""" + distinct_on: [pokemon_v2_typename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_typename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_typename_bool_exp + ): [pokemon_v2_typename!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_typename" + """ + pokemon_v2_typename_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_typename_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_typename_order_by!] + + """filter the rows returned""" + where: pokemon_v2_typename_bool_exp + ): pokemon_v2_typename_aggregate! + + """ + fetch data from the table: "pokemon_v2_typename" using primary key columns + """ + pokemon_v2_typename_by_pk(id: Int!): pokemon_v2_typename + + """ + fetch data from the table in a streaming manner: "pokemon_v2_typename" + """ + pokemon_v2_typename_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_typename_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_typename_bool_exp + ): [pokemon_v2_typename!]! + + """ + fetch data from the table: "pokemon_v2_version" + """ + pokemon_v2_version( + """distinct select on columns""" + distinct_on: [pokemon_v2_version_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_version_order_by!] + + """filter the rows returned""" + where: pokemon_v2_version_bool_exp + ): [pokemon_v2_version!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_version" + """ + pokemon_v2_version_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_version_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_version_order_by!] + + """filter the rows returned""" + where: pokemon_v2_version_bool_exp + ): pokemon_v2_version_aggregate! + + """ + fetch data from the table: "pokemon_v2_version" using primary key columns + """ + pokemon_v2_version_by_pk(id: Int!): pokemon_v2_version + + """ + fetch data from the table in a streaming manner: "pokemon_v2_version" + """ + pokemon_v2_version_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_version_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_version_bool_exp + ): [pokemon_v2_version!]! + + """ + fetch data from the table: "pokemon_v2_versiongroup" + """ + pokemon_v2_versiongroup( + """distinct select on columns""" + distinct_on: [pokemon_v2_versiongroup_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_versiongroup_order_by!] + + """filter the rows returned""" + where: pokemon_v2_versiongroup_bool_exp + ): [pokemon_v2_versiongroup!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_versiongroup" + """ + pokemon_v2_versiongroup_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_versiongroup_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_versiongroup_order_by!] + + """filter the rows returned""" + where: pokemon_v2_versiongroup_bool_exp + ): pokemon_v2_versiongroup_aggregate! + + """ + fetch data from the table: "pokemon_v2_versiongroup" using primary key columns + """ + pokemon_v2_versiongroup_by_pk(id: Int!): pokemon_v2_versiongroup + + """ + fetch data from the table in a streaming manner: "pokemon_v2_versiongroup" + """ + pokemon_v2_versiongroup_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_versiongroup_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_versiongroup_bool_exp + ): [pokemon_v2_versiongroup!]! + + """ + fetch data from the table: "pokemon_v2_versiongroupmovelearnmethod" + """ + pokemon_v2_versiongroupmovelearnmethod( + """distinct select on columns""" + distinct_on: [pokemon_v2_versiongroupmovelearnmethod_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_versiongroupmovelearnmethod_order_by!] + + """filter the rows returned""" + where: pokemon_v2_versiongroupmovelearnmethod_bool_exp + ): [pokemon_v2_versiongroupmovelearnmethod!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_versiongroupmovelearnmethod" + """ + pokemon_v2_versiongroupmovelearnmethod_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_versiongroupmovelearnmethod_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_versiongroupmovelearnmethod_order_by!] + + """filter the rows returned""" + where: pokemon_v2_versiongroupmovelearnmethod_bool_exp + ): pokemon_v2_versiongroupmovelearnmethod_aggregate! + + """ + fetch data from the table: "pokemon_v2_versiongroupmovelearnmethod" using primary key columns + """ + pokemon_v2_versiongroupmovelearnmethod_by_pk(id: Int!): pokemon_v2_versiongroupmovelearnmethod + + """ + fetch data from the table in a streaming manner: "pokemon_v2_versiongroupmovelearnmethod" + """ + pokemon_v2_versiongroupmovelearnmethod_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_versiongroupmovelearnmethod_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_versiongroupmovelearnmethod_bool_exp + ): [pokemon_v2_versiongroupmovelearnmethod!]! + + """ + fetch data from the table: "pokemon_v2_versiongroupregion" + """ + pokemon_v2_versiongroupregion( + """distinct select on columns""" + distinct_on: [pokemon_v2_versiongroupregion_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_versiongroupregion_order_by!] + + """filter the rows returned""" + where: pokemon_v2_versiongroupregion_bool_exp + ): [pokemon_v2_versiongroupregion!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_versiongroupregion" + """ + pokemon_v2_versiongroupregion_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_versiongroupregion_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_versiongroupregion_order_by!] + + """filter the rows returned""" + where: pokemon_v2_versiongroupregion_bool_exp + ): pokemon_v2_versiongroupregion_aggregate! + + """ + fetch data from the table: "pokemon_v2_versiongroupregion" using primary key columns + """ + pokemon_v2_versiongroupregion_by_pk(id: Int!): pokemon_v2_versiongroupregion + + """ + fetch data from the table in a streaming manner: "pokemon_v2_versiongroupregion" + """ + pokemon_v2_versiongroupregion_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_versiongroupregion_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_versiongroupregion_bool_exp + ): [pokemon_v2_versiongroupregion!]! + + """ + fetch data from the table: "pokemon_v2_versionname" + """ + pokemon_v2_versionname( + """distinct select on columns""" + distinct_on: [pokemon_v2_versionname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_versionname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_versionname_bool_exp + ): [pokemon_v2_versionname!]! + + """ + fetch aggregated fields from the table: "pokemon_v2_versionname" + """ + pokemon_v2_versionname_aggregate( + """distinct select on columns""" + distinct_on: [pokemon_v2_versionname_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [pokemon_v2_versionname_order_by!] + + """filter the rows returned""" + where: pokemon_v2_versionname_bool_exp + ): pokemon_v2_versionname_aggregate! + + """ + fetch data from the table: "pokemon_v2_versionname" using primary key columns + """ + pokemon_v2_versionname_by_pk(id: Int!): pokemon_v2_versionname + + """ + fetch data from the table in a streaming manner: "pokemon_v2_versionname" + """ + pokemon_v2_versionname_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [pokemon_v2_versionname_stream_cursor_input]! + + """filter the rows returned""" + where: pokemon_v2_versionname_bool_exp + ): [pokemon_v2_versionname!]! +} \ No newline at end of file diff --git a/src/lib/config.ts b/src/lib/config.ts index 6958ba9..139cf66 100644 --- a/src/lib/config.ts +++ b/src/lib/config.ts @@ -2,41 +2,20 @@ import yargs from "yargs"; import { hideBin } from "yargs/helpers"; import { z } from "zod"; -export const configSchema = z.discriminatedUnion( - "source", - [ - z.object({ - source: z.literal("endpoint"), - // Endpoint for the schema to be introspected and transformed into tools - endpoint: z.string().url(), - // Headers to be sent with the request to the schema endpoint - headers: z.record(z.string()).optional(), - // Allow MCP clients to use mutations, can potentially be dangerous so we disable by default - allowMutations: z.boolean().optional().default(false), - // Queries to exclude from the generated tools - excludeQueries: z.array(z.string()).optional(), - // Mutations to exclude from the generated tools - excludeMutations: z.array(z.string()).optional(), - }), - z.object({ - source: z.literal("file"), - // File path alternative to endpoint, will read the file instead of fetching the endpoint - schemaPath: z.string(), - // Allow MCP clients to use mutations, can potentially be dangerous so we disable by default - allowMutations: z.boolean().optional().default(false), - // Queries to exclude from the generated tools - excludeQueries: z.array(z.string()).optional(), - // Mutations to exclude from the generated tools - excludeMutations: z.array(z.string()).optional(), - }), - ], - { - errorMap: () => ({ - message: - "You must provide either an endpoint URL or a schema file path, but not both", - }), - } -); +export const configSchema = z.object({ + // Endpoint for the schema to be introspected and transformed into tools + endpoint: z.string().url(), + // File path alternative to endpoint, will read the file instead of fetching the endpoint + schemaPath: z.string().optional(), + // Headers to be sent with the request to the schema endpoint + headers: z.record(z.string()).optional(), + // Allow MCP clients to use mutations, can potentially be dangerous so we disable by default + allowMutations: z.boolean().optional().default(false), + // Queries to exclude from the generated tools + excludeQueries: z.array(z.string()).optional().default([]), + // Mutations to exclude from the generated tools + excludeMutations: z.array(z.string()).optional().default([]), +}); export type Config = z.infer; @@ -50,7 +29,7 @@ export function parseArgumentsToConfig(): Config { .option("schemaPath", { type: "string", description: - "File path alternative to endpoint, will read the file instead of fetching the endpoint", + "Alternative path for GraphQL schema file, use this if you cannot introspect the schema from the endpoint", }) .option("headers", { type: "string", diff --git a/src/lib/graphql.ts b/src/lib/graphql.ts index 620af69..7413c66 100644 --- a/src/lib/graphql.ts +++ b/src/lib/graphql.ts @@ -1,71 +1,115 @@ // Contains Schema parsing and transformation logic import { + type GraphQLArgument, + type GraphQLSchema, Kind, - type OperationDefinitionNode, type TypeNode, type VariableDefinitionNode, + buildClientSchema, + buildSchema, getIntrospectionQuery, - parse, + printSchema, } from "graphql"; -import { readFile } from "node:fs/promises"; +import { readFile, writeFile } from "node:fs/promises"; import { z } from "zod"; import zodToJsonSchema, { type JsonSchema7Type } from "zod-to-json-schema"; import type { Config } from "./config"; -export async function loadSchema( +export async function loadSchemaFromIntrospection( endpoint: string, headers?: Record -) { - if (endpoint) { - const response = await fetch(endpoint, { - headers: { - "Content-Type": "application/json", - ...headers, - }, - body: JSON.stringify({ - query: getIntrospectionQuery(), - }), - }); - - if (!response.ok) { - throw new Error(`Failed to fetch GraphQL schema: ${response.statusText}`); - } +): Promise { + const response = await fetch(endpoint, { + headers: { + "Content-Type": "application/json", + ...headers, + }, + method: "POST", + body: JSON.stringify({ + query: getIntrospectionQuery(), + }), + }); + + if (!response.ok) { + throw new Error(`Failed to fetch GraphQL schema: ${response.statusText}`); + } - const data = await response.json(); + const responseJson = await response.json(); - return data; + if (responseJson.errors) { + throw new Error( + `Failed to fetch GraphQL schema: ${JSON.stringify(responseJson.errors)}` + ); } + + if (!responseJson.data.__schema) { + throw new Error(`Invalid schema found at ${JSON.stringify(responseJson)}`); + } + + const schemaObj = buildClientSchema(responseJson.data); + + const sdl = printSchema(schemaObj); + + // Debug code to not rate limit the endpoint: + await writeFile("schema.graphql", sdl); + + return schemaObj; } -export async function loadSchemaFromFile(path: string) { +export async function loadSchemaFromFile(path: string): Promise { const data = await readFile(path, "utf-8"); - return data; + return buildSchema(data); } +type Operation = { + name: string; + type: "query" | "mutation"; + description: string | undefined | null; + parameters: readonly GraphQLArgument[]; +}; + /** * Extracts all operations from a GraphQL schema and return them in a structured format * @param schema - The GraphQL schema to extract operations from * @returns An array of operations */ -export async function getOperations( - schema: string, +export function getOperations( + schema: GraphQLSchema, // Subscriptions are not supported (yet?) - allowedOperations: ("query" | "mutation")[] -): Promise { - const document = parse(schema); - - const operationDefinition = document.definitions.filter( - (definition) => definition.kind === "OperationDefinition" - ); - - return operationDefinition.filter((operation) => - allowedOperations.includes( - // TODO: Fix with proper types - operation.operation as unknown as "query" | "mutation" - ) - ); + allowedOperations: ("query" | "mutation")[] = ["query", "mutation"] +): Operation[] { + const operations: Operation[] = []; + + if (allowedOperations.includes("query")) { + const queryType = schema.getQueryType(); + const queryFields = queryType?.getFields(); + for (const [fieldName, field] of Object.entries(queryFields || {})) { + operations.push({ + name: fieldName, + type: "query", + description: field.description, + parameters: field.args, + }); + } + } + + if (allowedOperations.includes("mutation")) { + const mutationType = schema.getMutationType(); + const mutationFields = mutationType?.getFields(); + for (const [fieldName, field] of Object.entries(mutationFields || {})) { + operations.push({ + name: fieldName, + type: "mutation", + description: field.description, + parameters: field.args, + }); + } + } + + console.error(operations.length); + return operations; } type Tool = { @@ -80,27 +124,27 @@ type Tool = { * @param operation - The GraphQL operation to convert * @returns A MCP tool object */ -export function operationToTool(operation: OperationDefinitionNode): Tool { +export function operationToTool(operation: Operation): Tool { // Import necessary types if they're not already imported + if (!operation.name) { + // Should never reach this as we already filter out operations without a name earlier + throw new Error("Operation name is required"); + } + // Create a name for the tool based on the operation - const name = operation.name?.value - ? `${operation.operation}-${operation.name.value}` - : `anonymous-${operation.operation}`; + const name = `${operation.type}-${operation.name}`; // Get description from the operation or use a default - const description = - operation.name?.value || `Anonymous ${operation.operation}`; + const description = operation.description; // Build parameters schema based on variable definitions - const paramSchema = buildZodSchemaFromVariables( - operation.variableDefinitions || [] - ); + const paramSchema = buildZodSchemaFromVariables(operation.parameters); // Return the tool object return { name, - description, + description: description || "", parameters: paramSchema, inputSchema: zodToJsonSchema(paramSchema), }; @@ -170,43 +214,57 @@ function namedTypeToZodSchema(typeName: string): z.ZodTypeAny { } export async function createGraphQLHandler(config: Config) { - let schema: string; + let schema: GraphQLSchema; - if (config.source === "file") { + if (config.schemaPath) { schema = await loadSchemaFromFile(config.schemaPath); - } else if (config.source === "endpoint") { - schema = await loadSchema(config.endpoint, config.headers); + } else { + // Fall back to introspection if no schema path is provided + schema = await loadSchemaFromIntrospection(config.endpoint, config.headers); } const tools = new Map(); - return { - async loadTools() { - const operations = await getOperations( - schema, - config.allowMutations ? ["query", "mutation"] : ["query"] - ); - - // Add tools - for (const operation of operations) { - if ( - !operation.name?.value || - config.excludeQueries?.includes(operation.name.value) || - config.excludeMutations?.includes(operation.name.value) - ) { - // Operation not found or excluded - continue; - } - - const tool = operationToTool(operation); - - tools.set(tool.name, tool); + async function loadTools() { + const operations = getOperations( + schema, + config.allowMutations ? ["query", "mutation"] : ["query"] + ); + + // Add tools + for (const operation of operations) { + if ( + !operation.name || + config.excludeQueries.includes(operation.name) || + config.excludeMutations.includes(operation.name) + ) { + // Operation not found or excluded + console.error(`Skipping operation ${operation.name} as it is excluded`); + continue; } - return tools; - }, - getTool(name: string) { - return tools.get(name); + const tool = operationToTool(operation); + + tools.set(tool.name, tool); + } + } + + // Load initial tools + await loadTools(); + + return { + tools, + loadTools, + async execute(query: string, variables: unknown) { + const result = await fetch(config.endpoint, { + method: "POST", + body: JSON.stringify({ query, variables }), + }); + + return { + status: "success", + data: await result.json(), + }; }, }; } From ca527ecbbfe7abeb884a17dd8f4915e4522f8af3 Mon Sep 17 00:00:00 2001 From: Boris Besemer Date: Fri, 7 Mar 2025 11:46:38 +0100 Subject: [PATCH 06/13] feat: parse graphql arguments into zod schema --- schema.graphql | 70315 ------------------------------------------- src/lib/graphql.ts | 93 +- v2-plan.md | 3 + 3 files changed, 52 insertions(+), 70359 deletions(-) delete mode 100644 schema.graphql diff --git a/schema.graphql b/schema.graphql deleted file mode 100644 index 22882ce..0000000 --- a/schema.graphql +++ /dev/null @@ -1,70315 +0,0 @@ -schema { - query: query_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 - -""" -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!] -} - -""" -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!] -} - -""" -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 -} - -"""ordering argument of a cursor""" -enum cursor_ordering { - """ascending ordering of the cursor""" - ASC - - """descending ordering of the cursor""" - DESC -} - -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!] -} - -"""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 "pokemon_v2_ability" -""" -type pokemon_v2_ability { - generation_id: Int - id: Int! - is_main_series: Boolean! - name: String! - - """An array relationship""" - pokemon_v2_abilitychanges( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilitychange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilitychange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilitychange_bool_exp - ): [pokemon_v2_abilitychange!]! - - """An aggregate relationship""" - pokemon_v2_abilitychanges_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilitychange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilitychange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilitychange_bool_exp - ): pokemon_v2_abilitychange_aggregate! - - """An array relationship""" - pokemon_v2_abilityeffecttexts( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilityeffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilityeffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilityeffecttext_bool_exp - ): [pokemon_v2_abilityeffecttext!]! - - """An aggregate relationship""" - pokemon_v2_abilityeffecttexts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilityeffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilityeffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilityeffecttext_bool_exp - ): pokemon_v2_abilityeffecttext_aggregate! - - """An array relationship""" - pokemon_v2_abilityflavortexts( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilityflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilityflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilityflavortext_bool_exp - ): [pokemon_v2_abilityflavortext!]! - - """An aggregate relationship""" - pokemon_v2_abilityflavortexts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilityflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilityflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilityflavortext_bool_exp - ): pokemon_v2_abilityflavortext_aggregate! - - """An array relationship""" - pokemon_v2_abilitynames( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilityname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilityname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilityname_bool_exp - ): [pokemon_v2_abilityname!]! - - """An aggregate relationship""" - pokemon_v2_abilitynames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilityname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilityname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilityname_bool_exp - ): pokemon_v2_abilityname_aggregate! - - """An object relationship""" - pokemon_v2_generation: pokemon_v2_generation - - """An array relationship""" - pokemon_v2_pokemonabilities( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonability_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonability_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonability_bool_exp - ): [pokemon_v2_pokemonability!]! - - """An aggregate relationship""" - pokemon_v2_pokemonabilities_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonability_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonability_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonability_bool_exp - ): pokemon_v2_pokemonability_aggregate! - - """An array relationship""" - pokemon_v2_pokemonabilitypasts( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonabilitypast_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonabilitypast_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonabilitypast_bool_exp - ): [pokemon_v2_pokemonabilitypast!]! - - """An aggregate relationship""" - pokemon_v2_pokemonabilitypasts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonabilitypast_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonabilitypast_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonabilitypast_bool_exp - ): pokemon_v2_pokemonabilitypast_aggregate! -} - -""" -aggregated selection of "pokemon_v2_ability" -""" -type pokemon_v2_ability_aggregate { - aggregate: pokemon_v2_ability_aggregate_fields - nodes: [pokemon_v2_ability!]! -} - -input pokemon_v2_ability_aggregate_bool_exp { - bool_and: pokemon_v2_ability_aggregate_bool_exp_bool_and - bool_or: pokemon_v2_ability_aggregate_bool_exp_bool_or - count: pokemon_v2_ability_aggregate_bool_exp_count -} - -input pokemon_v2_ability_aggregate_bool_exp_bool_and { - arguments: pokemon_v2_ability_select_column_pokemon_v2_ability_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: pokemon_v2_ability_bool_exp - predicate: Boolean_comparison_exp! -} - -input pokemon_v2_ability_aggregate_bool_exp_bool_or { - arguments: pokemon_v2_ability_select_column_pokemon_v2_ability_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: pokemon_v2_ability_bool_exp - predicate: Boolean_comparison_exp! -} - -input pokemon_v2_ability_aggregate_bool_exp_count { - arguments: [pokemon_v2_ability_select_column!] - distinct: Boolean - filter: pokemon_v2_ability_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_ability" -""" -type pokemon_v2_ability_aggregate_fields { - avg: pokemon_v2_ability_avg_fields - count(columns: [pokemon_v2_ability_select_column!], distinct: Boolean): Int! - max: pokemon_v2_ability_max_fields - min: pokemon_v2_ability_min_fields - stddev: pokemon_v2_ability_stddev_fields - stddev_pop: pokemon_v2_ability_stddev_pop_fields - stddev_samp: pokemon_v2_ability_stddev_samp_fields - sum: pokemon_v2_ability_sum_fields - var_pop: pokemon_v2_ability_var_pop_fields - var_samp: pokemon_v2_ability_var_samp_fields - variance: pokemon_v2_ability_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_ability" -""" -input pokemon_v2_ability_aggregate_order_by { - avg: pokemon_v2_ability_avg_order_by - count: order_by - max: pokemon_v2_ability_max_order_by - min: pokemon_v2_ability_min_order_by - stddev: pokemon_v2_ability_stddev_order_by - stddev_pop: pokemon_v2_ability_stddev_pop_order_by - stddev_samp: pokemon_v2_ability_stddev_samp_order_by - sum: pokemon_v2_ability_sum_order_by - var_pop: pokemon_v2_ability_var_pop_order_by - var_samp: pokemon_v2_ability_var_samp_order_by - variance: pokemon_v2_ability_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_ability_avg_fields { - generation_id: Float - id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_ability" -""" -input pokemon_v2_ability_avg_order_by { - generation_id: order_by - id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_ability". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_ability_bool_exp { - _and: [pokemon_v2_ability_bool_exp!] - _not: pokemon_v2_ability_bool_exp - _or: [pokemon_v2_ability_bool_exp!] - generation_id: Int_comparison_exp - id: Int_comparison_exp - is_main_series: Boolean_comparison_exp - name: String_comparison_exp - pokemon_v2_abilitychanges: pokemon_v2_abilitychange_bool_exp - pokemon_v2_abilitychanges_aggregate: pokemon_v2_abilitychange_aggregate_bool_exp - pokemon_v2_abilityeffecttexts: pokemon_v2_abilityeffecttext_bool_exp - pokemon_v2_abilityeffecttexts_aggregate: pokemon_v2_abilityeffecttext_aggregate_bool_exp - pokemon_v2_abilityflavortexts: pokemon_v2_abilityflavortext_bool_exp - pokemon_v2_abilityflavortexts_aggregate: pokemon_v2_abilityflavortext_aggregate_bool_exp - pokemon_v2_abilitynames: pokemon_v2_abilityname_bool_exp - pokemon_v2_abilitynames_aggregate: pokemon_v2_abilityname_aggregate_bool_exp - pokemon_v2_generation: pokemon_v2_generation_bool_exp - pokemon_v2_pokemonabilities: pokemon_v2_pokemonability_bool_exp - pokemon_v2_pokemonabilities_aggregate: pokemon_v2_pokemonability_aggregate_bool_exp - pokemon_v2_pokemonabilitypasts: pokemon_v2_pokemonabilitypast_bool_exp - pokemon_v2_pokemonabilitypasts_aggregate: pokemon_v2_pokemonabilitypast_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_ability_max_fields { - generation_id: Int - id: Int - name: String -} - -""" -order by max() on columns of table "pokemon_v2_ability" -""" -input pokemon_v2_ability_max_order_by { - generation_id: order_by - id: order_by - name: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_ability_min_fields { - generation_id: Int - id: Int - name: String -} - -""" -order by min() on columns of table "pokemon_v2_ability" -""" -input pokemon_v2_ability_min_order_by { - generation_id: order_by - id: order_by - name: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_ability".""" -input pokemon_v2_ability_order_by { - generation_id: order_by - id: order_by - is_main_series: order_by - name: order_by - pokemon_v2_abilitychanges_aggregate: pokemon_v2_abilitychange_aggregate_order_by - pokemon_v2_abilityeffecttexts_aggregate: pokemon_v2_abilityeffecttext_aggregate_order_by - pokemon_v2_abilityflavortexts_aggregate: pokemon_v2_abilityflavortext_aggregate_order_by - pokemon_v2_abilitynames_aggregate: pokemon_v2_abilityname_aggregate_order_by - pokemon_v2_generation: pokemon_v2_generation_order_by - pokemon_v2_pokemonabilities_aggregate: pokemon_v2_pokemonability_aggregate_order_by - pokemon_v2_pokemonabilitypasts_aggregate: pokemon_v2_pokemonabilitypast_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_ability" -""" -enum pokemon_v2_ability_select_column { - """column name""" - generation_id - - """column name""" - id - - """column name""" - is_main_series - - """column name""" - name -} - -""" -select "pokemon_v2_ability_aggregate_bool_exp_bool_and_arguments_columns" columns of table "pokemon_v2_ability" -""" -enum pokemon_v2_ability_select_column_pokemon_v2_ability_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - is_main_series -} - -""" -select "pokemon_v2_ability_aggregate_bool_exp_bool_or_arguments_columns" columns of table "pokemon_v2_ability" -""" -enum pokemon_v2_ability_select_column_pokemon_v2_ability_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - is_main_series -} - -"""aggregate stddev on columns""" -type pokemon_v2_ability_stddev_fields { - generation_id: Float - id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_ability" -""" -input pokemon_v2_ability_stddev_order_by { - generation_id: order_by - id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_ability_stddev_pop_fields { - generation_id: Float - id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_ability" -""" -input pokemon_v2_ability_stddev_pop_order_by { - generation_id: order_by - id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_ability_stddev_samp_fields { - generation_id: Float - id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_ability" -""" -input pokemon_v2_ability_stddev_samp_order_by { - generation_id: order_by - id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_ability" -""" -input pokemon_v2_ability_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_ability_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_ability_stream_cursor_value_input { - generation_id: Int - id: Int - is_main_series: Boolean - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_ability_sum_fields { - generation_id: Int - id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_ability" -""" -input pokemon_v2_ability_sum_order_by { - generation_id: order_by - id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_ability_var_pop_fields { - generation_id: Float - id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_ability" -""" -input pokemon_v2_ability_var_pop_order_by { - generation_id: order_by - id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_ability_var_samp_fields { - generation_id: Float - id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_ability" -""" -input pokemon_v2_ability_var_samp_order_by { - generation_id: order_by - id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_ability_variance_fields { - generation_id: Float - id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_ability" -""" -input pokemon_v2_ability_variance_order_by { - generation_id: order_by - id: order_by -} - -""" -columns and relationships of "pokemon_v2_abilitychange" -""" -type pokemon_v2_abilitychange { - ability_id: Int - id: Int! - - """An object relationship""" - pokemon_v2_ability: pokemon_v2_ability - - """An array relationship""" - pokemon_v2_abilitychangeeffecttexts( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilitychangeeffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilitychangeeffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilitychangeeffecttext_bool_exp - ): [pokemon_v2_abilitychangeeffecttext!]! - - """An aggregate relationship""" - pokemon_v2_abilitychangeeffecttexts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilitychangeeffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilitychangeeffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilitychangeeffecttext_bool_exp - ): pokemon_v2_abilitychangeeffecttext_aggregate! - - """An object relationship""" - pokemon_v2_versiongroup: pokemon_v2_versiongroup - version_group_id: Int -} - -""" -aggregated selection of "pokemon_v2_abilitychange" -""" -type pokemon_v2_abilitychange_aggregate { - aggregate: pokemon_v2_abilitychange_aggregate_fields - nodes: [pokemon_v2_abilitychange!]! -} - -input pokemon_v2_abilitychange_aggregate_bool_exp { - count: pokemon_v2_abilitychange_aggregate_bool_exp_count -} - -input pokemon_v2_abilitychange_aggregate_bool_exp_count { - arguments: [pokemon_v2_abilitychange_select_column!] - distinct: Boolean - filter: pokemon_v2_abilitychange_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_abilitychange" -""" -type pokemon_v2_abilitychange_aggregate_fields { - avg: pokemon_v2_abilitychange_avg_fields - count(columns: [pokemon_v2_abilitychange_select_column!], distinct: Boolean): Int! - max: pokemon_v2_abilitychange_max_fields - min: pokemon_v2_abilitychange_min_fields - stddev: pokemon_v2_abilitychange_stddev_fields - stddev_pop: pokemon_v2_abilitychange_stddev_pop_fields - stddev_samp: pokemon_v2_abilitychange_stddev_samp_fields - sum: pokemon_v2_abilitychange_sum_fields - var_pop: pokemon_v2_abilitychange_var_pop_fields - var_samp: pokemon_v2_abilitychange_var_samp_fields - variance: pokemon_v2_abilitychange_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_abilitychange" -""" -input pokemon_v2_abilitychange_aggregate_order_by { - avg: pokemon_v2_abilitychange_avg_order_by - count: order_by - max: pokemon_v2_abilitychange_max_order_by - min: pokemon_v2_abilitychange_min_order_by - stddev: pokemon_v2_abilitychange_stddev_order_by - stddev_pop: pokemon_v2_abilitychange_stddev_pop_order_by - stddev_samp: pokemon_v2_abilitychange_stddev_samp_order_by - sum: pokemon_v2_abilitychange_sum_order_by - var_pop: pokemon_v2_abilitychange_var_pop_order_by - var_samp: pokemon_v2_abilitychange_var_samp_order_by - variance: pokemon_v2_abilitychange_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_abilitychange_avg_fields { - ability_id: Float - id: Float - version_group_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_abilitychange" -""" -input pokemon_v2_abilitychange_avg_order_by { - ability_id: order_by - id: order_by - version_group_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_abilitychange". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_abilitychange_bool_exp { - _and: [pokemon_v2_abilitychange_bool_exp!] - _not: pokemon_v2_abilitychange_bool_exp - _or: [pokemon_v2_abilitychange_bool_exp!] - ability_id: Int_comparison_exp - id: Int_comparison_exp - pokemon_v2_ability: pokemon_v2_ability_bool_exp - pokemon_v2_abilitychangeeffecttexts: pokemon_v2_abilitychangeeffecttext_bool_exp - pokemon_v2_abilitychangeeffecttexts_aggregate: pokemon_v2_abilitychangeeffecttext_aggregate_bool_exp - pokemon_v2_versiongroup: pokemon_v2_versiongroup_bool_exp - version_group_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_abilitychange_max_fields { - ability_id: Int - id: Int - version_group_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_abilitychange" -""" -input pokemon_v2_abilitychange_max_order_by { - ability_id: order_by - id: order_by - version_group_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_abilitychange_min_fields { - ability_id: Int - id: Int - version_group_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_abilitychange" -""" -input pokemon_v2_abilitychange_min_order_by { - ability_id: order_by - id: order_by - version_group_id: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_abilitychange".""" -input pokemon_v2_abilitychange_order_by { - ability_id: order_by - id: order_by - pokemon_v2_ability: pokemon_v2_ability_order_by - pokemon_v2_abilitychangeeffecttexts_aggregate: pokemon_v2_abilitychangeeffecttext_aggregate_order_by - pokemon_v2_versiongroup: pokemon_v2_versiongroup_order_by - version_group_id: order_by -} - -""" -select columns of table "pokemon_v2_abilitychange" -""" -enum pokemon_v2_abilitychange_select_column { - """column name""" - ability_id - - """column name""" - id - - """column name""" - version_group_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_abilitychange_stddev_fields { - ability_id: Float - id: Float - version_group_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_abilitychange" -""" -input pokemon_v2_abilitychange_stddev_order_by { - ability_id: order_by - id: order_by - version_group_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_abilitychange_stddev_pop_fields { - ability_id: Float - id: Float - version_group_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_abilitychange" -""" -input pokemon_v2_abilitychange_stddev_pop_order_by { - ability_id: order_by - id: order_by - version_group_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_abilitychange_stddev_samp_fields { - ability_id: Float - id: Float - version_group_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_abilitychange" -""" -input pokemon_v2_abilitychange_stddev_samp_order_by { - ability_id: order_by - id: order_by - version_group_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_abilitychange" -""" -input pokemon_v2_abilitychange_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_abilitychange_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_abilitychange_stream_cursor_value_input { - ability_id: Int - id: Int - version_group_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_abilitychange_sum_fields { - ability_id: Int - id: Int - version_group_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_abilitychange" -""" -input pokemon_v2_abilitychange_sum_order_by { - ability_id: order_by - id: order_by - version_group_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_abilitychange_var_pop_fields { - ability_id: Float - id: Float - version_group_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_abilitychange" -""" -input pokemon_v2_abilitychange_var_pop_order_by { - ability_id: order_by - id: order_by - version_group_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_abilitychange_var_samp_fields { - ability_id: Float - id: Float - version_group_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_abilitychange" -""" -input pokemon_v2_abilitychange_var_samp_order_by { - ability_id: order_by - id: order_by - version_group_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_abilitychange_variance_fields { - ability_id: Float - id: Float - version_group_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_abilitychange" -""" -input pokemon_v2_abilitychange_variance_order_by { - ability_id: order_by - id: order_by - version_group_id: order_by -} - -""" -columns and relationships of "pokemon_v2_abilitychangeeffecttext" -""" -type pokemon_v2_abilitychangeeffecttext { - ability_change_id: Int - effect: String! - id: Int! - language_id: Int - - """An object relationship""" - pokemon_v2_abilitychange: pokemon_v2_abilitychange - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language -} - -""" -aggregated selection of "pokemon_v2_abilitychangeeffecttext" -""" -type pokemon_v2_abilitychangeeffecttext_aggregate { - aggregate: pokemon_v2_abilitychangeeffecttext_aggregate_fields - nodes: [pokemon_v2_abilitychangeeffecttext!]! -} - -input pokemon_v2_abilitychangeeffecttext_aggregate_bool_exp { - count: pokemon_v2_abilitychangeeffecttext_aggregate_bool_exp_count -} - -input pokemon_v2_abilitychangeeffecttext_aggregate_bool_exp_count { - arguments: [pokemon_v2_abilitychangeeffecttext_select_column!] - distinct: Boolean - filter: pokemon_v2_abilitychangeeffecttext_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_abilitychangeeffecttext" -""" -type pokemon_v2_abilitychangeeffecttext_aggregate_fields { - avg: pokemon_v2_abilitychangeeffecttext_avg_fields - count(columns: [pokemon_v2_abilitychangeeffecttext_select_column!], distinct: Boolean): Int! - max: pokemon_v2_abilitychangeeffecttext_max_fields - min: pokemon_v2_abilitychangeeffecttext_min_fields - stddev: pokemon_v2_abilitychangeeffecttext_stddev_fields - stddev_pop: pokemon_v2_abilitychangeeffecttext_stddev_pop_fields - stddev_samp: pokemon_v2_abilitychangeeffecttext_stddev_samp_fields - sum: pokemon_v2_abilitychangeeffecttext_sum_fields - var_pop: pokemon_v2_abilitychangeeffecttext_var_pop_fields - var_samp: pokemon_v2_abilitychangeeffecttext_var_samp_fields - variance: pokemon_v2_abilitychangeeffecttext_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_abilitychangeeffecttext" -""" -input pokemon_v2_abilitychangeeffecttext_aggregate_order_by { - avg: pokemon_v2_abilitychangeeffecttext_avg_order_by - count: order_by - max: pokemon_v2_abilitychangeeffecttext_max_order_by - min: pokemon_v2_abilitychangeeffecttext_min_order_by - stddev: pokemon_v2_abilitychangeeffecttext_stddev_order_by - stddev_pop: pokemon_v2_abilitychangeeffecttext_stddev_pop_order_by - stddev_samp: pokemon_v2_abilitychangeeffecttext_stddev_samp_order_by - sum: pokemon_v2_abilitychangeeffecttext_sum_order_by - var_pop: pokemon_v2_abilitychangeeffecttext_var_pop_order_by - var_samp: pokemon_v2_abilitychangeeffecttext_var_samp_order_by - variance: pokemon_v2_abilitychangeeffecttext_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_abilitychangeeffecttext_avg_fields { - ability_change_id: Float - id: Float - language_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_abilitychangeeffecttext" -""" -input pokemon_v2_abilitychangeeffecttext_avg_order_by { - ability_change_id: order_by - id: order_by - language_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_abilitychangeeffecttext". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_abilitychangeeffecttext_bool_exp { - _and: [pokemon_v2_abilitychangeeffecttext_bool_exp!] - _not: pokemon_v2_abilitychangeeffecttext_bool_exp - _or: [pokemon_v2_abilitychangeeffecttext_bool_exp!] - ability_change_id: Int_comparison_exp - effect: String_comparison_exp - id: Int_comparison_exp - language_id: Int_comparison_exp - pokemon_v2_abilitychange: pokemon_v2_abilitychange_bool_exp - pokemon_v2_language: pokemon_v2_language_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_abilitychangeeffecttext_max_fields { - ability_change_id: Int - effect: String - id: Int - language_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_abilitychangeeffecttext" -""" -input pokemon_v2_abilitychangeeffecttext_max_order_by { - ability_change_id: order_by - effect: order_by - id: order_by - language_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_abilitychangeeffecttext_min_fields { - ability_change_id: Int - effect: String - id: Int - language_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_abilitychangeeffecttext" -""" -input pokemon_v2_abilitychangeeffecttext_min_order_by { - ability_change_id: order_by - effect: order_by - id: order_by - language_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_abilitychangeeffecttext". -""" -input pokemon_v2_abilitychangeeffecttext_order_by { - ability_change_id: order_by - effect: order_by - id: order_by - language_id: order_by - pokemon_v2_abilitychange: pokemon_v2_abilitychange_order_by - pokemon_v2_language: pokemon_v2_language_order_by -} - -""" -select columns of table "pokemon_v2_abilitychangeeffecttext" -""" -enum pokemon_v2_abilitychangeeffecttext_select_column { - """column name""" - ability_change_id - - """column name""" - effect - - """column name""" - id - - """column name""" - language_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_abilitychangeeffecttext_stddev_fields { - ability_change_id: Float - id: Float - language_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_abilitychangeeffecttext" -""" -input pokemon_v2_abilitychangeeffecttext_stddev_order_by { - ability_change_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_abilitychangeeffecttext_stddev_pop_fields { - ability_change_id: Float - id: Float - language_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_abilitychangeeffecttext" -""" -input pokemon_v2_abilitychangeeffecttext_stddev_pop_order_by { - ability_change_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_abilitychangeeffecttext_stddev_samp_fields { - ability_change_id: Float - id: Float - language_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_abilitychangeeffecttext" -""" -input pokemon_v2_abilitychangeeffecttext_stddev_samp_order_by { - ability_change_id: order_by - id: order_by - language_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_abilitychangeeffecttext" -""" -input pokemon_v2_abilitychangeeffecttext_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_abilitychangeeffecttext_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_abilitychangeeffecttext_stream_cursor_value_input { - ability_change_id: Int - effect: String - id: Int - language_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_abilitychangeeffecttext_sum_fields { - ability_change_id: Int - id: Int - language_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_abilitychangeeffecttext" -""" -input pokemon_v2_abilitychangeeffecttext_sum_order_by { - ability_change_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_abilitychangeeffecttext_var_pop_fields { - ability_change_id: Float - id: Float - language_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_abilitychangeeffecttext" -""" -input pokemon_v2_abilitychangeeffecttext_var_pop_order_by { - ability_change_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_abilitychangeeffecttext_var_samp_fields { - ability_change_id: Float - id: Float - language_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_abilitychangeeffecttext" -""" -input pokemon_v2_abilitychangeeffecttext_var_samp_order_by { - ability_change_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_abilitychangeeffecttext_variance_fields { - ability_change_id: Float - id: Float - language_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_abilitychangeeffecttext" -""" -input pokemon_v2_abilitychangeeffecttext_variance_order_by { - ability_change_id: order_by - id: order_by - language_id: order_by -} - -""" -columns and relationships of "pokemon_v2_abilityeffecttext" -""" -type pokemon_v2_abilityeffecttext { - ability_id: Int - effect: String! - id: Int! - language_id: Int - - """An object relationship""" - pokemon_v2_ability: pokemon_v2_ability - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - short_effect: String! -} - -""" -aggregated selection of "pokemon_v2_abilityeffecttext" -""" -type pokemon_v2_abilityeffecttext_aggregate { - aggregate: pokemon_v2_abilityeffecttext_aggregate_fields - nodes: [pokemon_v2_abilityeffecttext!]! -} - -input pokemon_v2_abilityeffecttext_aggregate_bool_exp { - count: pokemon_v2_abilityeffecttext_aggregate_bool_exp_count -} - -input pokemon_v2_abilityeffecttext_aggregate_bool_exp_count { - arguments: [pokemon_v2_abilityeffecttext_select_column!] - distinct: Boolean - filter: pokemon_v2_abilityeffecttext_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_abilityeffecttext" -""" -type pokemon_v2_abilityeffecttext_aggregate_fields { - avg: pokemon_v2_abilityeffecttext_avg_fields - count(columns: [pokemon_v2_abilityeffecttext_select_column!], distinct: Boolean): Int! - max: pokemon_v2_abilityeffecttext_max_fields - min: pokemon_v2_abilityeffecttext_min_fields - stddev: pokemon_v2_abilityeffecttext_stddev_fields - stddev_pop: pokemon_v2_abilityeffecttext_stddev_pop_fields - stddev_samp: pokemon_v2_abilityeffecttext_stddev_samp_fields - sum: pokemon_v2_abilityeffecttext_sum_fields - var_pop: pokemon_v2_abilityeffecttext_var_pop_fields - var_samp: pokemon_v2_abilityeffecttext_var_samp_fields - variance: pokemon_v2_abilityeffecttext_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_abilityeffecttext" -""" -input pokemon_v2_abilityeffecttext_aggregate_order_by { - avg: pokemon_v2_abilityeffecttext_avg_order_by - count: order_by - max: pokemon_v2_abilityeffecttext_max_order_by - min: pokemon_v2_abilityeffecttext_min_order_by - stddev: pokemon_v2_abilityeffecttext_stddev_order_by - stddev_pop: pokemon_v2_abilityeffecttext_stddev_pop_order_by - stddev_samp: pokemon_v2_abilityeffecttext_stddev_samp_order_by - sum: pokemon_v2_abilityeffecttext_sum_order_by - var_pop: pokemon_v2_abilityeffecttext_var_pop_order_by - var_samp: pokemon_v2_abilityeffecttext_var_samp_order_by - variance: pokemon_v2_abilityeffecttext_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_abilityeffecttext_avg_fields { - ability_id: Float - id: Float - language_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_abilityeffecttext" -""" -input pokemon_v2_abilityeffecttext_avg_order_by { - ability_id: order_by - id: order_by - language_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_abilityeffecttext". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_abilityeffecttext_bool_exp { - _and: [pokemon_v2_abilityeffecttext_bool_exp!] - _not: pokemon_v2_abilityeffecttext_bool_exp - _or: [pokemon_v2_abilityeffecttext_bool_exp!] - ability_id: Int_comparison_exp - effect: String_comparison_exp - id: Int_comparison_exp - language_id: Int_comparison_exp - pokemon_v2_ability: pokemon_v2_ability_bool_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - short_effect: String_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_abilityeffecttext_max_fields { - ability_id: Int - effect: String - id: Int - language_id: Int - short_effect: String -} - -""" -order by max() on columns of table "pokemon_v2_abilityeffecttext" -""" -input pokemon_v2_abilityeffecttext_max_order_by { - ability_id: order_by - effect: order_by - id: order_by - language_id: order_by - short_effect: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_abilityeffecttext_min_fields { - ability_id: Int - effect: String - id: Int - language_id: Int - short_effect: String -} - -""" -order by min() on columns of table "pokemon_v2_abilityeffecttext" -""" -input pokemon_v2_abilityeffecttext_min_order_by { - ability_id: order_by - effect: order_by - id: order_by - language_id: order_by - short_effect: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_abilityeffecttext". -""" -input pokemon_v2_abilityeffecttext_order_by { - ability_id: order_by - effect: order_by - id: order_by - language_id: order_by - pokemon_v2_ability: pokemon_v2_ability_order_by - pokemon_v2_language: pokemon_v2_language_order_by - short_effect: order_by -} - -""" -select columns of table "pokemon_v2_abilityeffecttext" -""" -enum pokemon_v2_abilityeffecttext_select_column { - """column name""" - ability_id - - """column name""" - effect - - """column name""" - id - - """column name""" - language_id - - """column name""" - short_effect -} - -"""aggregate stddev on columns""" -type pokemon_v2_abilityeffecttext_stddev_fields { - ability_id: Float - id: Float - language_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_abilityeffecttext" -""" -input pokemon_v2_abilityeffecttext_stddev_order_by { - ability_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_abilityeffecttext_stddev_pop_fields { - ability_id: Float - id: Float - language_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_abilityeffecttext" -""" -input pokemon_v2_abilityeffecttext_stddev_pop_order_by { - ability_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_abilityeffecttext_stddev_samp_fields { - ability_id: Float - id: Float - language_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_abilityeffecttext" -""" -input pokemon_v2_abilityeffecttext_stddev_samp_order_by { - ability_id: order_by - id: order_by - language_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_abilityeffecttext" -""" -input pokemon_v2_abilityeffecttext_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_abilityeffecttext_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_abilityeffecttext_stream_cursor_value_input { - ability_id: Int - effect: String - id: Int - language_id: Int - short_effect: String -} - -"""aggregate sum on columns""" -type pokemon_v2_abilityeffecttext_sum_fields { - ability_id: Int - id: Int - language_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_abilityeffecttext" -""" -input pokemon_v2_abilityeffecttext_sum_order_by { - ability_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_abilityeffecttext_var_pop_fields { - ability_id: Float - id: Float - language_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_abilityeffecttext" -""" -input pokemon_v2_abilityeffecttext_var_pop_order_by { - ability_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_abilityeffecttext_var_samp_fields { - ability_id: Float - id: Float - language_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_abilityeffecttext" -""" -input pokemon_v2_abilityeffecttext_var_samp_order_by { - ability_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_abilityeffecttext_variance_fields { - ability_id: Float - id: Float - language_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_abilityeffecttext" -""" -input pokemon_v2_abilityeffecttext_variance_order_by { - ability_id: order_by - id: order_by - language_id: order_by -} - -""" -columns and relationships of "pokemon_v2_abilityflavortext" -""" -type pokemon_v2_abilityflavortext { - ability_id: Int - flavor_text: String! - id: Int! - language_id: Int - - """An object relationship""" - pokemon_v2_ability: pokemon_v2_ability - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_versiongroup: pokemon_v2_versiongroup - version_group_id: Int -} - -""" -aggregated selection of "pokemon_v2_abilityflavortext" -""" -type pokemon_v2_abilityflavortext_aggregate { - aggregate: pokemon_v2_abilityflavortext_aggregate_fields - nodes: [pokemon_v2_abilityflavortext!]! -} - -input pokemon_v2_abilityflavortext_aggregate_bool_exp { - count: pokemon_v2_abilityflavortext_aggregate_bool_exp_count -} - -input pokemon_v2_abilityflavortext_aggregate_bool_exp_count { - arguments: [pokemon_v2_abilityflavortext_select_column!] - distinct: Boolean - filter: pokemon_v2_abilityflavortext_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_abilityflavortext" -""" -type pokemon_v2_abilityflavortext_aggregate_fields { - avg: pokemon_v2_abilityflavortext_avg_fields - count(columns: [pokemon_v2_abilityflavortext_select_column!], distinct: Boolean): Int! - max: pokemon_v2_abilityflavortext_max_fields - min: pokemon_v2_abilityflavortext_min_fields - stddev: pokemon_v2_abilityflavortext_stddev_fields - stddev_pop: pokemon_v2_abilityflavortext_stddev_pop_fields - stddev_samp: pokemon_v2_abilityflavortext_stddev_samp_fields - sum: pokemon_v2_abilityflavortext_sum_fields - var_pop: pokemon_v2_abilityflavortext_var_pop_fields - var_samp: pokemon_v2_abilityflavortext_var_samp_fields - variance: pokemon_v2_abilityflavortext_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_abilityflavortext" -""" -input pokemon_v2_abilityflavortext_aggregate_order_by { - avg: pokemon_v2_abilityflavortext_avg_order_by - count: order_by - max: pokemon_v2_abilityflavortext_max_order_by - min: pokemon_v2_abilityflavortext_min_order_by - stddev: pokemon_v2_abilityflavortext_stddev_order_by - stddev_pop: pokemon_v2_abilityflavortext_stddev_pop_order_by - stddev_samp: pokemon_v2_abilityflavortext_stddev_samp_order_by - sum: pokemon_v2_abilityflavortext_sum_order_by - var_pop: pokemon_v2_abilityflavortext_var_pop_order_by - var_samp: pokemon_v2_abilityflavortext_var_samp_order_by - variance: pokemon_v2_abilityflavortext_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_abilityflavortext_avg_fields { - ability_id: Float - id: Float - language_id: Float - version_group_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_abilityflavortext" -""" -input pokemon_v2_abilityflavortext_avg_order_by { - ability_id: order_by - id: order_by - language_id: order_by - version_group_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_abilityflavortext". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_abilityflavortext_bool_exp { - _and: [pokemon_v2_abilityflavortext_bool_exp!] - _not: pokemon_v2_abilityflavortext_bool_exp - _or: [pokemon_v2_abilityflavortext_bool_exp!] - ability_id: Int_comparison_exp - flavor_text: String_comparison_exp - id: Int_comparison_exp - language_id: Int_comparison_exp - pokemon_v2_ability: pokemon_v2_ability_bool_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_versiongroup: pokemon_v2_versiongroup_bool_exp - version_group_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_abilityflavortext_max_fields { - ability_id: Int - flavor_text: String - id: Int - language_id: Int - version_group_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_abilityflavortext" -""" -input pokemon_v2_abilityflavortext_max_order_by { - ability_id: order_by - flavor_text: order_by - id: order_by - language_id: order_by - version_group_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_abilityflavortext_min_fields { - ability_id: Int - flavor_text: String - id: Int - language_id: Int - version_group_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_abilityflavortext" -""" -input pokemon_v2_abilityflavortext_min_order_by { - ability_id: order_by - flavor_text: order_by - id: order_by - language_id: order_by - version_group_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_abilityflavortext". -""" -input pokemon_v2_abilityflavortext_order_by { - ability_id: order_by - flavor_text: order_by - id: order_by - language_id: order_by - pokemon_v2_ability: pokemon_v2_ability_order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_versiongroup: pokemon_v2_versiongroup_order_by - version_group_id: order_by -} - -""" -select columns of table "pokemon_v2_abilityflavortext" -""" -enum pokemon_v2_abilityflavortext_select_column { - """column name""" - ability_id - - """column name""" - flavor_text - - """column name""" - id - - """column name""" - language_id - - """column name""" - version_group_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_abilityflavortext_stddev_fields { - ability_id: Float - id: Float - language_id: Float - version_group_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_abilityflavortext" -""" -input pokemon_v2_abilityflavortext_stddev_order_by { - ability_id: order_by - id: order_by - language_id: order_by - version_group_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_abilityflavortext_stddev_pop_fields { - ability_id: Float - id: Float - language_id: Float - version_group_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_abilityflavortext" -""" -input pokemon_v2_abilityflavortext_stddev_pop_order_by { - ability_id: order_by - id: order_by - language_id: order_by - version_group_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_abilityflavortext_stddev_samp_fields { - ability_id: Float - id: Float - language_id: Float - version_group_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_abilityflavortext" -""" -input pokemon_v2_abilityflavortext_stddev_samp_order_by { - ability_id: order_by - id: order_by - language_id: order_by - version_group_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_abilityflavortext" -""" -input pokemon_v2_abilityflavortext_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_abilityflavortext_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_abilityflavortext_stream_cursor_value_input { - ability_id: Int - flavor_text: String - id: Int - language_id: Int - version_group_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_abilityflavortext_sum_fields { - ability_id: Int - id: Int - language_id: Int - version_group_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_abilityflavortext" -""" -input pokemon_v2_abilityflavortext_sum_order_by { - ability_id: order_by - id: order_by - language_id: order_by - version_group_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_abilityflavortext_var_pop_fields { - ability_id: Float - id: Float - language_id: Float - version_group_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_abilityflavortext" -""" -input pokemon_v2_abilityflavortext_var_pop_order_by { - ability_id: order_by - id: order_by - language_id: order_by - version_group_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_abilityflavortext_var_samp_fields { - ability_id: Float - id: Float - language_id: Float - version_group_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_abilityflavortext" -""" -input pokemon_v2_abilityflavortext_var_samp_order_by { - ability_id: order_by - id: order_by - language_id: order_by - version_group_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_abilityflavortext_variance_fields { - ability_id: Float - id: Float - language_id: Float - version_group_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_abilityflavortext" -""" -input pokemon_v2_abilityflavortext_variance_order_by { - ability_id: order_by - id: order_by - language_id: order_by - version_group_id: order_by -} - -""" -columns and relationships of "pokemon_v2_abilityname" -""" -type pokemon_v2_abilityname { - ability_id: Int - id: Int! - language_id: Int - name: String! - - """An object relationship""" - pokemon_v2_ability: pokemon_v2_ability - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language -} - -""" -aggregated selection of "pokemon_v2_abilityname" -""" -type pokemon_v2_abilityname_aggregate { - aggregate: pokemon_v2_abilityname_aggregate_fields - nodes: [pokemon_v2_abilityname!]! -} - -input pokemon_v2_abilityname_aggregate_bool_exp { - count: pokemon_v2_abilityname_aggregate_bool_exp_count -} - -input pokemon_v2_abilityname_aggregate_bool_exp_count { - arguments: [pokemon_v2_abilityname_select_column!] - distinct: Boolean - filter: pokemon_v2_abilityname_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_abilityname" -""" -type pokemon_v2_abilityname_aggregate_fields { - avg: pokemon_v2_abilityname_avg_fields - count(columns: [pokemon_v2_abilityname_select_column!], distinct: Boolean): Int! - max: pokemon_v2_abilityname_max_fields - min: pokemon_v2_abilityname_min_fields - stddev: pokemon_v2_abilityname_stddev_fields - stddev_pop: pokemon_v2_abilityname_stddev_pop_fields - stddev_samp: pokemon_v2_abilityname_stddev_samp_fields - sum: pokemon_v2_abilityname_sum_fields - var_pop: pokemon_v2_abilityname_var_pop_fields - var_samp: pokemon_v2_abilityname_var_samp_fields - variance: pokemon_v2_abilityname_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_abilityname" -""" -input pokemon_v2_abilityname_aggregate_order_by { - avg: pokemon_v2_abilityname_avg_order_by - count: order_by - max: pokemon_v2_abilityname_max_order_by - min: pokemon_v2_abilityname_min_order_by - stddev: pokemon_v2_abilityname_stddev_order_by - stddev_pop: pokemon_v2_abilityname_stddev_pop_order_by - stddev_samp: pokemon_v2_abilityname_stddev_samp_order_by - sum: pokemon_v2_abilityname_sum_order_by - var_pop: pokemon_v2_abilityname_var_pop_order_by - var_samp: pokemon_v2_abilityname_var_samp_order_by - variance: pokemon_v2_abilityname_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_abilityname_avg_fields { - ability_id: Float - id: Float - language_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_abilityname" -""" -input pokemon_v2_abilityname_avg_order_by { - ability_id: order_by - id: order_by - language_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_abilityname". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_abilityname_bool_exp { - _and: [pokemon_v2_abilityname_bool_exp!] - _not: pokemon_v2_abilityname_bool_exp - _or: [pokemon_v2_abilityname_bool_exp!] - ability_id: Int_comparison_exp - id: Int_comparison_exp - language_id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_ability: pokemon_v2_ability_bool_exp - pokemon_v2_language: pokemon_v2_language_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_abilityname_max_fields { - ability_id: Int - id: Int - language_id: Int - name: String -} - -""" -order by max() on columns of table "pokemon_v2_abilityname" -""" -input pokemon_v2_abilityname_max_order_by { - ability_id: order_by - id: order_by - language_id: order_by - name: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_abilityname_min_fields { - ability_id: Int - id: Int - language_id: Int - name: String -} - -""" -order by min() on columns of table "pokemon_v2_abilityname" -""" -input pokemon_v2_abilityname_min_order_by { - ability_id: order_by - id: order_by - language_id: order_by - name: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_abilityname".""" -input pokemon_v2_abilityname_order_by { - ability_id: order_by - id: order_by - language_id: order_by - name: order_by - pokemon_v2_ability: pokemon_v2_ability_order_by - pokemon_v2_language: pokemon_v2_language_order_by -} - -""" -select columns of table "pokemon_v2_abilityname" -""" -enum pokemon_v2_abilityname_select_column { - """column name""" - ability_id - - """column name""" - id - - """column name""" - language_id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_abilityname_stddev_fields { - ability_id: Float - id: Float - language_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_abilityname" -""" -input pokemon_v2_abilityname_stddev_order_by { - ability_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_abilityname_stddev_pop_fields { - ability_id: Float - id: Float - language_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_abilityname" -""" -input pokemon_v2_abilityname_stddev_pop_order_by { - ability_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_abilityname_stddev_samp_fields { - ability_id: Float - id: Float - language_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_abilityname" -""" -input pokemon_v2_abilityname_stddev_samp_order_by { - ability_id: order_by - id: order_by - language_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_abilityname" -""" -input pokemon_v2_abilityname_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_abilityname_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_abilityname_stream_cursor_value_input { - ability_id: Int - id: Int - language_id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_abilityname_sum_fields { - ability_id: Int - id: Int - language_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_abilityname" -""" -input pokemon_v2_abilityname_sum_order_by { - ability_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_abilityname_var_pop_fields { - ability_id: Float - id: Float - language_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_abilityname" -""" -input pokemon_v2_abilityname_var_pop_order_by { - ability_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_abilityname_var_samp_fields { - ability_id: Float - id: Float - language_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_abilityname" -""" -input pokemon_v2_abilityname_var_samp_order_by { - ability_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_abilityname_variance_fields { - ability_id: Float - id: Float - language_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_abilityname" -""" -input pokemon_v2_abilityname_variance_order_by { - ability_id: order_by - id: order_by - language_id: order_by -} - -""" -columns and relationships of "pokemon_v2_berry" -""" -type pokemon_v2_berry { - berry_firmness_id: Int - growth_time: Int! - id: Int! - item_id: Int - max_harvest: Int! - name: String! - natural_gift_power: Int! - natural_gift_type_id: Int - - """An object relationship""" - pokemon_v2_berryfirmness: pokemon_v2_berryfirmness - - """An array relationship""" - pokemon_v2_berryflavormaps( - """distinct select on columns""" - distinct_on: [pokemon_v2_berryflavormap_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berryflavormap_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berryflavormap_bool_exp - ): [pokemon_v2_berryflavormap!]! - - """An aggregate relationship""" - pokemon_v2_berryflavormaps_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_berryflavormap_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berryflavormap_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berryflavormap_bool_exp - ): pokemon_v2_berryflavormap_aggregate! - - """An object relationship""" - pokemon_v2_item: pokemon_v2_item - - """An object relationship""" - pokemon_v2_type: pokemon_v2_type - size: Int! - smoothness: Int! - soil_dryness: Int! -} - -""" -aggregated selection of "pokemon_v2_berry" -""" -type pokemon_v2_berry_aggregate { - aggregate: pokemon_v2_berry_aggregate_fields - nodes: [pokemon_v2_berry!]! -} - -input pokemon_v2_berry_aggregate_bool_exp { - count: pokemon_v2_berry_aggregate_bool_exp_count -} - -input pokemon_v2_berry_aggregate_bool_exp_count { - arguments: [pokemon_v2_berry_select_column!] - distinct: Boolean - filter: pokemon_v2_berry_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_berry" -""" -type pokemon_v2_berry_aggregate_fields { - avg: pokemon_v2_berry_avg_fields - count(columns: [pokemon_v2_berry_select_column!], distinct: Boolean): Int! - max: pokemon_v2_berry_max_fields - min: pokemon_v2_berry_min_fields - stddev: pokemon_v2_berry_stddev_fields - stddev_pop: pokemon_v2_berry_stddev_pop_fields - stddev_samp: pokemon_v2_berry_stddev_samp_fields - sum: pokemon_v2_berry_sum_fields - var_pop: pokemon_v2_berry_var_pop_fields - var_samp: pokemon_v2_berry_var_samp_fields - variance: pokemon_v2_berry_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_berry" -""" -input pokemon_v2_berry_aggregate_order_by { - avg: pokemon_v2_berry_avg_order_by - count: order_by - max: pokemon_v2_berry_max_order_by - min: pokemon_v2_berry_min_order_by - stddev: pokemon_v2_berry_stddev_order_by - stddev_pop: pokemon_v2_berry_stddev_pop_order_by - stddev_samp: pokemon_v2_berry_stddev_samp_order_by - sum: pokemon_v2_berry_sum_order_by - var_pop: pokemon_v2_berry_var_pop_order_by - var_samp: pokemon_v2_berry_var_samp_order_by - variance: pokemon_v2_berry_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_berry_avg_fields { - berry_firmness_id: Float - growth_time: Float - id: Float - item_id: Float - max_harvest: Float - natural_gift_power: Float - natural_gift_type_id: Float - size: Float - smoothness: Float - soil_dryness: Float -} - -""" -order by avg() on columns of table "pokemon_v2_berry" -""" -input pokemon_v2_berry_avg_order_by { - berry_firmness_id: order_by - growth_time: order_by - id: order_by - item_id: order_by - max_harvest: order_by - natural_gift_power: order_by - natural_gift_type_id: order_by - size: order_by - smoothness: order_by - soil_dryness: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_berry". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_berry_bool_exp { - _and: [pokemon_v2_berry_bool_exp!] - _not: pokemon_v2_berry_bool_exp - _or: [pokemon_v2_berry_bool_exp!] - berry_firmness_id: Int_comparison_exp - growth_time: Int_comparison_exp - id: Int_comparison_exp - item_id: Int_comparison_exp - max_harvest: Int_comparison_exp - name: String_comparison_exp - natural_gift_power: Int_comparison_exp - natural_gift_type_id: Int_comparison_exp - pokemon_v2_berryfirmness: pokemon_v2_berryfirmness_bool_exp - pokemon_v2_berryflavormaps: pokemon_v2_berryflavormap_bool_exp - pokemon_v2_berryflavormaps_aggregate: pokemon_v2_berryflavormap_aggregate_bool_exp - pokemon_v2_item: pokemon_v2_item_bool_exp - pokemon_v2_type: pokemon_v2_type_bool_exp - size: Int_comparison_exp - smoothness: Int_comparison_exp - soil_dryness: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_berry_max_fields { - berry_firmness_id: Int - growth_time: Int - id: Int - item_id: Int - max_harvest: Int - name: String - natural_gift_power: Int - natural_gift_type_id: Int - size: Int - smoothness: Int - soil_dryness: Int -} - -""" -order by max() on columns of table "pokemon_v2_berry" -""" -input pokemon_v2_berry_max_order_by { - berry_firmness_id: order_by - growth_time: order_by - id: order_by - item_id: order_by - max_harvest: order_by - name: order_by - natural_gift_power: order_by - natural_gift_type_id: order_by - size: order_by - smoothness: order_by - soil_dryness: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_berry_min_fields { - berry_firmness_id: Int - growth_time: Int - id: Int - item_id: Int - max_harvest: Int - name: String - natural_gift_power: Int - natural_gift_type_id: Int - size: Int - smoothness: Int - soil_dryness: Int -} - -""" -order by min() on columns of table "pokemon_v2_berry" -""" -input pokemon_v2_berry_min_order_by { - berry_firmness_id: order_by - growth_time: order_by - id: order_by - item_id: order_by - max_harvest: order_by - name: order_by - natural_gift_power: order_by - natural_gift_type_id: order_by - size: order_by - smoothness: order_by - soil_dryness: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_berry".""" -input pokemon_v2_berry_order_by { - berry_firmness_id: order_by - growth_time: order_by - id: order_by - item_id: order_by - max_harvest: order_by - name: order_by - natural_gift_power: order_by - natural_gift_type_id: order_by - pokemon_v2_berryfirmness: pokemon_v2_berryfirmness_order_by - pokemon_v2_berryflavormaps_aggregate: pokemon_v2_berryflavormap_aggregate_order_by - pokemon_v2_item: pokemon_v2_item_order_by - pokemon_v2_type: pokemon_v2_type_order_by - size: order_by - smoothness: order_by - soil_dryness: order_by -} - -""" -select columns of table "pokemon_v2_berry" -""" -enum pokemon_v2_berry_select_column { - """column name""" - berry_firmness_id - - """column name""" - growth_time - - """column name""" - id - - """column name""" - item_id - - """column name""" - max_harvest - - """column name""" - name - - """column name""" - natural_gift_power - - """column name""" - natural_gift_type_id - - """column name""" - size - - """column name""" - smoothness - - """column name""" - soil_dryness -} - -"""aggregate stddev on columns""" -type pokemon_v2_berry_stddev_fields { - berry_firmness_id: Float - growth_time: Float - id: Float - item_id: Float - max_harvest: Float - natural_gift_power: Float - natural_gift_type_id: Float - size: Float - smoothness: Float - soil_dryness: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_berry" -""" -input pokemon_v2_berry_stddev_order_by { - berry_firmness_id: order_by - growth_time: order_by - id: order_by - item_id: order_by - max_harvest: order_by - natural_gift_power: order_by - natural_gift_type_id: order_by - size: order_by - smoothness: order_by - soil_dryness: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_berry_stddev_pop_fields { - berry_firmness_id: Float - growth_time: Float - id: Float - item_id: Float - max_harvest: Float - natural_gift_power: Float - natural_gift_type_id: Float - size: Float - smoothness: Float - soil_dryness: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_berry" -""" -input pokemon_v2_berry_stddev_pop_order_by { - berry_firmness_id: order_by - growth_time: order_by - id: order_by - item_id: order_by - max_harvest: order_by - natural_gift_power: order_by - natural_gift_type_id: order_by - size: order_by - smoothness: order_by - soil_dryness: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_berry_stddev_samp_fields { - berry_firmness_id: Float - growth_time: Float - id: Float - item_id: Float - max_harvest: Float - natural_gift_power: Float - natural_gift_type_id: Float - size: Float - smoothness: Float - soil_dryness: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_berry" -""" -input pokemon_v2_berry_stddev_samp_order_by { - berry_firmness_id: order_by - growth_time: order_by - id: order_by - item_id: order_by - max_harvest: order_by - natural_gift_power: order_by - natural_gift_type_id: order_by - size: order_by - smoothness: order_by - soil_dryness: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_berry" -""" -input pokemon_v2_berry_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_berry_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_berry_stream_cursor_value_input { - berry_firmness_id: Int - growth_time: Int - id: Int - item_id: Int - max_harvest: Int - name: String - natural_gift_power: Int - natural_gift_type_id: Int - size: Int - smoothness: Int - soil_dryness: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_berry_sum_fields { - berry_firmness_id: Int - growth_time: Int - id: Int - item_id: Int - max_harvest: Int - natural_gift_power: Int - natural_gift_type_id: Int - size: Int - smoothness: Int - soil_dryness: Int -} - -""" -order by sum() on columns of table "pokemon_v2_berry" -""" -input pokemon_v2_berry_sum_order_by { - berry_firmness_id: order_by - growth_time: order_by - id: order_by - item_id: order_by - max_harvest: order_by - natural_gift_power: order_by - natural_gift_type_id: order_by - size: order_by - smoothness: order_by - soil_dryness: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_berry_var_pop_fields { - berry_firmness_id: Float - growth_time: Float - id: Float - item_id: Float - max_harvest: Float - natural_gift_power: Float - natural_gift_type_id: Float - size: Float - smoothness: Float - soil_dryness: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_berry" -""" -input pokemon_v2_berry_var_pop_order_by { - berry_firmness_id: order_by - growth_time: order_by - id: order_by - item_id: order_by - max_harvest: order_by - natural_gift_power: order_by - natural_gift_type_id: order_by - size: order_by - smoothness: order_by - soil_dryness: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_berry_var_samp_fields { - berry_firmness_id: Float - growth_time: Float - id: Float - item_id: Float - max_harvest: Float - natural_gift_power: Float - natural_gift_type_id: Float - size: Float - smoothness: Float - soil_dryness: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_berry" -""" -input pokemon_v2_berry_var_samp_order_by { - berry_firmness_id: order_by - growth_time: order_by - id: order_by - item_id: order_by - max_harvest: order_by - natural_gift_power: order_by - natural_gift_type_id: order_by - size: order_by - smoothness: order_by - soil_dryness: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_berry_variance_fields { - berry_firmness_id: Float - growth_time: Float - id: Float - item_id: Float - max_harvest: Float - natural_gift_power: Float - natural_gift_type_id: Float - size: Float - smoothness: Float - soil_dryness: Float -} - -""" -order by variance() on columns of table "pokemon_v2_berry" -""" -input pokemon_v2_berry_variance_order_by { - berry_firmness_id: order_by - growth_time: order_by - id: order_by - item_id: order_by - max_harvest: order_by - natural_gift_power: order_by - natural_gift_type_id: order_by - size: order_by - smoothness: order_by - soil_dryness: order_by -} - -""" -columns and relationships of "pokemon_v2_berryfirmness" -""" -type pokemon_v2_berryfirmness { - id: Int! - name: String! - - """An array relationship""" - pokemon_v2_berries( - """distinct select on columns""" - distinct_on: [pokemon_v2_berry_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berry_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berry_bool_exp - ): [pokemon_v2_berry!]! - - """An aggregate relationship""" - pokemon_v2_berries_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_berry_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berry_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berry_bool_exp - ): pokemon_v2_berry_aggregate! - - """An array relationship""" - pokemon_v2_berryfirmnessnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_berryfirmnessname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berryfirmnessname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berryfirmnessname_bool_exp - ): [pokemon_v2_berryfirmnessname!]! - - """An aggregate relationship""" - pokemon_v2_berryfirmnessnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_berryfirmnessname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berryfirmnessname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berryfirmnessname_bool_exp - ): pokemon_v2_berryfirmnessname_aggregate! -} - -""" -aggregated selection of "pokemon_v2_berryfirmness" -""" -type pokemon_v2_berryfirmness_aggregate { - aggregate: pokemon_v2_berryfirmness_aggregate_fields - nodes: [pokemon_v2_berryfirmness!]! -} - -""" -aggregate fields of "pokemon_v2_berryfirmness" -""" -type pokemon_v2_berryfirmness_aggregate_fields { - avg: pokemon_v2_berryfirmness_avg_fields - count(columns: [pokemon_v2_berryfirmness_select_column!], distinct: Boolean): Int! - max: pokemon_v2_berryfirmness_max_fields - min: pokemon_v2_berryfirmness_min_fields - stddev: pokemon_v2_berryfirmness_stddev_fields - stddev_pop: pokemon_v2_berryfirmness_stddev_pop_fields - stddev_samp: pokemon_v2_berryfirmness_stddev_samp_fields - sum: pokemon_v2_berryfirmness_sum_fields - var_pop: pokemon_v2_berryfirmness_var_pop_fields - var_samp: pokemon_v2_berryfirmness_var_samp_fields - variance: pokemon_v2_berryfirmness_variance_fields -} - -"""aggregate avg on columns""" -type pokemon_v2_berryfirmness_avg_fields { - id: Float -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_berryfirmness". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_berryfirmness_bool_exp { - _and: [pokemon_v2_berryfirmness_bool_exp!] - _not: pokemon_v2_berryfirmness_bool_exp - _or: [pokemon_v2_berryfirmness_bool_exp!] - id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_berries: pokemon_v2_berry_bool_exp - pokemon_v2_berries_aggregate: pokemon_v2_berry_aggregate_bool_exp - pokemon_v2_berryfirmnessnames: pokemon_v2_berryfirmnessname_bool_exp - pokemon_v2_berryfirmnessnames_aggregate: pokemon_v2_berryfirmnessname_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_berryfirmness_max_fields { - id: Int - name: String -} - -"""aggregate min on columns""" -type pokemon_v2_berryfirmness_min_fields { - id: Int - name: String -} - -"""Ordering options when selecting data from "pokemon_v2_berryfirmness".""" -input pokemon_v2_berryfirmness_order_by { - id: order_by - name: order_by - pokemon_v2_berries_aggregate: pokemon_v2_berry_aggregate_order_by - pokemon_v2_berryfirmnessnames_aggregate: pokemon_v2_berryfirmnessname_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_berryfirmness" -""" -enum pokemon_v2_berryfirmness_select_column { - """column name""" - id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_berryfirmness_stddev_fields { - id: Float -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_berryfirmness_stddev_pop_fields { - id: Float -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_berryfirmness_stddev_samp_fields { - id: Float -} - -""" -Streaming cursor of the table "pokemon_v2_berryfirmness" -""" -input pokemon_v2_berryfirmness_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_berryfirmness_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_berryfirmness_stream_cursor_value_input { - id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_berryfirmness_sum_fields { - id: Int -} - -"""aggregate var_pop on columns""" -type pokemon_v2_berryfirmness_var_pop_fields { - id: Float -} - -"""aggregate var_samp on columns""" -type pokemon_v2_berryfirmness_var_samp_fields { - id: Float -} - -"""aggregate variance on columns""" -type pokemon_v2_berryfirmness_variance_fields { - id: Float -} - -""" -columns and relationships of "pokemon_v2_berryfirmnessname" -""" -type pokemon_v2_berryfirmnessname { - berry_firmness_id: Int - id: Int! - language_id: Int - name: String! - - """An object relationship""" - pokemon_v2_berryfirmness: pokemon_v2_berryfirmness - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language -} - -""" -aggregated selection of "pokemon_v2_berryfirmnessname" -""" -type pokemon_v2_berryfirmnessname_aggregate { - aggregate: pokemon_v2_berryfirmnessname_aggregate_fields - nodes: [pokemon_v2_berryfirmnessname!]! -} - -input pokemon_v2_berryfirmnessname_aggregate_bool_exp { - count: pokemon_v2_berryfirmnessname_aggregate_bool_exp_count -} - -input pokemon_v2_berryfirmnessname_aggregate_bool_exp_count { - arguments: [pokemon_v2_berryfirmnessname_select_column!] - distinct: Boolean - filter: pokemon_v2_berryfirmnessname_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_berryfirmnessname" -""" -type pokemon_v2_berryfirmnessname_aggregate_fields { - avg: pokemon_v2_berryfirmnessname_avg_fields - count(columns: [pokemon_v2_berryfirmnessname_select_column!], distinct: Boolean): Int! - max: pokemon_v2_berryfirmnessname_max_fields - min: pokemon_v2_berryfirmnessname_min_fields - stddev: pokemon_v2_berryfirmnessname_stddev_fields - stddev_pop: pokemon_v2_berryfirmnessname_stddev_pop_fields - stddev_samp: pokemon_v2_berryfirmnessname_stddev_samp_fields - sum: pokemon_v2_berryfirmnessname_sum_fields - var_pop: pokemon_v2_berryfirmnessname_var_pop_fields - var_samp: pokemon_v2_berryfirmnessname_var_samp_fields - variance: pokemon_v2_berryfirmnessname_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_berryfirmnessname" -""" -input pokemon_v2_berryfirmnessname_aggregate_order_by { - avg: pokemon_v2_berryfirmnessname_avg_order_by - count: order_by - max: pokemon_v2_berryfirmnessname_max_order_by - min: pokemon_v2_berryfirmnessname_min_order_by - stddev: pokemon_v2_berryfirmnessname_stddev_order_by - stddev_pop: pokemon_v2_berryfirmnessname_stddev_pop_order_by - stddev_samp: pokemon_v2_berryfirmnessname_stddev_samp_order_by - sum: pokemon_v2_berryfirmnessname_sum_order_by - var_pop: pokemon_v2_berryfirmnessname_var_pop_order_by - var_samp: pokemon_v2_berryfirmnessname_var_samp_order_by - variance: pokemon_v2_berryfirmnessname_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_berryfirmnessname_avg_fields { - berry_firmness_id: Float - id: Float - language_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_berryfirmnessname" -""" -input pokemon_v2_berryfirmnessname_avg_order_by { - berry_firmness_id: order_by - id: order_by - language_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_berryfirmnessname". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_berryfirmnessname_bool_exp { - _and: [pokemon_v2_berryfirmnessname_bool_exp!] - _not: pokemon_v2_berryfirmnessname_bool_exp - _or: [pokemon_v2_berryfirmnessname_bool_exp!] - berry_firmness_id: Int_comparison_exp - id: Int_comparison_exp - language_id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_berryfirmness: pokemon_v2_berryfirmness_bool_exp - pokemon_v2_language: pokemon_v2_language_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_berryfirmnessname_max_fields { - berry_firmness_id: Int - id: Int - language_id: Int - name: String -} - -""" -order by max() on columns of table "pokemon_v2_berryfirmnessname" -""" -input pokemon_v2_berryfirmnessname_max_order_by { - berry_firmness_id: order_by - id: order_by - language_id: order_by - name: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_berryfirmnessname_min_fields { - berry_firmness_id: Int - id: Int - language_id: Int - name: String -} - -""" -order by min() on columns of table "pokemon_v2_berryfirmnessname" -""" -input pokemon_v2_berryfirmnessname_min_order_by { - berry_firmness_id: order_by - id: order_by - language_id: order_by - name: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_berryfirmnessname". -""" -input pokemon_v2_berryfirmnessname_order_by { - berry_firmness_id: order_by - id: order_by - language_id: order_by - name: order_by - pokemon_v2_berryfirmness: pokemon_v2_berryfirmness_order_by - pokemon_v2_language: pokemon_v2_language_order_by -} - -""" -select columns of table "pokemon_v2_berryfirmnessname" -""" -enum pokemon_v2_berryfirmnessname_select_column { - """column name""" - berry_firmness_id - - """column name""" - id - - """column name""" - language_id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_berryfirmnessname_stddev_fields { - berry_firmness_id: Float - id: Float - language_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_berryfirmnessname" -""" -input pokemon_v2_berryfirmnessname_stddev_order_by { - berry_firmness_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_berryfirmnessname_stddev_pop_fields { - berry_firmness_id: Float - id: Float - language_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_berryfirmnessname" -""" -input pokemon_v2_berryfirmnessname_stddev_pop_order_by { - berry_firmness_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_berryfirmnessname_stddev_samp_fields { - berry_firmness_id: Float - id: Float - language_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_berryfirmnessname" -""" -input pokemon_v2_berryfirmnessname_stddev_samp_order_by { - berry_firmness_id: order_by - id: order_by - language_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_berryfirmnessname" -""" -input pokemon_v2_berryfirmnessname_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_berryfirmnessname_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_berryfirmnessname_stream_cursor_value_input { - berry_firmness_id: Int - id: Int - language_id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_berryfirmnessname_sum_fields { - berry_firmness_id: Int - id: Int - language_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_berryfirmnessname" -""" -input pokemon_v2_berryfirmnessname_sum_order_by { - berry_firmness_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_berryfirmnessname_var_pop_fields { - berry_firmness_id: Float - id: Float - language_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_berryfirmnessname" -""" -input pokemon_v2_berryfirmnessname_var_pop_order_by { - berry_firmness_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_berryfirmnessname_var_samp_fields { - berry_firmness_id: Float - id: Float - language_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_berryfirmnessname" -""" -input pokemon_v2_berryfirmnessname_var_samp_order_by { - berry_firmness_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_berryfirmnessname_variance_fields { - berry_firmness_id: Float - id: Float - language_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_berryfirmnessname" -""" -input pokemon_v2_berryfirmnessname_variance_order_by { - berry_firmness_id: order_by - id: order_by - language_id: order_by -} - -""" -columns and relationships of "pokemon_v2_berryflavor" -""" -type pokemon_v2_berryflavor { - contest_type_id: Int - id: Int! - name: String! - - """An array relationship""" - pokemonV2NaturesByLikesFlavorId( - """distinct select on columns""" - distinct_on: [pokemon_v2_nature_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_nature_order_by!] - - """filter the rows returned""" - where: pokemon_v2_nature_bool_exp - ): [pokemon_v2_nature!]! - - """An aggregate relationship""" - pokemonV2NaturesByLikesFlavorId_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_nature_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_nature_order_by!] - - """filter the rows returned""" - where: pokemon_v2_nature_bool_exp - ): pokemon_v2_nature_aggregate! - - """An array relationship""" - pokemon_v2_berryflavormaps( - """distinct select on columns""" - distinct_on: [pokemon_v2_berryflavormap_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berryflavormap_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berryflavormap_bool_exp - ): [pokemon_v2_berryflavormap!]! - - """An aggregate relationship""" - pokemon_v2_berryflavormaps_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_berryflavormap_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berryflavormap_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berryflavormap_bool_exp - ): pokemon_v2_berryflavormap_aggregate! - - """An array relationship""" - pokemon_v2_berryflavornames( - """distinct select on columns""" - distinct_on: [pokemon_v2_berryflavorname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berryflavorname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berryflavorname_bool_exp - ): [pokemon_v2_berryflavorname!]! - - """An aggregate relationship""" - pokemon_v2_berryflavornames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_berryflavorname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berryflavorname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berryflavorname_bool_exp - ): pokemon_v2_berryflavorname_aggregate! - - """An object relationship""" - pokemon_v2_contesttype: pokemon_v2_contesttype - - """An array relationship""" - pokemon_v2_natures( - """distinct select on columns""" - distinct_on: [pokemon_v2_nature_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_nature_order_by!] - - """filter the rows returned""" - where: pokemon_v2_nature_bool_exp - ): [pokemon_v2_nature!]! - - """An aggregate relationship""" - pokemon_v2_natures_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_nature_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_nature_order_by!] - - """filter the rows returned""" - where: pokemon_v2_nature_bool_exp - ): pokemon_v2_nature_aggregate! -} - -""" -aggregated selection of "pokemon_v2_berryflavor" -""" -type pokemon_v2_berryflavor_aggregate { - aggregate: pokemon_v2_berryflavor_aggregate_fields - nodes: [pokemon_v2_berryflavor!]! -} - -input pokemon_v2_berryflavor_aggregate_bool_exp { - count: pokemon_v2_berryflavor_aggregate_bool_exp_count -} - -input pokemon_v2_berryflavor_aggregate_bool_exp_count { - arguments: [pokemon_v2_berryflavor_select_column!] - distinct: Boolean - filter: pokemon_v2_berryflavor_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_berryflavor" -""" -type pokemon_v2_berryflavor_aggregate_fields { - avg: pokemon_v2_berryflavor_avg_fields - count(columns: [pokemon_v2_berryflavor_select_column!], distinct: Boolean): Int! - max: pokemon_v2_berryflavor_max_fields - min: pokemon_v2_berryflavor_min_fields - stddev: pokemon_v2_berryflavor_stddev_fields - stddev_pop: pokemon_v2_berryflavor_stddev_pop_fields - stddev_samp: pokemon_v2_berryflavor_stddev_samp_fields - sum: pokemon_v2_berryflavor_sum_fields - var_pop: pokemon_v2_berryflavor_var_pop_fields - var_samp: pokemon_v2_berryflavor_var_samp_fields - variance: pokemon_v2_berryflavor_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_berryflavor" -""" -input pokemon_v2_berryflavor_aggregate_order_by { - avg: pokemon_v2_berryflavor_avg_order_by - count: order_by - max: pokemon_v2_berryflavor_max_order_by - min: pokemon_v2_berryflavor_min_order_by - stddev: pokemon_v2_berryflavor_stddev_order_by - stddev_pop: pokemon_v2_berryflavor_stddev_pop_order_by - stddev_samp: pokemon_v2_berryflavor_stddev_samp_order_by - sum: pokemon_v2_berryflavor_sum_order_by - var_pop: pokemon_v2_berryflavor_var_pop_order_by - var_samp: pokemon_v2_berryflavor_var_samp_order_by - variance: pokemon_v2_berryflavor_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_berryflavor_avg_fields { - contest_type_id: Float - id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_berryflavor" -""" -input pokemon_v2_berryflavor_avg_order_by { - contest_type_id: order_by - id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_berryflavor". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_berryflavor_bool_exp { - _and: [pokemon_v2_berryflavor_bool_exp!] - _not: pokemon_v2_berryflavor_bool_exp - _or: [pokemon_v2_berryflavor_bool_exp!] - contest_type_id: Int_comparison_exp - id: Int_comparison_exp - name: String_comparison_exp - pokemonV2NaturesByLikesFlavorId: pokemon_v2_nature_bool_exp - pokemonV2NaturesByLikesFlavorId_aggregate: pokemon_v2_nature_aggregate_bool_exp - pokemon_v2_berryflavormaps: pokemon_v2_berryflavormap_bool_exp - pokemon_v2_berryflavormaps_aggregate: pokemon_v2_berryflavormap_aggregate_bool_exp - pokemon_v2_berryflavornames: pokemon_v2_berryflavorname_bool_exp - pokemon_v2_berryflavornames_aggregate: pokemon_v2_berryflavorname_aggregate_bool_exp - pokemon_v2_contesttype: pokemon_v2_contesttype_bool_exp - pokemon_v2_natures: pokemon_v2_nature_bool_exp - pokemon_v2_natures_aggregate: pokemon_v2_nature_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_berryflavor_max_fields { - contest_type_id: Int - id: Int - name: String -} - -""" -order by max() on columns of table "pokemon_v2_berryflavor" -""" -input pokemon_v2_berryflavor_max_order_by { - contest_type_id: order_by - id: order_by - name: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_berryflavor_min_fields { - contest_type_id: Int - id: Int - name: String -} - -""" -order by min() on columns of table "pokemon_v2_berryflavor" -""" -input pokemon_v2_berryflavor_min_order_by { - contest_type_id: order_by - id: order_by - name: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_berryflavor".""" -input pokemon_v2_berryflavor_order_by { - contest_type_id: order_by - id: order_by - name: order_by - pokemonV2NaturesByLikesFlavorId_aggregate: pokemon_v2_nature_aggregate_order_by - pokemon_v2_berryflavormaps_aggregate: pokemon_v2_berryflavormap_aggregate_order_by - pokemon_v2_berryflavornames_aggregate: pokemon_v2_berryflavorname_aggregate_order_by - pokemon_v2_contesttype: pokemon_v2_contesttype_order_by - pokemon_v2_natures_aggregate: pokemon_v2_nature_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_berryflavor" -""" -enum pokemon_v2_berryflavor_select_column { - """column name""" - contest_type_id - - """column name""" - id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_berryflavor_stddev_fields { - contest_type_id: Float - id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_berryflavor" -""" -input pokemon_v2_berryflavor_stddev_order_by { - contest_type_id: order_by - id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_berryflavor_stddev_pop_fields { - contest_type_id: Float - id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_berryflavor" -""" -input pokemon_v2_berryflavor_stddev_pop_order_by { - contest_type_id: order_by - id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_berryflavor_stddev_samp_fields { - contest_type_id: Float - id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_berryflavor" -""" -input pokemon_v2_berryflavor_stddev_samp_order_by { - contest_type_id: order_by - id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_berryflavor" -""" -input pokemon_v2_berryflavor_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_berryflavor_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_berryflavor_stream_cursor_value_input { - contest_type_id: Int - id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_berryflavor_sum_fields { - contest_type_id: Int - id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_berryflavor" -""" -input pokemon_v2_berryflavor_sum_order_by { - contest_type_id: order_by - id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_berryflavor_var_pop_fields { - contest_type_id: Float - id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_berryflavor" -""" -input pokemon_v2_berryflavor_var_pop_order_by { - contest_type_id: order_by - id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_berryflavor_var_samp_fields { - contest_type_id: Float - id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_berryflavor" -""" -input pokemon_v2_berryflavor_var_samp_order_by { - contest_type_id: order_by - id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_berryflavor_variance_fields { - contest_type_id: Float - id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_berryflavor" -""" -input pokemon_v2_berryflavor_variance_order_by { - contest_type_id: order_by - id: order_by -} - -""" -columns and relationships of "pokemon_v2_berryflavormap" -""" -type pokemon_v2_berryflavormap { - berry_flavor_id: Int - berry_id: Int - id: Int! - - """An object relationship""" - pokemon_v2_berry: pokemon_v2_berry - - """An object relationship""" - pokemon_v2_berryflavor: pokemon_v2_berryflavor - potency: Int! -} - -""" -aggregated selection of "pokemon_v2_berryflavormap" -""" -type pokemon_v2_berryflavormap_aggregate { - aggregate: pokemon_v2_berryflavormap_aggregate_fields - nodes: [pokemon_v2_berryflavormap!]! -} - -input pokemon_v2_berryflavormap_aggregate_bool_exp { - count: pokemon_v2_berryflavormap_aggregate_bool_exp_count -} - -input pokemon_v2_berryflavormap_aggregate_bool_exp_count { - arguments: [pokemon_v2_berryflavormap_select_column!] - distinct: Boolean - filter: pokemon_v2_berryflavormap_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_berryflavormap" -""" -type pokemon_v2_berryflavormap_aggregate_fields { - avg: pokemon_v2_berryflavormap_avg_fields - count(columns: [pokemon_v2_berryflavormap_select_column!], distinct: Boolean): Int! - max: pokemon_v2_berryflavormap_max_fields - min: pokemon_v2_berryflavormap_min_fields - stddev: pokemon_v2_berryflavormap_stddev_fields - stddev_pop: pokemon_v2_berryflavormap_stddev_pop_fields - stddev_samp: pokemon_v2_berryflavormap_stddev_samp_fields - sum: pokemon_v2_berryflavormap_sum_fields - var_pop: pokemon_v2_berryflavormap_var_pop_fields - var_samp: pokemon_v2_berryflavormap_var_samp_fields - variance: pokemon_v2_berryflavormap_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_berryflavormap" -""" -input pokemon_v2_berryflavormap_aggregate_order_by { - avg: pokemon_v2_berryflavormap_avg_order_by - count: order_by - max: pokemon_v2_berryflavormap_max_order_by - min: pokemon_v2_berryflavormap_min_order_by - stddev: pokemon_v2_berryflavormap_stddev_order_by - stddev_pop: pokemon_v2_berryflavormap_stddev_pop_order_by - stddev_samp: pokemon_v2_berryflavormap_stddev_samp_order_by - sum: pokemon_v2_berryflavormap_sum_order_by - var_pop: pokemon_v2_berryflavormap_var_pop_order_by - var_samp: pokemon_v2_berryflavormap_var_samp_order_by - variance: pokemon_v2_berryflavormap_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_berryflavormap_avg_fields { - berry_flavor_id: Float - berry_id: Float - id: Float - potency: Float -} - -""" -order by avg() on columns of table "pokemon_v2_berryflavormap" -""" -input pokemon_v2_berryflavormap_avg_order_by { - berry_flavor_id: order_by - berry_id: order_by - id: order_by - potency: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_berryflavormap". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_berryflavormap_bool_exp { - _and: [pokemon_v2_berryflavormap_bool_exp!] - _not: pokemon_v2_berryflavormap_bool_exp - _or: [pokemon_v2_berryflavormap_bool_exp!] - berry_flavor_id: Int_comparison_exp - berry_id: Int_comparison_exp - id: Int_comparison_exp - pokemon_v2_berry: pokemon_v2_berry_bool_exp - pokemon_v2_berryflavor: pokemon_v2_berryflavor_bool_exp - potency: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_berryflavormap_max_fields { - berry_flavor_id: Int - berry_id: Int - id: Int - potency: Int -} - -""" -order by max() on columns of table "pokemon_v2_berryflavormap" -""" -input pokemon_v2_berryflavormap_max_order_by { - berry_flavor_id: order_by - berry_id: order_by - id: order_by - potency: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_berryflavormap_min_fields { - berry_flavor_id: Int - berry_id: Int - id: Int - potency: Int -} - -""" -order by min() on columns of table "pokemon_v2_berryflavormap" -""" -input pokemon_v2_berryflavormap_min_order_by { - berry_flavor_id: order_by - berry_id: order_by - id: order_by - potency: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_berryflavormap".""" -input pokemon_v2_berryflavormap_order_by { - berry_flavor_id: order_by - berry_id: order_by - id: order_by - pokemon_v2_berry: pokemon_v2_berry_order_by - pokemon_v2_berryflavor: pokemon_v2_berryflavor_order_by - potency: order_by -} - -""" -select columns of table "pokemon_v2_berryflavormap" -""" -enum pokemon_v2_berryflavormap_select_column { - """column name""" - berry_flavor_id - - """column name""" - berry_id - - """column name""" - id - - """column name""" - potency -} - -"""aggregate stddev on columns""" -type pokemon_v2_berryflavormap_stddev_fields { - berry_flavor_id: Float - berry_id: Float - id: Float - potency: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_berryflavormap" -""" -input pokemon_v2_berryflavormap_stddev_order_by { - berry_flavor_id: order_by - berry_id: order_by - id: order_by - potency: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_berryflavormap_stddev_pop_fields { - berry_flavor_id: Float - berry_id: Float - id: Float - potency: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_berryflavormap" -""" -input pokemon_v2_berryflavormap_stddev_pop_order_by { - berry_flavor_id: order_by - berry_id: order_by - id: order_by - potency: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_berryflavormap_stddev_samp_fields { - berry_flavor_id: Float - berry_id: Float - id: Float - potency: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_berryflavormap" -""" -input pokemon_v2_berryflavormap_stddev_samp_order_by { - berry_flavor_id: order_by - berry_id: order_by - id: order_by - potency: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_berryflavormap" -""" -input pokemon_v2_berryflavormap_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_berryflavormap_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_berryflavormap_stream_cursor_value_input { - berry_flavor_id: Int - berry_id: Int - id: Int - potency: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_berryflavormap_sum_fields { - berry_flavor_id: Int - berry_id: Int - id: Int - potency: Int -} - -""" -order by sum() on columns of table "pokemon_v2_berryflavormap" -""" -input pokemon_v2_berryflavormap_sum_order_by { - berry_flavor_id: order_by - berry_id: order_by - id: order_by - potency: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_berryflavormap_var_pop_fields { - berry_flavor_id: Float - berry_id: Float - id: Float - potency: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_berryflavormap" -""" -input pokemon_v2_berryflavormap_var_pop_order_by { - berry_flavor_id: order_by - berry_id: order_by - id: order_by - potency: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_berryflavormap_var_samp_fields { - berry_flavor_id: Float - berry_id: Float - id: Float - potency: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_berryflavormap" -""" -input pokemon_v2_berryflavormap_var_samp_order_by { - berry_flavor_id: order_by - berry_id: order_by - id: order_by - potency: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_berryflavormap_variance_fields { - berry_flavor_id: Float - berry_id: Float - id: Float - potency: Float -} - -""" -order by variance() on columns of table "pokemon_v2_berryflavormap" -""" -input pokemon_v2_berryflavormap_variance_order_by { - berry_flavor_id: order_by - berry_id: order_by - id: order_by - potency: order_by -} - -""" -columns and relationships of "pokemon_v2_berryflavorname" -""" -type pokemon_v2_berryflavorname { - berry_flavor_id: Int - id: Int! - language_id: Int - name: String! - - """An object relationship""" - pokemon_v2_berryflavor: pokemon_v2_berryflavor - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language -} - -""" -aggregated selection of "pokemon_v2_berryflavorname" -""" -type pokemon_v2_berryflavorname_aggregate { - aggregate: pokemon_v2_berryflavorname_aggregate_fields - nodes: [pokemon_v2_berryflavorname!]! -} - -input pokemon_v2_berryflavorname_aggregate_bool_exp { - count: pokemon_v2_berryflavorname_aggregate_bool_exp_count -} - -input pokemon_v2_berryflavorname_aggregate_bool_exp_count { - arguments: [pokemon_v2_berryflavorname_select_column!] - distinct: Boolean - filter: pokemon_v2_berryflavorname_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_berryflavorname" -""" -type pokemon_v2_berryflavorname_aggregate_fields { - avg: pokemon_v2_berryflavorname_avg_fields - count(columns: [pokemon_v2_berryflavorname_select_column!], distinct: Boolean): Int! - max: pokemon_v2_berryflavorname_max_fields - min: pokemon_v2_berryflavorname_min_fields - stddev: pokemon_v2_berryflavorname_stddev_fields - stddev_pop: pokemon_v2_berryflavorname_stddev_pop_fields - stddev_samp: pokemon_v2_berryflavorname_stddev_samp_fields - sum: pokemon_v2_berryflavorname_sum_fields - var_pop: pokemon_v2_berryflavorname_var_pop_fields - var_samp: pokemon_v2_berryflavorname_var_samp_fields - variance: pokemon_v2_berryflavorname_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_berryflavorname" -""" -input pokemon_v2_berryflavorname_aggregate_order_by { - avg: pokemon_v2_berryflavorname_avg_order_by - count: order_by - max: pokemon_v2_berryflavorname_max_order_by - min: pokemon_v2_berryflavorname_min_order_by - stddev: pokemon_v2_berryflavorname_stddev_order_by - stddev_pop: pokemon_v2_berryflavorname_stddev_pop_order_by - stddev_samp: pokemon_v2_berryflavorname_stddev_samp_order_by - sum: pokemon_v2_berryflavorname_sum_order_by - var_pop: pokemon_v2_berryflavorname_var_pop_order_by - var_samp: pokemon_v2_berryflavorname_var_samp_order_by - variance: pokemon_v2_berryflavorname_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_berryflavorname_avg_fields { - berry_flavor_id: Float - id: Float - language_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_berryflavorname" -""" -input pokemon_v2_berryflavorname_avg_order_by { - berry_flavor_id: order_by - id: order_by - language_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_berryflavorname". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_berryflavorname_bool_exp { - _and: [pokemon_v2_berryflavorname_bool_exp!] - _not: pokemon_v2_berryflavorname_bool_exp - _or: [pokemon_v2_berryflavorname_bool_exp!] - berry_flavor_id: Int_comparison_exp - id: Int_comparison_exp - language_id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_berryflavor: pokemon_v2_berryflavor_bool_exp - pokemon_v2_language: pokemon_v2_language_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_berryflavorname_max_fields { - berry_flavor_id: Int - id: Int - language_id: Int - name: String -} - -""" -order by max() on columns of table "pokemon_v2_berryflavorname" -""" -input pokemon_v2_berryflavorname_max_order_by { - berry_flavor_id: order_by - id: order_by - language_id: order_by - name: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_berryflavorname_min_fields { - berry_flavor_id: Int - id: Int - language_id: Int - name: String -} - -""" -order by min() on columns of table "pokemon_v2_berryflavorname" -""" -input pokemon_v2_berryflavorname_min_order_by { - berry_flavor_id: order_by - id: order_by - language_id: order_by - name: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_berryflavorname". -""" -input pokemon_v2_berryflavorname_order_by { - berry_flavor_id: order_by - id: order_by - language_id: order_by - name: order_by - pokemon_v2_berryflavor: pokemon_v2_berryflavor_order_by - pokemon_v2_language: pokemon_v2_language_order_by -} - -""" -select columns of table "pokemon_v2_berryflavorname" -""" -enum pokemon_v2_berryflavorname_select_column { - """column name""" - berry_flavor_id - - """column name""" - id - - """column name""" - language_id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_berryflavorname_stddev_fields { - berry_flavor_id: Float - id: Float - language_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_berryflavorname" -""" -input pokemon_v2_berryflavorname_stddev_order_by { - berry_flavor_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_berryflavorname_stddev_pop_fields { - berry_flavor_id: Float - id: Float - language_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_berryflavorname" -""" -input pokemon_v2_berryflavorname_stddev_pop_order_by { - berry_flavor_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_berryflavorname_stddev_samp_fields { - berry_flavor_id: Float - id: Float - language_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_berryflavorname" -""" -input pokemon_v2_berryflavorname_stddev_samp_order_by { - berry_flavor_id: order_by - id: order_by - language_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_berryflavorname" -""" -input pokemon_v2_berryflavorname_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_berryflavorname_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_berryflavorname_stream_cursor_value_input { - berry_flavor_id: Int - id: Int - language_id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_berryflavorname_sum_fields { - berry_flavor_id: Int - id: Int - language_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_berryflavorname" -""" -input pokemon_v2_berryflavorname_sum_order_by { - berry_flavor_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_berryflavorname_var_pop_fields { - berry_flavor_id: Float - id: Float - language_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_berryflavorname" -""" -input pokemon_v2_berryflavorname_var_pop_order_by { - berry_flavor_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_berryflavorname_var_samp_fields { - berry_flavor_id: Float - id: Float - language_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_berryflavorname" -""" -input pokemon_v2_berryflavorname_var_samp_order_by { - berry_flavor_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_berryflavorname_variance_fields { - berry_flavor_id: Float - id: Float - language_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_berryflavorname" -""" -input pokemon_v2_berryflavorname_variance_order_by { - berry_flavor_id: order_by - id: order_by - language_id: order_by -} - -""" -columns and relationships of "pokemon_v2_characteristic" -""" -type pokemon_v2_characteristic { - gene_mod_5: Int! - id: Int! - - """An array relationship""" - pokemon_v2_characteristicdescriptions( - """distinct select on columns""" - distinct_on: [pokemon_v2_characteristicdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_characteristicdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_characteristicdescription_bool_exp - ): [pokemon_v2_characteristicdescription!]! - - """An aggregate relationship""" - pokemon_v2_characteristicdescriptions_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_characteristicdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_characteristicdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_characteristicdescription_bool_exp - ): pokemon_v2_characteristicdescription_aggregate! - - """An object relationship""" - pokemon_v2_stat: pokemon_v2_stat - stat_id: Int -} - -""" -aggregated selection of "pokemon_v2_characteristic" -""" -type pokemon_v2_characteristic_aggregate { - aggregate: pokemon_v2_characteristic_aggregate_fields - nodes: [pokemon_v2_characteristic!]! -} - -input pokemon_v2_characteristic_aggregate_bool_exp { - count: pokemon_v2_characteristic_aggregate_bool_exp_count -} - -input pokemon_v2_characteristic_aggregate_bool_exp_count { - arguments: [pokemon_v2_characteristic_select_column!] - distinct: Boolean - filter: pokemon_v2_characteristic_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_characteristic" -""" -type pokemon_v2_characteristic_aggregate_fields { - avg: pokemon_v2_characteristic_avg_fields - count(columns: [pokemon_v2_characteristic_select_column!], distinct: Boolean): Int! - max: pokemon_v2_characteristic_max_fields - min: pokemon_v2_characteristic_min_fields - stddev: pokemon_v2_characteristic_stddev_fields - stddev_pop: pokemon_v2_characteristic_stddev_pop_fields - stddev_samp: pokemon_v2_characteristic_stddev_samp_fields - sum: pokemon_v2_characteristic_sum_fields - var_pop: pokemon_v2_characteristic_var_pop_fields - var_samp: pokemon_v2_characteristic_var_samp_fields - variance: pokemon_v2_characteristic_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_characteristic" -""" -input pokemon_v2_characteristic_aggregate_order_by { - avg: pokemon_v2_characteristic_avg_order_by - count: order_by - max: pokemon_v2_characteristic_max_order_by - min: pokemon_v2_characteristic_min_order_by - stddev: pokemon_v2_characteristic_stddev_order_by - stddev_pop: pokemon_v2_characteristic_stddev_pop_order_by - stddev_samp: pokemon_v2_characteristic_stddev_samp_order_by - sum: pokemon_v2_characteristic_sum_order_by - var_pop: pokemon_v2_characteristic_var_pop_order_by - var_samp: pokemon_v2_characteristic_var_samp_order_by - variance: pokemon_v2_characteristic_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_characteristic_avg_fields { - gene_mod_5: Float - id: Float - stat_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_characteristic" -""" -input pokemon_v2_characteristic_avg_order_by { - gene_mod_5: order_by - id: order_by - stat_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_characteristic". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_characteristic_bool_exp { - _and: [pokemon_v2_characteristic_bool_exp!] - _not: pokemon_v2_characteristic_bool_exp - _or: [pokemon_v2_characteristic_bool_exp!] - gene_mod_5: Int_comparison_exp - id: Int_comparison_exp - pokemon_v2_characteristicdescriptions: pokemon_v2_characteristicdescription_bool_exp - pokemon_v2_characteristicdescriptions_aggregate: pokemon_v2_characteristicdescription_aggregate_bool_exp - pokemon_v2_stat: pokemon_v2_stat_bool_exp - stat_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_characteristic_max_fields { - gene_mod_5: Int - id: Int - stat_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_characteristic" -""" -input pokemon_v2_characteristic_max_order_by { - gene_mod_5: order_by - id: order_by - stat_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_characteristic_min_fields { - gene_mod_5: Int - id: Int - stat_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_characteristic" -""" -input pokemon_v2_characteristic_min_order_by { - gene_mod_5: order_by - id: order_by - stat_id: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_characteristic".""" -input pokemon_v2_characteristic_order_by { - gene_mod_5: order_by - id: order_by - pokemon_v2_characteristicdescriptions_aggregate: pokemon_v2_characteristicdescription_aggregate_order_by - pokemon_v2_stat: pokemon_v2_stat_order_by - stat_id: order_by -} - -""" -select columns of table "pokemon_v2_characteristic" -""" -enum pokemon_v2_characteristic_select_column { - """column name""" - gene_mod_5 - - """column name""" - id - - """column name""" - stat_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_characteristic_stddev_fields { - gene_mod_5: Float - id: Float - stat_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_characteristic" -""" -input pokemon_v2_characteristic_stddev_order_by { - gene_mod_5: order_by - id: order_by - stat_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_characteristic_stddev_pop_fields { - gene_mod_5: Float - id: Float - stat_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_characteristic" -""" -input pokemon_v2_characteristic_stddev_pop_order_by { - gene_mod_5: order_by - id: order_by - stat_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_characteristic_stddev_samp_fields { - gene_mod_5: Float - id: Float - stat_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_characteristic" -""" -input pokemon_v2_characteristic_stddev_samp_order_by { - gene_mod_5: order_by - id: order_by - stat_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_characteristic" -""" -input pokemon_v2_characteristic_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_characteristic_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_characteristic_stream_cursor_value_input { - gene_mod_5: Int - id: Int - stat_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_characteristic_sum_fields { - gene_mod_5: Int - id: Int - stat_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_characteristic" -""" -input pokemon_v2_characteristic_sum_order_by { - gene_mod_5: order_by - id: order_by - stat_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_characteristic_var_pop_fields { - gene_mod_5: Float - id: Float - stat_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_characteristic" -""" -input pokemon_v2_characteristic_var_pop_order_by { - gene_mod_5: order_by - id: order_by - stat_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_characteristic_var_samp_fields { - gene_mod_5: Float - id: Float - stat_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_characteristic" -""" -input pokemon_v2_characteristic_var_samp_order_by { - gene_mod_5: order_by - id: order_by - stat_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_characteristic_variance_fields { - gene_mod_5: Float - id: Float - stat_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_characteristic" -""" -input pokemon_v2_characteristic_variance_order_by { - gene_mod_5: order_by - id: order_by - stat_id: order_by -} - -""" -columns and relationships of "pokemon_v2_characteristicdescription" -""" -type pokemon_v2_characteristicdescription { - characteristic_id: Int - description: String! - id: Int! - language_id: Int - - """An object relationship""" - pokemon_v2_characteristic: pokemon_v2_characteristic - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language -} - -""" -aggregated selection of "pokemon_v2_characteristicdescription" -""" -type pokemon_v2_characteristicdescription_aggregate { - aggregate: pokemon_v2_characteristicdescription_aggregate_fields - nodes: [pokemon_v2_characteristicdescription!]! -} - -input pokemon_v2_characteristicdescription_aggregate_bool_exp { - count: pokemon_v2_characteristicdescription_aggregate_bool_exp_count -} - -input pokemon_v2_characteristicdescription_aggregate_bool_exp_count { - arguments: [pokemon_v2_characteristicdescription_select_column!] - distinct: Boolean - filter: pokemon_v2_characteristicdescription_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_characteristicdescription" -""" -type pokemon_v2_characteristicdescription_aggregate_fields { - avg: pokemon_v2_characteristicdescription_avg_fields - count(columns: [pokemon_v2_characteristicdescription_select_column!], distinct: Boolean): Int! - max: pokemon_v2_characteristicdescription_max_fields - min: pokemon_v2_characteristicdescription_min_fields - stddev: pokemon_v2_characteristicdescription_stddev_fields - stddev_pop: pokemon_v2_characteristicdescription_stddev_pop_fields - stddev_samp: pokemon_v2_characteristicdescription_stddev_samp_fields - sum: pokemon_v2_characteristicdescription_sum_fields - var_pop: pokemon_v2_characteristicdescription_var_pop_fields - var_samp: pokemon_v2_characteristicdescription_var_samp_fields - variance: pokemon_v2_characteristicdescription_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_characteristicdescription" -""" -input pokemon_v2_characteristicdescription_aggregate_order_by { - avg: pokemon_v2_characteristicdescription_avg_order_by - count: order_by - max: pokemon_v2_characteristicdescription_max_order_by - min: pokemon_v2_characteristicdescription_min_order_by - stddev: pokemon_v2_characteristicdescription_stddev_order_by - stddev_pop: pokemon_v2_characteristicdescription_stddev_pop_order_by - stddev_samp: pokemon_v2_characteristicdescription_stddev_samp_order_by - sum: pokemon_v2_characteristicdescription_sum_order_by - var_pop: pokemon_v2_characteristicdescription_var_pop_order_by - var_samp: pokemon_v2_characteristicdescription_var_samp_order_by - variance: pokemon_v2_characteristicdescription_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_characteristicdescription_avg_fields { - characteristic_id: Float - id: Float - language_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_characteristicdescription" -""" -input pokemon_v2_characteristicdescription_avg_order_by { - characteristic_id: order_by - id: order_by - language_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_characteristicdescription". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_characteristicdescription_bool_exp { - _and: [pokemon_v2_characteristicdescription_bool_exp!] - _not: pokemon_v2_characteristicdescription_bool_exp - _or: [pokemon_v2_characteristicdescription_bool_exp!] - characteristic_id: Int_comparison_exp - description: String_comparison_exp - id: Int_comparison_exp - language_id: Int_comparison_exp - pokemon_v2_characteristic: pokemon_v2_characteristic_bool_exp - pokemon_v2_language: pokemon_v2_language_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_characteristicdescription_max_fields { - characteristic_id: Int - description: String - id: Int - language_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_characteristicdescription" -""" -input pokemon_v2_characteristicdescription_max_order_by { - characteristic_id: order_by - description: order_by - id: order_by - language_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_characteristicdescription_min_fields { - characteristic_id: Int - description: String - id: Int - language_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_characteristicdescription" -""" -input pokemon_v2_characteristicdescription_min_order_by { - characteristic_id: order_by - description: order_by - id: order_by - language_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_characteristicdescription". -""" -input pokemon_v2_characteristicdescription_order_by { - characteristic_id: order_by - description: order_by - id: order_by - language_id: order_by - pokemon_v2_characteristic: pokemon_v2_characteristic_order_by - pokemon_v2_language: pokemon_v2_language_order_by -} - -""" -select columns of table "pokemon_v2_characteristicdescription" -""" -enum pokemon_v2_characteristicdescription_select_column { - """column name""" - characteristic_id - - """column name""" - description - - """column name""" - id - - """column name""" - language_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_characteristicdescription_stddev_fields { - characteristic_id: Float - id: Float - language_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_characteristicdescription" -""" -input pokemon_v2_characteristicdescription_stddev_order_by { - characteristic_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_characteristicdescription_stddev_pop_fields { - characteristic_id: Float - id: Float - language_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_characteristicdescription" -""" -input pokemon_v2_characteristicdescription_stddev_pop_order_by { - characteristic_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_characteristicdescription_stddev_samp_fields { - characteristic_id: Float - id: Float - language_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_characteristicdescription" -""" -input pokemon_v2_characteristicdescription_stddev_samp_order_by { - characteristic_id: order_by - id: order_by - language_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_characteristicdescription" -""" -input pokemon_v2_characteristicdescription_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_characteristicdescription_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_characteristicdescription_stream_cursor_value_input { - characteristic_id: Int - description: String - id: Int - language_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_characteristicdescription_sum_fields { - characteristic_id: Int - id: Int - language_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_characteristicdescription" -""" -input pokemon_v2_characteristicdescription_sum_order_by { - characteristic_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_characteristicdescription_var_pop_fields { - characteristic_id: Float - id: Float - language_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_characteristicdescription" -""" -input pokemon_v2_characteristicdescription_var_pop_order_by { - characteristic_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_characteristicdescription_var_samp_fields { - characteristic_id: Float - id: Float - language_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_characteristicdescription" -""" -input pokemon_v2_characteristicdescription_var_samp_order_by { - characteristic_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_characteristicdescription_variance_fields { - characteristic_id: Float - id: Float - language_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_characteristicdescription" -""" -input pokemon_v2_characteristicdescription_variance_order_by { - characteristic_id: order_by - id: order_by - language_id: order_by -} - -""" -columns and relationships of "pokemon_v2_contestcombo" -""" -type pokemon_v2_contestcombo { - first_move_id: Int - id: Int! - - """An object relationship""" - pokemonV2MoveBySecondMoveId: pokemon_v2_move - - """An object relationship""" - pokemon_v2_move: pokemon_v2_move - second_move_id: Int -} - -""" -aggregated selection of "pokemon_v2_contestcombo" -""" -type pokemon_v2_contestcombo_aggregate { - aggregate: pokemon_v2_contestcombo_aggregate_fields - nodes: [pokemon_v2_contestcombo!]! -} - -input pokemon_v2_contestcombo_aggregate_bool_exp { - count: pokemon_v2_contestcombo_aggregate_bool_exp_count -} - -input pokemon_v2_contestcombo_aggregate_bool_exp_count { - arguments: [pokemon_v2_contestcombo_select_column!] - distinct: Boolean - filter: pokemon_v2_contestcombo_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_contestcombo" -""" -type pokemon_v2_contestcombo_aggregate_fields { - avg: pokemon_v2_contestcombo_avg_fields - count(columns: [pokemon_v2_contestcombo_select_column!], distinct: Boolean): Int! - max: pokemon_v2_contestcombo_max_fields - min: pokemon_v2_contestcombo_min_fields - stddev: pokemon_v2_contestcombo_stddev_fields - stddev_pop: pokemon_v2_contestcombo_stddev_pop_fields - stddev_samp: pokemon_v2_contestcombo_stddev_samp_fields - sum: pokemon_v2_contestcombo_sum_fields - var_pop: pokemon_v2_contestcombo_var_pop_fields - var_samp: pokemon_v2_contestcombo_var_samp_fields - variance: pokemon_v2_contestcombo_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_contestcombo" -""" -input pokemon_v2_contestcombo_aggregate_order_by { - avg: pokemon_v2_contestcombo_avg_order_by - count: order_by - max: pokemon_v2_contestcombo_max_order_by - min: pokemon_v2_contestcombo_min_order_by - stddev: pokemon_v2_contestcombo_stddev_order_by - stddev_pop: pokemon_v2_contestcombo_stddev_pop_order_by - stddev_samp: pokemon_v2_contestcombo_stddev_samp_order_by - sum: pokemon_v2_contestcombo_sum_order_by - var_pop: pokemon_v2_contestcombo_var_pop_order_by - var_samp: pokemon_v2_contestcombo_var_samp_order_by - variance: pokemon_v2_contestcombo_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_contestcombo_avg_fields { - first_move_id: Float - id: Float - second_move_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_contestcombo" -""" -input pokemon_v2_contestcombo_avg_order_by { - first_move_id: order_by - id: order_by - second_move_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_contestcombo". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_contestcombo_bool_exp { - _and: [pokemon_v2_contestcombo_bool_exp!] - _not: pokemon_v2_contestcombo_bool_exp - _or: [pokemon_v2_contestcombo_bool_exp!] - first_move_id: Int_comparison_exp - id: Int_comparison_exp - pokemonV2MoveBySecondMoveId: pokemon_v2_move_bool_exp - pokemon_v2_move: pokemon_v2_move_bool_exp - second_move_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_contestcombo_max_fields { - first_move_id: Int - id: Int - second_move_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_contestcombo" -""" -input pokemon_v2_contestcombo_max_order_by { - first_move_id: order_by - id: order_by - second_move_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_contestcombo_min_fields { - first_move_id: Int - id: Int - second_move_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_contestcombo" -""" -input pokemon_v2_contestcombo_min_order_by { - first_move_id: order_by - id: order_by - second_move_id: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_contestcombo".""" -input pokemon_v2_contestcombo_order_by { - first_move_id: order_by - id: order_by - pokemonV2MoveBySecondMoveId: pokemon_v2_move_order_by - pokemon_v2_move: pokemon_v2_move_order_by - second_move_id: order_by -} - -""" -select columns of table "pokemon_v2_contestcombo" -""" -enum pokemon_v2_contestcombo_select_column { - """column name""" - first_move_id - - """column name""" - id - - """column name""" - second_move_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_contestcombo_stddev_fields { - first_move_id: Float - id: Float - second_move_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_contestcombo" -""" -input pokemon_v2_contestcombo_stddev_order_by { - first_move_id: order_by - id: order_by - second_move_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_contestcombo_stddev_pop_fields { - first_move_id: Float - id: Float - second_move_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_contestcombo" -""" -input pokemon_v2_contestcombo_stddev_pop_order_by { - first_move_id: order_by - id: order_by - second_move_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_contestcombo_stddev_samp_fields { - first_move_id: Float - id: Float - second_move_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_contestcombo" -""" -input pokemon_v2_contestcombo_stddev_samp_order_by { - first_move_id: order_by - id: order_by - second_move_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_contestcombo" -""" -input pokemon_v2_contestcombo_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_contestcombo_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_contestcombo_stream_cursor_value_input { - first_move_id: Int - id: Int - second_move_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_contestcombo_sum_fields { - first_move_id: Int - id: Int - second_move_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_contestcombo" -""" -input pokemon_v2_contestcombo_sum_order_by { - first_move_id: order_by - id: order_by - second_move_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_contestcombo_var_pop_fields { - first_move_id: Float - id: Float - second_move_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_contestcombo" -""" -input pokemon_v2_contestcombo_var_pop_order_by { - first_move_id: order_by - id: order_by - second_move_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_contestcombo_var_samp_fields { - first_move_id: Float - id: Float - second_move_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_contestcombo" -""" -input pokemon_v2_contestcombo_var_samp_order_by { - first_move_id: order_by - id: order_by - second_move_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_contestcombo_variance_fields { - first_move_id: Float - id: Float - second_move_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_contestcombo" -""" -input pokemon_v2_contestcombo_variance_order_by { - first_move_id: order_by - id: order_by - second_move_id: order_by -} - -""" -columns and relationships of "pokemon_v2_contesteffect" -""" -type pokemon_v2_contesteffect { - appeal: Int! - id: Int! - jam: Int! - - """An array relationship""" - pokemon_v2_contesteffecteffecttexts( - """distinct select on columns""" - distinct_on: [pokemon_v2_contesteffecteffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contesteffecteffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contesteffecteffecttext_bool_exp - ): [pokemon_v2_contesteffecteffecttext!]! - - """An aggregate relationship""" - pokemon_v2_contesteffecteffecttexts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_contesteffecteffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contesteffecteffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contesteffecteffecttext_bool_exp - ): pokemon_v2_contesteffecteffecttext_aggregate! - - """An array relationship""" - pokemon_v2_contesteffectflavortexts( - """distinct select on columns""" - distinct_on: [pokemon_v2_contesteffectflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contesteffectflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contesteffectflavortext_bool_exp - ): [pokemon_v2_contesteffectflavortext!]! - - """An aggregate relationship""" - pokemon_v2_contesteffectflavortexts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_contesteffectflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contesteffectflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contesteffectflavortext_bool_exp - ): pokemon_v2_contesteffectflavortext_aggregate! - - """An array relationship""" - pokemon_v2_moves( - """distinct select on columns""" - distinct_on: [pokemon_v2_move_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_move_order_by!] - - """filter the rows returned""" - where: pokemon_v2_move_bool_exp - ): [pokemon_v2_move!]! - - """An aggregate relationship""" - pokemon_v2_moves_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_move_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_move_order_by!] - - """filter the rows returned""" - where: pokemon_v2_move_bool_exp - ): pokemon_v2_move_aggregate! -} - -""" -aggregated selection of "pokemon_v2_contesteffect" -""" -type pokemon_v2_contesteffect_aggregate { - aggregate: pokemon_v2_contesteffect_aggregate_fields - nodes: [pokemon_v2_contesteffect!]! -} - -""" -aggregate fields of "pokemon_v2_contesteffect" -""" -type pokemon_v2_contesteffect_aggregate_fields { - avg: pokemon_v2_contesteffect_avg_fields - count(columns: [pokemon_v2_contesteffect_select_column!], distinct: Boolean): Int! - max: pokemon_v2_contesteffect_max_fields - min: pokemon_v2_contesteffect_min_fields - stddev: pokemon_v2_contesteffect_stddev_fields - stddev_pop: pokemon_v2_contesteffect_stddev_pop_fields - stddev_samp: pokemon_v2_contesteffect_stddev_samp_fields - sum: pokemon_v2_contesteffect_sum_fields - var_pop: pokemon_v2_contesteffect_var_pop_fields - var_samp: pokemon_v2_contesteffect_var_samp_fields - variance: pokemon_v2_contesteffect_variance_fields -} - -"""aggregate avg on columns""" -type pokemon_v2_contesteffect_avg_fields { - appeal: Float - id: Float - jam: Float -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_contesteffect". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_contesteffect_bool_exp { - _and: [pokemon_v2_contesteffect_bool_exp!] - _not: pokemon_v2_contesteffect_bool_exp - _or: [pokemon_v2_contesteffect_bool_exp!] - appeal: Int_comparison_exp - id: Int_comparison_exp - jam: Int_comparison_exp - pokemon_v2_contesteffecteffecttexts: pokemon_v2_contesteffecteffecttext_bool_exp - pokemon_v2_contesteffecteffecttexts_aggregate: pokemon_v2_contesteffecteffecttext_aggregate_bool_exp - pokemon_v2_contesteffectflavortexts: pokemon_v2_contesteffectflavortext_bool_exp - pokemon_v2_contesteffectflavortexts_aggregate: pokemon_v2_contesteffectflavortext_aggregate_bool_exp - pokemon_v2_moves: pokemon_v2_move_bool_exp - pokemon_v2_moves_aggregate: pokemon_v2_move_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_contesteffect_max_fields { - appeal: Int - id: Int - jam: Int -} - -"""aggregate min on columns""" -type pokemon_v2_contesteffect_min_fields { - appeal: Int - id: Int - jam: Int -} - -"""Ordering options when selecting data from "pokemon_v2_contesteffect".""" -input pokemon_v2_contesteffect_order_by { - appeal: order_by - id: order_by - jam: order_by - pokemon_v2_contesteffecteffecttexts_aggregate: pokemon_v2_contesteffecteffecttext_aggregate_order_by - pokemon_v2_contesteffectflavortexts_aggregate: pokemon_v2_contesteffectflavortext_aggregate_order_by - pokemon_v2_moves_aggregate: pokemon_v2_move_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_contesteffect" -""" -enum pokemon_v2_contesteffect_select_column { - """column name""" - appeal - - """column name""" - id - - """column name""" - jam -} - -"""aggregate stddev on columns""" -type pokemon_v2_contesteffect_stddev_fields { - appeal: Float - id: Float - jam: Float -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_contesteffect_stddev_pop_fields { - appeal: Float - id: Float - jam: Float -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_contesteffect_stddev_samp_fields { - appeal: Float - id: Float - jam: Float -} - -""" -Streaming cursor of the table "pokemon_v2_contesteffect" -""" -input pokemon_v2_contesteffect_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_contesteffect_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_contesteffect_stream_cursor_value_input { - appeal: Int - id: Int - jam: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_contesteffect_sum_fields { - appeal: Int - id: Int - jam: Int -} - -"""aggregate var_pop on columns""" -type pokemon_v2_contesteffect_var_pop_fields { - appeal: Float - id: Float - jam: Float -} - -"""aggregate var_samp on columns""" -type pokemon_v2_contesteffect_var_samp_fields { - appeal: Float - id: Float - jam: Float -} - -"""aggregate variance on columns""" -type pokemon_v2_contesteffect_variance_fields { - appeal: Float - id: Float - jam: Float -} - -""" -columns and relationships of "pokemon_v2_contesteffecteffecttext" -""" -type pokemon_v2_contesteffecteffecttext { - contest_effect_id: Int - effect: String! - id: Int! - language_id: Int - - """An object relationship""" - pokemon_v2_contesteffect: pokemon_v2_contesteffect - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language -} - -""" -aggregated selection of "pokemon_v2_contesteffecteffecttext" -""" -type pokemon_v2_contesteffecteffecttext_aggregate { - aggregate: pokemon_v2_contesteffecteffecttext_aggregate_fields - nodes: [pokemon_v2_contesteffecteffecttext!]! -} - -input pokemon_v2_contesteffecteffecttext_aggregate_bool_exp { - count: pokemon_v2_contesteffecteffecttext_aggregate_bool_exp_count -} - -input pokemon_v2_contesteffecteffecttext_aggregate_bool_exp_count { - arguments: [pokemon_v2_contesteffecteffecttext_select_column!] - distinct: Boolean - filter: pokemon_v2_contesteffecteffecttext_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_contesteffecteffecttext" -""" -type pokemon_v2_contesteffecteffecttext_aggregate_fields { - avg: pokemon_v2_contesteffecteffecttext_avg_fields - count(columns: [pokemon_v2_contesteffecteffecttext_select_column!], distinct: Boolean): Int! - max: pokemon_v2_contesteffecteffecttext_max_fields - min: pokemon_v2_contesteffecteffecttext_min_fields - stddev: pokemon_v2_contesteffecteffecttext_stddev_fields - stddev_pop: pokemon_v2_contesteffecteffecttext_stddev_pop_fields - stddev_samp: pokemon_v2_contesteffecteffecttext_stddev_samp_fields - sum: pokemon_v2_contesteffecteffecttext_sum_fields - var_pop: pokemon_v2_contesteffecteffecttext_var_pop_fields - var_samp: pokemon_v2_contesteffecteffecttext_var_samp_fields - variance: pokemon_v2_contesteffecteffecttext_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_contesteffecteffecttext" -""" -input pokemon_v2_contesteffecteffecttext_aggregate_order_by { - avg: pokemon_v2_contesteffecteffecttext_avg_order_by - count: order_by - max: pokemon_v2_contesteffecteffecttext_max_order_by - min: pokemon_v2_contesteffecteffecttext_min_order_by - stddev: pokemon_v2_contesteffecteffecttext_stddev_order_by - stddev_pop: pokemon_v2_contesteffecteffecttext_stddev_pop_order_by - stddev_samp: pokemon_v2_contesteffecteffecttext_stddev_samp_order_by - sum: pokemon_v2_contesteffecteffecttext_sum_order_by - var_pop: pokemon_v2_contesteffecteffecttext_var_pop_order_by - var_samp: pokemon_v2_contesteffecteffecttext_var_samp_order_by - variance: pokemon_v2_contesteffecteffecttext_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_contesteffecteffecttext_avg_fields { - contest_effect_id: Float - id: Float - language_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_contesteffecteffecttext" -""" -input pokemon_v2_contesteffecteffecttext_avg_order_by { - contest_effect_id: order_by - id: order_by - language_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_contesteffecteffecttext". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_contesteffecteffecttext_bool_exp { - _and: [pokemon_v2_contesteffecteffecttext_bool_exp!] - _not: pokemon_v2_contesteffecteffecttext_bool_exp - _or: [pokemon_v2_contesteffecteffecttext_bool_exp!] - contest_effect_id: Int_comparison_exp - effect: String_comparison_exp - id: Int_comparison_exp - language_id: Int_comparison_exp - pokemon_v2_contesteffect: pokemon_v2_contesteffect_bool_exp - pokemon_v2_language: pokemon_v2_language_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_contesteffecteffecttext_max_fields { - contest_effect_id: Int - effect: String - id: Int - language_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_contesteffecteffecttext" -""" -input pokemon_v2_contesteffecteffecttext_max_order_by { - contest_effect_id: order_by - effect: order_by - id: order_by - language_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_contesteffecteffecttext_min_fields { - contest_effect_id: Int - effect: String - id: Int - language_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_contesteffecteffecttext" -""" -input pokemon_v2_contesteffecteffecttext_min_order_by { - contest_effect_id: order_by - effect: order_by - id: order_by - language_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_contesteffecteffecttext". -""" -input pokemon_v2_contesteffecteffecttext_order_by { - contest_effect_id: order_by - effect: order_by - id: order_by - language_id: order_by - pokemon_v2_contesteffect: pokemon_v2_contesteffect_order_by - pokemon_v2_language: pokemon_v2_language_order_by -} - -""" -select columns of table "pokemon_v2_contesteffecteffecttext" -""" -enum pokemon_v2_contesteffecteffecttext_select_column { - """column name""" - contest_effect_id - - """column name""" - effect - - """column name""" - id - - """column name""" - language_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_contesteffecteffecttext_stddev_fields { - contest_effect_id: Float - id: Float - language_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_contesteffecteffecttext" -""" -input pokemon_v2_contesteffecteffecttext_stddev_order_by { - contest_effect_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_contesteffecteffecttext_stddev_pop_fields { - contest_effect_id: Float - id: Float - language_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_contesteffecteffecttext" -""" -input pokemon_v2_contesteffecteffecttext_stddev_pop_order_by { - contest_effect_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_contesteffecteffecttext_stddev_samp_fields { - contest_effect_id: Float - id: Float - language_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_contesteffecteffecttext" -""" -input pokemon_v2_contesteffecteffecttext_stddev_samp_order_by { - contest_effect_id: order_by - id: order_by - language_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_contesteffecteffecttext" -""" -input pokemon_v2_contesteffecteffecttext_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_contesteffecteffecttext_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_contesteffecteffecttext_stream_cursor_value_input { - contest_effect_id: Int - effect: String - id: Int - language_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_contesteffecteffecttext_sum_fields { - contest_effect_id: Int - id: Int - language_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_contesteffecteffecttext" -""" -input pokemon_v2_contesteffecteffecttext_sum_order_by { - contest_effect_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_contesteffecteffecttext_var_pop_fields { - contest_effect_id: Float - id: Float - language_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_contesteffecteffecttext" -""" -input pokemon_v2_contesteffecteffecttext_var_pop_order_by { - contest_effect_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_contesteffecteffecttext_var_samp_fields { - contest_effect_id: Float - id: Float - language_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_contesteffecteffecttext" -""" -input pokemon_v2_contesteffecteffecttext_var_samp_order_by { - contest_effect_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_contesteffecteffecttext_variance_fields { - contest_effect_id: Float - id: Float - language_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_contesteffecteffecttext" -""" -input pokemon_v2_contesteffecteffecttext_variance_order_by { - contest_effect_id: order_by - id: order_by - language_id: order_by -} - -""" -columns and relationships of "pokemon_v2_contesteffectflavortext" -""" -type pokemon_v2_contesteffectflavortext { - contest_effect_id: Int - flavor_text: String! - id: Int! - language_id: Int - - """An object relationship""" - pokemon_v2_contesteffect: pokemon_v2_contesteffect - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language -} - -""" -aggregated selection of "pokemon_v2_contesteffectflavortext" -""" -type pokemon_v2_contesteffectflavortext_aggregate { - aggregate: pokemon_v2_contesteffectflavortext_aggregate_fields - nodes: [pokemon_v2_contesteffectflavortext!]! -} - -input pokemon_v2_contesteffectflavortext_aggregate_bool_exp { - count: pokemon_v2_contesteffectflavortext_aggregate_bool_exp_count -} - -input pokemon_v2_contesteffectflavortext_aggregate_bool_exp_count { - arguments: [pokemon_v2_contesteffectflavortext_select_column!] - distinct: Boolean - filter: pokemon_v2_contesteffectflavortext_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_contesteffectflavortext" -""" -type pokemon_v2_contesteffectflavortext_aggregate_fields { - avg: pokemon_v2_contesteffectflavortext_avg_fields - count(columns: [pokemon_v2_contesteffectflavortext_select_column!], distinct: Boolean): Int! - max: pokemon_v2_contesteffectflavortext_max_fields - min: pokemon_v2_contesteffectflavortext_min_fields - stddev: pokemon_v2_contesteffectflavortext_stddev_fields - stddev_pop: pokemon_v2_contesteffectflavortext_stddev_pop_fields - stddev_samp: pokemon_v2_contesteffectflavortext_stddev_samp_fields - sum: pokemon_v2_contesteffectflavortext_sum_fields - var_pop: pokemon_v2_contesteffectflavortext_var_pop_fields - var_samp: pokemon_v2_contesteffectflavortext_var_samp_fields - variance: pokemon_v2_contesteffectflavortext_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_contesteffectflavortext" -""" -input pokemon_v2_contesteffectflavortext_aggregate_order_by { - avg: pokemon_v2_contesteffectflavortext_avg_order_by - count: order_by - max: pokemon_v2_contesteffectflavortext_max_order_by - min: pokemon_v2_contesteffectflavortext_min_order_by - stddev: pokemon_v2_contesteffectflavortext_stddev_order_by - stddev_pop: pokemon_v2_contesteffectflavortext_stddev_pop_order_by - stddev_samp: pokemon_v2_contesteffectflavortext_stddev_samp_order_by - sum: pokemon_v2_contesteffectflavortext_sum_order_by - var_pop: pokemon_v2_contesteffectflavortext_var_pop_order_by - var_samp: pokemon_v2_contesteffectflavortext_var_samp_order_by - variance: pokemon_v2_contesteffectflavortext_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_contesteffectflavortext_avg_fields { - contest_effect_id: Float - id: Float - language_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_contesteffectflavortext" -""" -input pokemon_v2_contesteffectflavortext_avg_order_by { - contest_effect_id: order_by - id: order_by - language_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_contesteffectflavortext". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_contesteffectflavortext_bool_exp { - _and: [pokemon_v2_contesteffectflavortext_bool_exp!] - _not: pokemon_v2_contesteffectflavortext_bool_exp - _or: [pokemon_v2_contesteffectflavortext_bool_exp!] - contest_effect_id: Int_comparison_exp - flavor_text: String_comparison_exp - id: Int_comparison_exp - language_id: Int_comparison_exp - pokemon_v2_contesteffect: pokemon_v2_contesteffect_bool_exp - pokemon_v2_language: pokemon_v2_language_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_contesteffectflavortext_max_fields { - contest_effect_id: Int - flavor_text: String - id: Int - language_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_contesteffectflavortext" -""" -input pokemon_v2_contesteffectflavortext_max_order_by { - contest_effect_id: order_by - flavor_text: order_by - id: order_by - language_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_contesteffectflavortext_min_fields { - contest_effect_id: Int - flavor_text: String - id: Int - language_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_contesteffectflavortext" -""" -input pokemon_v2_contesteffectflavortext_min_order_by { - contest_effect_id: order_by - flavor_text: order_by - id: order_by - language_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_contesteffectflavortext". -""" -input pokemon_v2_contesteffectflavortext_order_by { - contest_effect_id: order_by - flavor_text: order_by - id: order_by - language_id: order_by - pokemon_v2_contesteffect: pokemon_v2_contesteffect_order_by - pokemon_v2_language: pokemon_v2_language_order_by -} - -""" -select columns of table "pokemon_v2_contesteffectflavortext" -""" -enum pokemon_v2_contesteffectflavortext_select_column { - """column name""" - contest_effect_id - - """column name""" - flavor_text - - """column name""" - id - - """column name""" - language_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_contesteffectflavortext_stddev_fields { - contest_effect_id: Float - id: Float - language_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_contesteffectflavortext" -""" -input pokemon_v2_contesteffectflavortext_stddev_order_by { - contest_effect_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_contesteffectflavortext_stddev_pop_fields { - contest_effect_id: Float - id: Float - language_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_contesteffectflavortext" -""" -input pokemon_v2_contesteffectflavortext_stddev_pop_order_by { - contest_effect_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_contesteffectflavortext_stddev_samp_fields { - contest_effect_id: Float - id: Float - language_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_contesteffectflavortext" -""" -input pokemon_v2_contesteffectflavortext_stddev_samp_order_by { - contest_effect_id: order_by - id: order_by - language_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_contesteffectflavortext" -""" -input pokemon_v2_contesteffectflavortext_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_contesteffectflavortext_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_contesteffectflavortext_stream_cursor_value_input { - contest_effect_id: Int - flavor_text: String - id: Int - language_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_contesteffectflavortext_sum_fields { - contest_effect_id: Int - id: Int - language_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_contesteffectflavortext" -""" -input pokemon_v2_contesteffectflavortext_sum_order_by { - contest_effect_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_contesteffectflavortext_var_pop_fields { - contest_effect_id: Float - id: Float - language_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_contesteffectflavortext" -""" -input pokemon_v2_contesteffectflavortext_var_pop_order_by { - contest_effect_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_contesteffectflavortext_var_samp_fields { - contest_effect_id: Float - id: Float - language_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_contesteffectflavortext" -""" -input pokemon_v2_contesteffectflavortext_var_samp_order_by { - contest_effect_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_contesteffectflavortext_variance_fields { - contest_effect_id: Float - id: Float - language_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_contesteffectflavortext" -""" -input pokemon_v2_contesteffectflavortext_variance_order_by { - contest_effect_id: order_by - id: order_by - language_id: order_by -} - -""" -columns and relationships of "pokemon_v2_contesttype" -""" -type pokemon_v2_contesttype { - id: Int! - name: String! - - """An object relationship""" - pokemon_v2_berryflavor: pokemon_v2_berryflavor - - """An array relationship""" - pokemon_v2_berryflavors( - """distinct select on columns""" - distinct_on: [pokemon_v2_berryflavor_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berryflavor_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berryflavor_bool_exp - ): [pokemon_v2_berryflavor!]! - - """An aggregate relationship""" - pokemon_v2_berryflavors_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_berryflavor_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berryflavor_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berryflavor_bool_exp - ): pokemon_v2_berryflavor_aggregate! - - """An array relationship""" - pokemon_v2_contesttypenames( - """distinct select on columns""" - distinct_on: [pokemon_v2_contesttypename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contesttypename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contesttypename_bool_exp - ): [pokemon_v2_contesttypename!]! - - """An aggregate relationship""" - pokemon_v2_contesttypenames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_contesttypename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contesttypename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contesttypename_bool_exp - ): pokemon_v2_contesttypename_aggregate! - - """An array relationship""" - pokemon_v2_moves( - """distinct select on columns""" - distinct_on: [pokemon_v2_move_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_move_order_by!] - - """filter the rows returned""" - where: pokemon_v2_move_bool_exp - ): [pokemon_v2_move!]! - - """An aggregate relationship""" - pokemon_v2_moves_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_move_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_move_order_by!] - - """filter the rows returned""" - where: pokemon_v2_move_bool_exp - ): pokemon_v2_move_aggregate! -} - -""" -aggregated selection of "pokemon_v2_contesttype" -""" -type pokemon_v2_contesttype_aggregate { - aggregate: pokemon_v2_contesttype_aggregate_fields - nodes: [pokemon_v2_contesttype!]! -} - -""" -aggregate fields of "pokemon_v2_contesttype" -""" -type pokemon_v2_contesttype_aggregate_fields { - avg: pokemon_v2_contesttype_avg_fields - count(columns: [pokemon_v2_contesttype_select_column!], distinct: Boolean): Int! - max: pokemon_v2_contesttype_max_fields - min: pokemon_v2_contesttype_min_fields - stddev: pokemon_v2_contesttype_stddev_fields - stddev_pop: pokemon_v2_contesttype_stddev_pop_fields - stddev_samp: pokemon_v2_contesttype_stddev_samp_fields - sum: pokemon_v2_contesttype_sum_fields - var_pop: pokemon_v2_contesttype_var_pop_fields - var_samp: pokemon_v2_contesttype_var_samp_fields - variance: pokemon_v2_contesttype_variance_fields -} - -"""aggregate avg on columns""" -type pokemon_v2_contesttype_avg_fields { - id: Float -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_contesttype". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_contesttype_bool_exp { - _and: [pokemon_v2_contesttype_bool_exp!] - _not: pokemon_v2_contesttype_bool_exp - _or: [pokemon_v2_contesttype_bool_exp!] - id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_berryflavor: pokemon_v2_berryflavor_bool_exp - pokemon_v2_berryflavors: pokemon_v2_berryflavor_bool_exp - pokemon_v2_berryflavors_aggregate: pokemon_v2_berryflavor_aggregate_bool_exp - pokemon_v2_contesttypenames: pokemon_v2_contesttypename_bool_exp - pokemon_v2_contesttypenames_aggregate: pokemon_v2_contesttypename_aggregate_bool_exp - pokemon_v2_moves: pokemon_v2_move_bool_exp - pokemon_v2_moves_aggregate: pokemon_v2_move_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_contesttype_max_fields { - id: Int - name: String -} - -"""aggregate min on columns""" -type pokemon_v2_contesttype_min_fields { - id: Int - name: String -} - -"""Ordering options when selecting data from "pokemon_v2_contesttype".""" -input pokemon_v2_contesttype_order_by { - id: order_by - name: order_by - pokemon_v2_berryflavor: pokemon_v2_berryflavor_order_by - pokemon_v2_berryflavors_aggregate: pokemon_v2_berryflavor_aggregate_order_by - pokemon_v2_contesttypenames_aggregate: pokemon_v2_contesttypename_aggregate_order_by - pokemon_v2_moves_aggregate: pokemon_v2_move_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_contesttype" -""" -enum pokemon_v2_contesttype_select_column { - """column name""" - id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_contesttype_stddev_fields { - id: Float -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_contesttype_stddev_pop_fields { - id: Float -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_contesttype_stddev_samp_fields { - id: Float -} - -""" -Streaming cursor of the table "pokemon_v2_contesttype" -""" -input pokemon_v2_contesttype_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_contesttype_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_contesttype_stream_cursor_value_input { - id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_contesttype_sum_fields { - id: Int -} - -"""aggregate var_pop on columns""" -type pokemon_v2_contesttype_var_pop_fields { - id: Float -} - -"""aggregate var_samp on columns""" -type pokemon_v2_contesttype_var_samp_fields { - id: Float -} - -"""aggregate variance on columns""" -type pokemon_v2_contesttype_variance_fields { - id: Float -} - -""" -columns and relationships of "pokemon_v2_contesttypename" -""" -type pokemon_v2_contesttypename { - color: String! - contest_type_id: Int - flavor: String! - id: Int! - language_id: Int - name: String! - - """An object relationship""" - pokemon_v2_contesttype: pokemon_v2_contesttype - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language -} - -""" -aggregated selection of "pokemon_v2_contesttypename" -""" -type pokemon_v2_contesttypename_aggregate { - aggregate: pokemon_v2_contesttypename_aggregate_fields - nodes: [pokemon_v2_contesttypename!]! -} - -input pokemon_v2_contesttypename_aggregate_bool_exp { - count: pokemon_v2_contesttypename_aggregate_bool_exp_count -} - -input pokemon_v2_contesttypename_aggregate_bool_exp_count { - arguments: [pokemon_v2_contesttypename_select_column!] - distinct: Boolean - filter: pokemon_v2_contesttypename_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_contesttypename" -""" -type pokemon_v2_contesttypename_aggregate_fields { - avg: pokemon_v2_contesttypename_avg_fields - count(columns: [pokemon_v2_contesttypename_select_column!], distinct: Boolean): Int! - max: pokemon_v2_contesttypename_max_fields - min: pokemon_v2_contesttypename_min_fields - stddev: pokemon_v2_contesttypename_stddev_fields - stddev_pop: pokemon_v2_contesttypename_stddev_pop_fields - stddev_samp: pokemon_v2_contesttypename_stddev_samp_fields - sum: pokemon_v2_contesttypename_sum_fields - var_pop: pokemon_v2_contesttypename_var_pop_fields - var_samp: pokemon_v2_contesttypename_var_samp_fields - variance: pokemon_v2_contesttypename_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_contesttypename" -""" -input pokemon_v2_contesttypename_aggregate_order_by { - avg: pokemon_v2_contesttypename_avg_order_by - count: order_by - max: pokemon_v2_contesttypename_max_order_by - min: pokemon_v2_contesttypename_min_order_by - stddev: pokemon_v2_contesttypename_stddev_order_by - stddev_pop: pokemon_v2_contesttypename_stddev_pop_order_by - stddev_samp: pokemon_v2_contesttypename_stddev_samp_order_by - sum: pokemon_v2_contesttypename_sum_order_by - var_pop: pokemon_v2_contesttypename_var_pop_order_by - var_samp: pokemon_v2_contesttypename_var_samp_order_by - variance: pokemon_v2_contesttypename_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_contesttypename_avg_fields { - contest_type_id: Float - id: Float - language_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_contesttypename" -""" -input pokemon_v2_contesttypename_avg_order_by { - contest_type_id: order_by - id: order_by - language_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_contesttypename". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_contesttypename_bool_exp { - _and: [pokemon_v2_contesttypename_bool_exp!] - _not: pokemon_v2_contesttypename_bool_exp - _or: [pokemon_v2_contesttypename_bool_exp!] - color: String_comparison_exp - contest_type_id: Int_comparison_exp - flavor: String_comparison_exp - id: Int_comparison_exp - language_id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_contesttype: pokemon_v2_contesttype_bool_exp - pokemon_v2_language: pokemon_v2_language_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_contesttypename_max_fields { - color: String - contest_type_id: Int - flavor: String - id: Int - language_id: Int - name: String -} - -""" -order by max() on columns of table "pokemon_v2_contesttypename" -""" -input pokemon_v2_contesttypename_max_order_by { - color: order_by - contest_type_id: order_by - flavor: order_by - id: order_by - language_id: order_by - name: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_contesttypename_min_fields { - color: String - contest_type_id: Int - flavor: String - id: Int - language_id: Int - name: String -} - -""" -order by min() on columns of table "pokemon_v2_contesttypename" -""" -input pokemon_v2_contesttypename_min_order_by { - color: order_by - contest_type_id: order_by - flavor: order_by - id: order_by - language_id: order_by - name: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_contesttypename". -""" -input pokemon_v2_contesttypename_order_by { - color: order_by - contest_type_id: order_by - flavor: order_by - id: order_by - language_id: order_by - name: order_by - pokemon_v2_contesttype: pokemon_v2_contesttype_order_by - pokemon_v2_language: pokemon_v2_language_order_by -} - -""" -select columns of table "pokemon_v2_contesttypename" -""" -enum pokemon_v2_contesttypename_select_column { - """column name""" - color - - """column name""" - contest_type_id - - """column name""" - flavor - - """column name""" - id - - """column name""" - language_id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_contesttypename_stddev_fields { - contest_type_id: Float - id: Float - language_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_contesttypename" -""" -input pokemon_v2_contesttypename_stddev_order_by { - contest_type_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_contesttypename_stddev_pop_fields { - contest_type_id: Float - id: Float - language_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_contesttypename" -""" -input pokemon_v2_contesttypename_stddev_pop_order_by { - contest_type_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_contesttypename_stddev_samp_fields { - contest_type_id: Float - id: Float - language_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_contesttypename" -""" -input pokemon_v2_contesttypename_stddev_samp_order_by { - contest_type_id: order_by - id: order_by - language_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_contesttypename" -""" -input pokemon_v2_contesttypename_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_contesttypename_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_contesttypename_stream_cursor_value_input { - color: String - contest_type_id: Int - flavor: String - id: Int - language_id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_contesttypename_sum_fields { - contest_type_id: Int - id: Int - language_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_contesttypename" -""" -input pokemon_v2_contesttypename_sum_order_by { - contest_type_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_contesttypename_var_pop_fields { - contest_type_id: Float - id: Float - language_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_contesttypename" -""" -input pokemon_v2_contesttypename_var_pop_order_by { - contest_type_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_contesttypename_var_samp_fields { - contest_type_id: Float - id: Float - language_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_contesttypename" -""" -input pokemon_v2_contesttypename_var_samp_order_by { - contest_type_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_contesttypename_variance_fields { - contest_type_id: Float - id: Float - language_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_contesttypename" -""" -input pokemon_v2_contesttypename_variance_order_by { - contest_type_id: order_by - id: order_by - language_id: order_by -} - -""" -columns and relationships of "pokemon_v2_egggroup" -""" -type pokemon_v2_egggroup { - id: Int! - name: String! - - """An array relationship""" - pokemon_v2_egggroupnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_egggroupname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_egggroupname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_egggroupname_bool_exp - ): [pokemon_v2_egggroupname!]! - - """An aggregate relationship""" - pokemon_v2_egggroupnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_egggroupname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_egggroupname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_egggroupname_bool_exp - ): pokemon_v2_egggroupname_aggregate! - - """An array relationship""" - pokemon_v2_pokemonegggroups( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonegggroup_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonegggroup_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonegggroup_bool_exp - ): [pokemon_v2_pokemonegggroup!]! - - """An aggregate relationship""" - pokemon_v2_pokemonegggroups_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonegggroup_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonegggroup_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonegggroup_bool_exp - ): pokemon_v2_pokemonegggroup_aggregate! -} - -""" -aggregated selection of "pokemon_v2_egggroup" -""" -type pokemon_v2_egggroup_aggregate { - aggregate: pokemon_v2_egggroup_aggregate_fields - nodes: [pokemon_v2_egggroup!]! -} - -""" -aggregate fields of "pokemon_v2_egggroup" -""" -type pokemon_v2_egggroup_aggregate_fields { - avg: pokemon_v2_egggroup_avg_fields - count(columns: [pokemon_v2_egggroup_select_column!], distinct: Boolean): Int! - max: pokemon_v2_egggroup_max_fields - min: pokemon_v2_egggroup_min_fields - stddev: pokemon_v2_egggroup_stddev_fields - stddev_pop: pokemon_v2_egggroup_stddev_pop_fields - stddev_samp: pokemon_v2_egggroup_stddev_samp_fields - sum: pokemon_v2_egggroup_sum_fields - var_pop: pokemon_v2_egggroup_var_pop_fields - var_samp: pokemon_v2_egggroup_var_samp_fields - variance: pokemon_v2_egggroup_variance_fields -} - -"""aggregate avg on columns""" -type pokemon_v2_egggroup_avg_fields { - id: Float -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_egggroup". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_egggroup_bool_exp { - _and: [pokemon_v2_egggroup_bool_exp!] - _not: pokemon_v2_egggroup_bool_exp - _or: [pokemon_v2_egggroup_bool_exp!] - id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_egggroupnames: pokemon_v2_egggroupname_bool_exp - pokemon_v2_egggroupnames_aggregate: pokemon_v2_egggroupname_aggregate_bool_exp - pokemon_v2_pokemonegggroups: pokemon_v2_pokemonegggroup_bool_exp - pokemon_v2_pokemonegggroups_aggregate: pokemon_v2_pokemonegggroup_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_egggroup_max_fields { - id: Int - name: String -} - -"""aggregate min on columns""" -type pokemon_v2_egggroup_min_fields { - id: Int - name: String -} - -"""Ordering options when selecting data from "pokemon_v2_egggroup".""" -input pokemon_v2_egggroup_order_by { - id: order_by - name: order_by - pokemon_v2_egggroupnames_aggregate: pokemon_v2_egggroupname_aggregate_order_by - pokemon_v2_pokemonegggroups_aggregate: pokemon_v2_pokemonegggroup_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_egggroup" -""" -enum pokemon_v2_egggroup_select_column { - """column name""" - id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_egggroup_stddev_fields { - id: Float -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_egggroup_stddev_pop_fields { - id: Float -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_egggroup_stddev_samp_fields { - id: Float -} - -""" -Streaming cursor of the table "pokemon_v2_egggroup" -""" -input pokemon_v2_egggroup_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_egggroup_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_egggroup_stream_cursor_value_input { - id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_egggroup_sum_fields { - id: Int -} - -"""aggregate var_pop on columns""" -type pokemon_v2_egggroup_var_pop_fields { - id: Float -} - -"""aggregate var_samp on columns""" -type pokemon_v2_egggroup_var_samp_fields { - id: Float -} - -"""aggregate variance on columns""" -type pokemon_v2_egggroup_variance_fields { - id: Float -} - -""" -columns and relationships of "pokemon_v2_egggroupname" -""" -type pokemon_v2_egggroupname { - egg_group_id: Int - id: Int! - language_id: Int - name: String! - - """An object relationship""" - pokemon_v2_egggroup: pokemon_v2_egggroup - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language -} - -""" -aggregated selection of "pokemon_v2_egggroupname" -""" -type pokemon_v2_egggroupname_aggregate { - aggregate: pokemon_v2_egggroupname_aggregate_fields - nodes: [pokemon_v2_egggroupname!]! -} - -input pokemon_v2_egggroupname_aggregate_bool_exp { - count: pokemon_v2_egggroupname_aggregate_bool_exp_count -} - -input pokemon_v2_egggroupname_aggregate_bool_exp_count { - arguments: [pokemon_v2_egggroupname_select_column!] - distinct: Boolean - filter: pokemon_v2_egggroupname_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_egggroupname" -""" -type pokemon_v2_egggroupname_aggregate_fields { - avg: pokemon_v2_egggroupname_avg_fields - count(columns: [pokemon_v2_egggroupname_select_column!], distinct: Boolean): Int! - max: pokemon_v2_egggroupname_max_fields - min: pokemon_v2_egggroupname_min_fields - stddev: pokemon_v2_egggroupname_stddev_fields - stddev_pop: pokemon_v2_egggroupname_stddev_pop_fields - stddev_samp: pokemon_v2_egggroupname_stddev_samp_fields - sum: pokemon_v2_egggroupname_sum_fields - var_pop: pokemon_v2_egggroupname_var_pop_fields - var_samp: pokemon_v2_egggroupname_var_samp_fields - variance: pokemon_v2_egggroupname_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_egggroupname" -""" -input pokemon_v2_egggroupname_aggregate_order_by { - avg: pokemon_v2_egggroupname_avg_order_by - count: order_by - max: pokemon_v2_egggroupname_max_order_by - min: pokemon_v2_egggroupname_min_order_by - stddev: pokemon_v2_egggroupname_stddev_order_by - stddev_pop: pokemon_v2_egggroupname_stddev_pop_order_by - stddev_samp: pokemon_v2_egggroupname_stddev_samp_order_by - sum: pokemon_v2_egggroupname_sum_order_by - var_pop: pokemon_v2_egggroupname_var_pop_order_by - var_samp: pokemon_v2_egggroupname_var_samp_order_by - variance: pokemon_v2_egggroupname_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_egggroupname_avg_fields { - egg_group_id: Float - id: Float - language_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_egggroupname" -""" -input pokemon_v2_egggroupname_avg_order_by { - egg_group_id: order_by - id: order_by - language_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_egggroupname". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_egggroupname_bool_exp { - _and: [pokemon_v2_egggroupname_bool_exp!] - _not: pokemon_v2_egggroupname_bool_exp - _or: [pokemon_v2_egggroupname_bool_exp!] - egg_group_id: Int_comparison_exp - id: Int_comparison_exp - language_id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_egggroup: pokemon_v2_egggroup_bool_exp - pokemon_v2_language: pokemon_v2_language_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_egggroupname_max_fields { - egg_group_id: Int - id: Int - language_id: Int - name: String -} - -""" -order by max() on columns of table "pokemon_v2_egggroupname" -""" -input pokemon_v2_egggroupname_max_order_by { - egg_group_id: order_by - id: order_by - language_id: order_by - name: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_egggroupname_min_fields { - egg_group_id: Int - id: Int - language_id: Int - name: String -} - -""" -order by min() on columns of table "pokemon_v2_egggroupname" -""" -input pokemon_v2_egggroupname_min_order_by { - egg_group_id: order_by - id: order_by - language_id: order_by - name: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_egggroupname".""" -input pokemon_v2_egggroupname_order_by { - egg_group_id: order_by - id: order_by - language_id: order_by - name: order_by - pokemon_v2_egggroup: pokemon_v2_egggroup_order_by - pokemon_v2_language: pokemon_v2_language_order_by -} - -""" -select columns of table "pokemon_v2_egggroupname" -""" -enum pokemon_v2_egggroupname_select_column { - """column name""" - egg_group_id - - """column name""" - id - - """column name""" - language_id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_egggroupname_stddev_fields { - egg_group_id: Float - id: Float - language_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_egggroupname" -""" -input pokemon_v2_egggroupname_stddev_order_by { - egg_group_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_egggroupname_stddev_pop_fields { - egg_group_id: Float - id: Float - language_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_egggroupname" -""" -input pokemon_v2_egggroupname_stddev_pop_order_by { - egg_group_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_egggroupname_stddev_samp_fields { - egg_group_id: Float - id: Float - language_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_egggroupname" -""" -input pokemon_v2_egggroupname_stddev_samp_order_by { - egg_group_id: order_by - id: order_by - language_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_egggroupname" -""" -input pokemon_v2_egggroupname_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_egggroupname_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_egggroupname_stream_cursor_value_input { - egg_group_id: Int - id: Int - language_id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_egggroupname_sum_fields { - egg_group_id: Int - id: Int - language_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_egggroupname" -""" -input pokemon_v2_egggroupname_sum_order_by { - egg_group_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_egggroupname_var_pop_fields { - egg_group_id: Float - id: Float - language_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_egggroupname" -""" -input pokemon_v2_egggroupname_var_pop_order_by { - egg_group_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_egggroupname_var_samp_fields { - egg_group_id: Float - id: Float - language_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_egggroupname" -""" -input pokemon_v2_egggroupname_var_samp_order_by { - egg_group_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_egggroupname_variance_fields { - egg_group_id: Float - id: Float - language_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_egggroupname" -""" -input pokemon_v2_egggroupname_variance_order_by { - egg_group_id: order_by - id: order_by - language_id: order_by -} - -""" -columns and relationships of "pokemon_v2_encounter" -""" -type pokemon_v2_encounter { - encounter_slot_id: Int - id: Int! - location_area_id: Int - max_level: Int! - min_level: Int! - pokemon_id: Int - - """An array relationship""" - pokemon_v2_encounterconditionvaluemaps( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterconditionvaluemap_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterconditionvaluemap_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterconditionvaluemap_bool_exp - ): [pokemon_v2_encounterconditionvaluemap!]! - - """An aggregate relationship""" - pokemon_v2_encounterconditionvaluemaps_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterconditionvaluemap_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterconditionvaluemap_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterconditionvaluemap_bool_exp - ): pokemon_v2_encounterconditionvaluemap_aggregate! - - """An object relationship""" - pokemon_v2_encounterslot: pokemon_v2_encounterslot - - """An object relationship""" - pokemon_v2_locationarea: pokemon_v2_locationarea - - """An object relationship""" - pokemon_v2_pokemon: pokemon_v2_pokemon - - """An object relationship""" - pokemon_v2_version: pokemon_v2_version - version_id: Int -} - -""" -aggregated selection of "pokemon_v2_encounter" -""" -type pokemon_v2_encounter_aggregate { - aggregate: pokemon_v2_encounter_aggregate_fields - nodes: [pokemon_v2_encounter!]! -} - -input pokemon_v2_encounter_aggregate_bool_exp { - count: pokemon_v2_encounter_aggregate_bool_exp_count -} - -input pokemon_v2_encounter_aggregate_bool_exp_count { - arguments: [pokemon_v2_encounter_select_column!] - distinct: Boolean - filter: pokemon_v2_encounter_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_encounter" -""" -type pokemon_v2_encounter_aggregate_fields { - avg: pokemon_v2_encounter_avg_fields - count(columns: [pokemon_v2_encounter_select_column!], distinct: Boolean): Int! - max: pokemon_v2_encounter_max_fields - min: pokemon_v2_encounter_min_fields - stddev: pokemon_v2_encounter_stddev_fields - stddev_pop: pokemon_v2_encounter_stddev_pop_fields - stddev_samp: pokemon_v2_encounter_stddev_samp_fields - sum: pokemon_v2_encounter_sum_fields - var_pop: pokemon_v2_encounter_var_pop_fields - var_samp: pokemon_v2_encounter_var_samp_fields - variance: pokemon_v2_encounter_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_encounter" -""" -input pokemon_v2_encounter_aggregate_order_by { - avg: pokemon_v2_encounter_avg_order_by - count: order_by - max: pokemon_v2_encounter_max_order_by - min: pokemon_v2_encounter_min_order_by - stddev: pokemon_v2_encounter_stddev_order_by - stddev_pop: pokemon_v2_encounter_stddev_pop_order_by - stddev_samp: pokemon_v2_encounter_stddev_samp_order_by - sum: pokemon_v2_encounter_sum_order_by - var_pop: pokemon_v2_encounter_var_pop_order_by - var_samp: pokemon_v2_encounter_var_samp_order_by - variance: pokemon_v2_encounter_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_encounter_avg_fields { - encounter_slot_id: Float - id: Float - location_area_id: Float - max_level: Float - min_level: Float - pokemon_id: Float - version_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_encounter" -""" -input pokemon_v2_encounter_avg_order_by { - encounter_slot_id: order_by - id: order_by - location_area_id: order_by - max_level: order_by - min_level: order_by - pokemon_id: order_by - version_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_encounter". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_encounter_bool_exp { - _and: [pokemon_v2_encounter_bool_exp!] - _not: pokemon_v2_encounter_bool_exp - _or: [pokemon_v2_encounter_bool_exp!] - encounter_slot_id: Int_comparison_exp - id: Int_comparison_exp - location_area_id: Int_comparison_exp - max_level: Int_comparison_exp - min_level: Int_comparison_exp - pokemon_id: Int_comparison_exp - pokemon_v2_encounterconditionvaluemaps: pokemon_v2_encounterconditionvaluemap_bool_exp - pokemon_v2_encounterconditionvaluemaps_aggregate: pokemon_v2_encounterconditionvaluemap_aggregate_bool_exp - pokemon_v2_encounterslot: pokemon_v2_encounterslot_bool_exp - pokemon_v2_locationarea: pokemon_v2_locationarea_bool_exp - pokemon_v2_pokemon: pokemon_v2_pokemon_bool_exp - pokemon_v2_version: pokemon_v2_version_bool_exp - version_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_encounter_max_fields { - encounter_slot_id: Int - id: Int - location_area_id: Int - max_level: Int - min_level: Int - pokemon_id: Int - version_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_encounter" -""" -input pokemon_v2_encounter_max_order_by { - encounter_slot_id: order_by - id: order_by - location_area_id: order_by - max_level: order_by - min_level: order_by - pokemon_id: order_by - version_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_encounter_min_fields { - encounter_slot_id: Int - id: Int - location_area_id: Int - max_level: Int - min_level: Int - pokemon_id: Int - version_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_encounter" -""" -input pokemon_v2_encounter_min_order_by { - encounter_slot_id: order_by - id: order_by - location_area_id: order_by - max_level: order_by - min_level: order_by - pokemon_id: order_by - version_id: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_encounter".""" -input pokemon_v2_encounter_order_by { - encounter_slot_id: order_by - id: order_by - location_area_id: order_by - max_level: order_by - min_level: order_by - pokemon_id: order_by - pokemon_v2_encounterconditionvaluemaps_aggregate: pokemon_v2_encounterconditionvaluemap_aggregate_order_by - pokemon_v2_encounterslot: pokemon_v2_encounterslot_order_by - pokemon_v2_locationarea: pokemon_v2_locationarea_order_by - pokemon_v2_pokemon: pokemon_v2_pokemon_order_by - pokemon_v2_version: pokemon_v2_version_order_by - version_id: order_by -} - -""" -select columns of table "pokemon_v2_encounter" -""" -enum pokemon_v2_encounter_select_column { - """column name""" - encounter_slot_id - - """column name""" - id - - """column name""" - location_area_id - - """column name""" - max_level - - """column name""" - min_level - - """column name""" - pokemon_id - - """column name""" - version_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_encounter_stddev_fields { - encounter_slot_id: Float - id: Float - location_area_id: Float - max_level: Float - min_level: Float - pokemon_id: Float - version_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_encounter" -""" -input pokemon_v2_encounter_stddev_order_by { - encounter_slot_id: order_by - id: order_by - location_area_id: order_by - max_level: order_by - min_level: order_by - pokemon_id: order_by - version_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_encounter_stddev_pop_fields { - encounter_slot_id: Float - id: Float - location_area_id: Float - max_level: Float - min_level: Float - pokemon_id: Float - version_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_encounter" -""" -input pokemon_v2_encounter_stddev_pop_order_by { - encounter_slot_id: order_by - id: order_by - location_area_id: order_by - max_level: order_by - min_level: order_by - pokemon_id: order_by - version_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_encounter_stddev_samp_fields { - encounter_slot_id: Float - id: Float - location_area_id: Float - max_level: Float - min_level: Float - pokemon_id: Float - version_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_encounter" -""" -input pokemon_v2_encounter_stddev_samp_order_by { - encounter_slot_id: order_by - id: order_by - location_area_id: order_by - max_level: order_by - min_level: order_by - pokemon_id: order_by - version_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_encounter" -""" -input pokemon_v2_encounter_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_encounter_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_encounter_stream_cursor_value_input { - encounter_slot_id: Int - id: Int - location_area_id: Int - max_level: Int - min_level: Int - pokemon_id: Int - version_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_encounter_sum_fields { - encounter_slot_id: Int - id: Int - location_area_id: Int - max_level: Int - min_level: Int - pokemon_id: Int - version_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_encounter" -""" -input pokemon_v2_encounter_sum_order_by { - encounter_slot_id: order_by - id: order_by - location_area_id: order_by - max_level: order_by - min_level: order_by - pokemon_id: order_by - version_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_encounter_var_pop_fields { - encounter_slot_id: Float - id: Float - location_area_id: Float - max_level: Float - min_level: Float - pokemon_id: Float - version_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_encounter" -""" -input pokemon_v2_encounter_var_pop_order_by { - encounter_slot_id: order_by - id: order_by - location_area_id: order_by - max_level: order_by - min_level: order_by - pokemon_id: order_by - version_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_encounter_var_samp_fields { - encounter_slot_id: Float - id: Float - location_area_id: Float - max_level: Float - min_level: Float - pokemon_id: Float - version_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_encounter" -""" -input pokemon_v2_encounter_var_samp_order_by { - encounter_slot_id: order_by - id: order_by - location_area_id: order_by - max_level: order_by - min_level: order_by - pokemon_id: order_by - version_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_encounter_variance_fields { - encounter_slot_id: Float - id: Float - location_area_id: Float - max_level: Float - min_level: Float - pokemon_id: Float - version_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_encounter" -""" -input pokemon_v2_encounter_variance_order_by { - encounter_slot_id: order_by - id: order_by - location_area_id: order_by - max_level: order_by - min_level: order_by - pokemon_id: order_by - version_id: order_by -} - -""" -columns and relationships of "pokemon_v2_encountercondition" -""" -type pokemon_v2_encountercondition { - id: Int! - name: String! - - """An array relationship""" - pokemon_v2_encounterconditionnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterconditionname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterconditionname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterconditionname_bool_exp - ): [pokemon_v2_encounterconditionname!]! - - """An aggregate relationship""" - pokemon_v2_encounterconditionnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterconditionname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterconditionname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterconditionname_bool_exp - ): pokemon_v2_encounterconditionname_aggregate! - - """An array relationship""" - pokemon_v2_encounterconditionvalues( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterconditionvalue_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterconditionvalue_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterconditionvalue_bool_exp - ): [pokemon_v2_encounterconditionvalue!]! - - """An aggregate relationship""" - pokemon_v2_encounterconditionvalues_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterconditionvalue_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterconditionvalue_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterconditionvalue_bool_exp - ): pokemon_v2_encounterconditionvalue_aggregate! -} - -""" -aggregated selection of "pokemon_v2_encountercondition" -""" -type pokemon_v2_encountercondition_aggregate { - aggregate: pokemon_v2_encountercondition_aggregate_fields - nodes: [pokemon_v2_encountercondition!]! -} - -""" -aggregate fields of "pokemon_v2_encountercondition" -""" -type pokemon_v2_encountercondition_aggregate_fields { - avg: pokemon_v2_encountercondition_avg_fields - count(columns: [pokemon_v2_encountercondition_select_column!], distinct: Boolean): Int! - max: pokemon_v2_encountercondition_max_fields - min: pokemon_v2_encountercondition_min_fields - stddev: pokemon_v2_encountercondition_stddev_fields - stddev_pop: pokemon_v2_encountercondition_stddev_pop_fields - stddev_samp: pokemon_v2_encountercondition_stddev_samp_fields - sum: pokemon_v2_encountercondition_sum_fields - var_pop: pokemon_v2_encountercondition_var_pop_fields - var_samp: pokemon_v2_encountercondition_var_samp_fields - variance: pokemon_v2_encountercondition_variance_fields -} - -"""aggregate avg on columns""" -type pokemon_v2_encountercondition_avg_fields { - id: Float -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_encountercondition". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_encountercondition_bool_exp { - _and: [pokemon_v2_encountercondition_bool_exp!] - _not: pokemon_v2_encountercondition_bool_exp - _or: [pokemon_v2_encountercondition_bool_exp!] - id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_encounterconditionnames: pokemon_v2_encounterconditionname_bool_exp - pokemon_v2_encounterconditionnames_aggregate: pokemon_v2_encounterconditionname_aggregate_bool_exp - pokemon_v2_encounterconditionvalues: pokemon_v2_encounterconditionvalue_bool_exp - pokemon_v2_encounterconditionvalues_aggregate: pokemon_v2_encounterconditionvalue_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_encountercondition_max_fields { - id: Int - name: String -} - -"""aggregate min on columns""" -type pokemon_v2_encountercondition_min_fields { - id: Int - name: String -} - -""" -Ordering options when selecting data from "pokemon_v2_encountercondition". -""" -input pokemon_v2_encountercondition_order_by { - id: order_by - name: order_by - pokemon_v2_encounterconditionnames_aggregate: pokemon_v2_encounterconditionname_aggregate_order_by - pokemon_v2_encounterconditionvalues_aggregate: pokemon_v2_encounterconditionvalue_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_encountercondition" -""" -enum pokemon_v2_encountercondition_select_column { - """column name""" - id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_encountercondition_stddev_fields { - id: Float -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_encountercondition_stddev_pop_fields { - id: Float -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_encountercondition_stddev_samp_fields { - id: Float -} - -""" -Streaming cursor of the table "pokemon_v2_encountercondition" -""" -input pokemon_v2_encountercondition_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_encountercondition_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_encountercondition_stream_cursor_value_input { - id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_encountercondition_sum_fields { - id: Int -} - -"""aggregate var_pop on columns""" -type pokemon_v2_encountercondition_var_pop_fields { - id: Float -} - -"""aggregate var_samp on columns""" -type pokemon_v2_encountercondition_var_samp_fields { - id: Float -} - -"""aggregate variance on columns""" -type pokemon_v2_encountercondition_variance_fields { - id: Float -} - -""" -columns and relationships of "pokemon_v2_encounterconditionname" -""" -type pokemon_v2_encounterconditionname { - encounter_condition_id: Int - id: Int! - language_id: Int - name: String! - - """An object relationship""" - pokemon_v2_encountercondition: pokemon_v2_encountercondition - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language -} - -""" -aggregated selection of "pokemon_v2_encounterconditionname" -""" -type pokemon_v2_encounterconditionname_aggregate { - aggregate: pokemon_v2_encounterconditionname_aggregate_fields - nodes: [pokemon_v2_encounterconditionname!]! -} - -input pokemon_v2_encounterconditionname_aggregate_bool_exp { - count: pokemon_v2_encounterconditionname_aggregate_bool_exp_count -} - -input pokemon_v2_encounterconditionname_aggregate_bool_exp_count { - arguments: [pokemon_v2_encounterconditionname_select_column!] - distinct: Boolean - filter: pokemon_v2_encounterconditionname_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_encounterconditionname" -""" -type pokemon_v2_encounterconditionname_aggregate_fields { - avg: pokemon_v2_encounterconditionname_avg_fields - count(columns: [pokemon_v2_encounterconditionname_select_column!], distinct: Boolean): Int! - max: pokemon_v2_encounterconditionname_max_fields - min: pokemon_v2_encounterconditionname_min_fields - stddev: pokemon_v2_encounterconditionname_stddev_fields - stddev_pop: pokemon_v2_encounterconditionname_stddev_pop_fields - stddev_samp: pokemon_v2_encounterconditionname_stddev_samp_fields - sum: pokemon_v2_encounterconditionname_sum_fields - var_pop: pokemon_v2_encounterconditionname_var_pop_fields - var_samp: pokemon_v2_encounterconditionname_var_samp_fields - variance: pokemon_v2_encounterconditionname_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_encounterconditionname" -""" -input pokemon_v2_encounterconditionname_aggregate_order_by { - avg: pokemon_v2_encounterconditionname_avg_order_by - count: order_by - max: pokemon_v2_encounterconditionname_max_order_by - min: pokemon_v2_encounterconditionname_min_order_by - stddev: pokemon_v2_encounterconditionname_stddev_order_by - stddev_pop: pokemon_v2_encounterconditionname_stddev_pop_order_by - stddev_samp: pokemon_v2_encounterconditionname_stddev_samp_order_by - sum: pokemon_v2_encounterconditionname_sum_order_by - var_pop: pokemon_v2_encounterconditionname_var_pop_order_by - var_samp: pokemon_v2_encounterconditionname_var_samp_order_by - variance: pokemon_v2_encounterconditionname_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_encounterconditionname_avg_fields { - encounter_condition_id: Float - id: Float - language_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_encounterconditionname" -""" -input pokemon_v2_encounterconditionname_avg_order_by { - encounter_condition_id: order_by - id: order_by - language_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_encounterconditionname". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_encounterconditionname_bool_exp { - _and: [pokemon_v2_encounterconditionname_bool_exp!] - _not: pokemon_v2_encounterconditionname_bool_exp - _or: [pokemon_v2_encounterconditionname_bool_exp!] - encounter_condition_id: Int_comparison_exp - id: Int_comparison_exp - language_id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_encountercondition: pokemon_v2_encountercondition_bool_exp - pokemon_v2_language: pokemon_v2_language_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_encounterconditionname_max_fields { - encounter_condition_id: Int - id: Int - language_id: Int - name: String -} - -""" -order by max() on columns of table "pokemon_v2_encounterconditionname" -""" -input pokemon_v2_encounterconditionname_max_order_by { - encounter_condition_id: order_by - id: order_by - language_id: order_by - name: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_encounterconditionname_min_fields { - encounter_condition_id: Int - id: Int - language_id: Int - name: String -} - -""" -order by min() on columns of table "pokemon_v2_encounterconditionname" -""" -input pokemon_v2_encounterconditionname_min_order_by { - encounter_condition_id: order_by - id: order_by - language_id: order_by - name: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_encounterconditionname". -""" -input pokemon_v2_encounterconditionname_order_by { - encounter_condition_id: order_by - id: order_by - language_id: order_by - name: order_by - pokemon_v2_encountercondition: pokemon_v2_encountercondition_order_by - pokemon_v2_language: pokemon_v2_language_order_by -} - -""" -select columns of table "pokemon_v2_encounterconditionname" -""" -enum pokemon_v2_encounterconditionname_select_column { - """column name""" - encounter_condition_id - - """column name""" - id - - """column name""" - language_id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_encounterconditionname_stddev_fields { - encounter_condition_id: Float - id: Float - language_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_encounterconditionname" -""" -input pokemon_v2_encounterconditionname_stddev_order_by { - encounter_condition_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_encounterconditionname_stddev_pop_fields { - encounter_condition_id: Float - id: Float - language_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_encounterconditionname" -""" -input pokemon_v2_encounterconditionname_stddev_pop_order_by { - encounter_condition_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_encounterconditionname_stddev_samp_fields { - encounter_condition_id: Float - id: Float - language_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_encounterconditionname" -""" -input pokemon_v2_encounterconditionname_stddev_samp_order_by { - encounter_condition_id: order_by - id: order_by - language_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_encounterconditionname" -""" -input pokemon_v2_encounterconditionname_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_encounterconditionname_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_encounterconditionname_stream_cursor_value_input { - encounter_condition_id: Int - id: Int - language_id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_encounterconditionname_sum_fields { - encounter_condition_id: Int - id: Int - language_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_encounterconditionname" -""" -input pokemon_v2_encounterconditionname_sum_order_by { - encounter_condition_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_encounterconditionname_var_pop_fields { - encounter_condition_id: Float - id: Float - language_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_encounterconditionname" -""" -input pokemon_v2_encounterconditionname_var_pop_order_by { - encounter_condition_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_encounterconditionname_var_samp_fields { - encounter_condition_id: Float - id: Float - language_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_encounterconditionname" -""" -input pokemon_v2_encounterconditionname_var_samp_order_by { - encounter_condition_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_encounterconditionname_variance_fields { - encounter_condition_id: Float - id: Float - language_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_encounterconditionname" -""" -input pokemon_v2_encounterconditionname_variance_order_by { - encounter_condition_id: order_by - id: order_by - language_id: order_by -} - -""" -columns and relationships of "pokemon_v2_encounterconditionvalue" -""" -type pokemon_v2_encounterconditionvalue { - encounter_condition_id: Int - id: Int! - is_default: Boolean! - name: String! - - """An object relationship""" - pokemon_v2_encountercondition: pokemon_v2_encountercondition - - """An array relationship""" - pokemon_v2_encounterconditionvaluemaps( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterconditionvaluemap_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterconditionvaluemap_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterconditionvaluemap_bool_exp - ): [pokemon_v2_encounterconditionvaluemap!]! - - """An aggregate relationship""" - pokemon_v2_encounterconditionvaluemaps_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterconditionvaluemap_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterconditionvaluemap_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterconditionvaluemap_bool_exp - ): pokemon_v2_encounterconditionvaluemap_aggregate! - - """An array relationship""" - pokemon_v2_encounterconditionvaluenames( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterconditionvaluename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterconditionvaluename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterconditionvaluename_bool_exp - ): [pokemon_v2_encounterconditionvaluename!]! - - """An aggregate relationship""" - pokemon_v2_encounterconditionvaluenames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterconditionvaluename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterconditionvaluename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterconditionvaluename_bool_exp - ): pokemon_v2_encounterconditionvaluename_aggregate! -} - -""" -aggregated selection of "pokemon_v2_encounterconditionvalue" -""" -type pokemon_v2_encounterconditionvalue_aggregate { - aggregate: pokemon_v2_encounterconditionvalue_aggregate_fields - nodes: [pokemon_v2_encounterconditionvalue!]! -} - -input pokemon_v2_encounterconditionvalue_aggregate_bool_exp { - bool_and: pokemon_v2_encounterconditionvalue_aggregate_bool_exp_bool_and - bool_or: pokemon_v2_encounterconditionvalue_aggregate_bool_exp_bool_or - count: pokemon_v2_encounterconditionvalue_aggregate_bool_exp_count -} - -input pokemon_v2_encounterconditionvalue_aggregate_bool_exp_bool_and { - arguments: pokemon_v2_encounterconditionvalue_select_column_pokemon_v2_encounterconditionvalue_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: pokemon_v2_encounterconditionvalue_bool_exp - predicate: Boolean_comparison_exp! -} - -input pokemon_v2_encounterconditionvalue_aggregate_bool_exp_bool_or { - arguments: pokemon_v2_encounterconditionvalue_select_column_pokemon_v2_encounterconditionvalue_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: pokemon_v2_encounterconditionvalue_bool_exp - predicate: Boolean_comparison_exp! -} - -input pokemon_v2_encounterconditionvalue_aggregate_bool_exp_count { - arguments: [pokemon_v2_encounterconditionvalue_select_column!] - distinct: Boolean - filter: pokemon_v2_encounterconditionvalue_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_encounterconditionvalue" -""" -type pokemon_v2_encounterconditionvalue_aggregate_fields { - avg: pokemon_v2_encounterconditionvalue_avg_fields - count(columns: [pokemon_v2_encounterconditionvalue_select_column!], distinct: Boolean): Int! - max: pokemon_v2_encounterconditionvalue_max_fields - min: pokemon_v2_encounterconditionvalue_min_fields - stddev: pokemon_v2_encounterconditionvalue_stddev_fields - stddev_pop: pokemon_v2_encounterconditionvalue_stddev_pop_fields - stddev_samp: pokemon_v2_encounterconditionvalue_stddev_samp_fields - sum: pokemon_v2_encounterconditionvalue_sum_fields - var_pop: pokemon_v2_encounterconditionvalue_var_pop_fields - var_samp: pokemon_v2_encounterconditionvalue_var_samp_fields - variance: pokemon_v2_encounterconditionvalue_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_encounterconditionvalue" -""" -input pokemon_v2_encounterconditionvalue_aggregate_order_by { - avg: pokemon_v2_encounterconditionvalue_avg_order_by - count: order_by - max: pokemon_v2_encounterconditionvalue_max_order_by - min: pokemon_v2_encounterconditionvalue_min_order_by - stddev: pokemon_v2_encounterconditionvalue_stddev_order_by - stddev_pop: pokemon_v2_encounterconditionvalue_stddev_pop_order_by - stddev_samp: pokemon_v2_encounterconditionvalue_stddev_samp_order_by - sum: pokemon_v2_encounterconditionvalue_sum_order_by - var_pop: pokemon_v2_encounterconditionvalue_var_pop_order_by - var_samp: pokemon_v2_encounterconditionvalue_var_samp_order_by - variance: pokemon_v2_encounterconditionvalue_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_encounterconditionvalue_avg_fields { - encounter_condition_id: Float - id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_encounterconditionvalue" -""" -input pokemon_v2_encounterconditionvalue_avg_order_by { - encounter_condition_id: order_by - id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_encounterconditionvalue". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_encounterconditionvalue_bool_exp { - _and: [pokemon_v2_encounterconditionvalue_bool_exp!] - _not: pokemon_v2_encounterconditionvalue_bool_exp - _or: [pokemon_v2_encounterconditionvalue_bool_exp!] - encounter_condition_id: Int_comparison_exp - id: Int_comparison_exp - is_default: Boolean_comparison_exp - name: String_comparison_exp - pokemon_v2_encountercondition: pokemon_v2_encountercondition_bool_exp - pokemon_v2_encounterconditionvaluemaps: pokemon_v2_encounterconditionvaluemap_bool_exp - pokemon_v2_encounterconditionvaluemaps_aggregate: pokemon_v2_encounterconditionvaluemap_aggregate_bool_exp - pokemon_v2_encounterconditionvaluenames: pokemon_v2_encounterconditionvaluename_bool_exp - pokemon_v2_encounterconditionvaluenames_aggregate: pokemon_v2_encounterconditionvaluename_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_encounterconditionvalue_max_fields { - encounter_condition_id: Int - id: Int - name: String -} - -""" -order by max() on columns of table "pokemon_v2_encounterconditionvalue" -""" -input pokemon_v2_encounterconditionvalue_max_order_by { - encounter_condition_id: order_by - id: order_by - name: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_encounterconditionvalue_min_fields { - encounter_condition_id: Int - id: Int - name: String -} - -""" -order by min() on columns of table "pokemon_v2_encounterconditionvalue" -""" -input pokemon_v2_encounterconditionvalue_min_order_by { - encounter_condition_id: order_by - id: order_by - name: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_encounterconditionvalue". -""" -input pokemon_v2_encounterconditionvalue_order_by { - encounter_condition_id: order_by - id: order_by - is_default: order_by - name: order_by - pokemon_v2_encountercondition: pokemon_v2_encountercondition_order_by - pokemon_v2_encounterconditionvaluemaps_aggregate: pokemon_v2_encounterconditionvaluemap_aggregate_order_by - pokemon_v2_encounterconditionvaluenames_aggregate: pokemon_v2_encounterconditionvaluename_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_encounterconditionvalue" -""" -enum pokemon_v2_encounterconditionvalue_select_column { - """column name""" - encounter_condition_id - - """column name""" - id - - """column name""" - is_default - - """column name""" - name -} - -""" -select "pokemon_v2_encounterconditionvalue_aggregate_bool_exp_bool_and_arguments_columns" columns of table "pokemon_v2_encounterconditionvalue" -""" -enum pokemon_v2_encounterconditionvalue_select_column_pokemon_v2_encounterconditionvalue_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - is_default -} - -""" -select "pokemon_v2_encounterconditionvalue_aggregate_bool_exp_bool_or_arguments_columns" columns of table "pokemon_v2_encounterconditionvalue" -""" -enum pokemon_v2_encounterconditionvalue_select_column_pokemon_v2_encounterconditionvalue_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - is_default -} - -"""aggregate stddev on columns""" -type pokemon_v2_encounterconditionvalue_stddev_fields { - encounter_condition_id: Float - id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_encounterconditionvalue" -""" -input pokemon_v2_encounterconditionvalue_stddev_order_by { - encounter_condition_id: order_by - id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_encounterconditionvalue_stddev_pop_fields { - encounter_condition_id: Float - id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_encounterconditionvalue" -""" -input pokemon_v2_encounterconditionvalue_stddev_pop_order_by { - encounter_condition_id: order_by - id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_encounterconditionvalue_stddev_samp_fields { - encounter_condition_id: Float - id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_encounterconditionvalue" -""" -input pokemon_v2_encounterconditionvalue_stddev_samp_order_by { - encounter_condition_id: order_by - id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_encounterconditionvalue" -""" -input pokemon_v2_encounterconditionvalue_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_encounterconditionvalue_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_encounterconditionvalue_stream_cursor_value_input { - encounter_condition_id: Int - id: Int - is_default: Boolean - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_encounterconditionvalue_sum_fields { - encounter_condition_id: Int - id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_encounterconditionvalue" -""" -input pokemon_v2_encounterconditionvalue_sum_order_by { - encounter_condition_id: order_by - id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_encounterconditionvalue_var_pop_fields { - encounter_condition_id: Float - id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_encounterconditionvalue" -""" -input pokemon_v2_encounterconditionvalue_var_pop_order_by { - encounter_condition_id: order_by - id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_encounterconditionvalue_var_samp_fields { - encounter_condition_id: Float - id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_encounterconditionvalue" -""" -input pokemon_v2_encounterconditionvalue_var_samp_order_by { - encounter_condition_id: order_by - id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_encounterconditionvalue_variance_fields { - encounter_condition_id: Float - id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_encounterconditionvalue" -""" -input pokemon_v2_encounterconditionvalue_variance_order_by { - encounter_condition_id: order_by - id: order_by -} - -""" -columns and relationships of "pokemon_v2_encounterconditionvaluemap" -""" -type pokemon_v2_encounterconditionvaluemap { - encounter_condition_value_id: Int - encounter_id: Int - id: Int! - - """An object relationship""" - pokemon_v2_encounter: pokemon_v2_encounter - - """An object relationship""" - pokemon_v2_encounterconditionvalue: pokemon_v2_encounterconditionvalue -} - -""" -aggregated selection of "pokemon_v2_encounterconditionvaluemap" -""" -type pokemon_v2_encounterconditionvaluemap_aggregate { - aggregate: pokemon_v2_encounterconditionvaluemap_aggregate_fields - nodes: [pokemon_v2_encounterconditionvaluemap!]! -} - -input pokemon_v2_encounterconditionvaluemap_aggregate_bool_exp { - count: pokemon_v2_encounterconditionvaluemap_aggregate_bool_exp_count -} - -input pokemon_v2_encounterconditionvaluemap_aggregate_bool_exp_count { - arguments: [pokemon_v2_encounterconditionvaluemap_select_column!] - distinct: Boolean - filter: pokemon_v2_encounterconditionvaluemap_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_encounterconditionvaluemap" -""" -type pokemon_v2_encounterconditionvaluemap_aggregate_fields { - avg: pokemon_v2_encounterconditionvaluemap_avg_fields - count(columns: [pokemon_v2_encounterconditionvaluemap_select_column!], distinct: Boolean): Int! - max: pokemon_v2_encounterconditionvaluemap_max_fields - min: pokemon_v2_encounterconditionvaluemap_min_fields - stddev: pokemon_v2_encounterconditionvaluemap_stddev_fields - stddev_pop: pokemon_v2_encounterconditionvaluemap_stddev_pop_fields - stddev_samp: pokemon_v2_encounterconditionvaluemap_stddev_samp_fields - sum: pokemon_v2_encounterconditionvaluemap_sum_fields - var_pop: pokemon_v2_encounterconditionvaluemap_var_pop_fields - var_samp: pokemon_v2_encounterconditionvaluemap_var_samp_fields - variance: pokemon_v2_encounterconditionvaluemap_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_encounterconditionvaluemap" -""" -input pokemon_v2_encounterconditionvaluemap_aggregate_order_by { - avg: pokemon_v2_encounterconditionvaluemap_avg_order_by - count: order_by - max: pokemon_v2_encounterconditionvaluemap_max_order_by - min: pokemon_v2_encounterconditionvaluemap_min_order_by - stddev: pokemon_v2_encounterconditionvaluemap_stddev_order_by - stddev_pop: pokemon_v2_encounterconditionvaluemap_stddev_pop_order_by - stddev_samp: pokemon_v2_encounterconditionvaluemap_stddev_samp_order_by - sum: pokemon_v2_encounterconditionvaluemap_sum_order_by - var_pop: pokemon_v2_encounterconditionvaluemap_var_pop_order_by - var_samp: pokemon_v2_encounterconditionvaluemap_var_samp_order_by - variance: pokemon_v2_encounterconditionvaluemap_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_encounterconditionvaluemap_avg_fields { - encounter_condition_value_id: Float - encounter_id: Float - id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_encounterconditionvaluemap" -""" -input pokemon_v2_encounterconditionvaluemap_avg_order_by { - encounter_condition_value_id: order_by - encounter_id: order_by - id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_encounterconditionvaluemap". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_encounterconditionvaluemap_bool_exp { - _and: [pokemon_v2_encounterconditionvaluemap_bool_exp!] - _not: pokemon_v2_encounterconditionvaluemap_bool_exp - _or: [pokemon_v2_encounterconditionvaluemap_bool_exp!] - encounter_condition_value_id: Int_comparison_exp - encounter_id: Int_comparison_exp - id: Int_comparison_exp - pokemon_v2_encounter: pokemon_v2_encounter_bool_exp - pokemon_v2_encounterconditionvalue: pokemon_v2_encounterconditionvalue_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_encounterconditionvaluemap_max_fields { - encounter_condition_value_id: Int - encounter_id: Int - id: Int -} - -""" -order by max() on columns of table "pokemon_v2_encounterconditionvaluemap" -""" -input pokemon_v2_encounterconditionvaluemap_max_order_by { - encounter_condition_value_id: order_by - encounter_id: order_by - id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_encounterconditionvaluemap_min_fields { - encounter_condition_value_id: Int - encounter_id: Int - id: Int -} - -""" -order by min() on columns of table "pokemon_v2_encounterconditionvaluemap" -""" -input pokemon_v2_encounterconditionvaluemap_min_order_by { - encounter_condition_value_id: order_by - encounter_id: order_by - id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_encounterconditionvaluemap". -""" -input pokemon_v2_encounterconditionvaluemap_order_by { - encounter_condition_value_id: order_by - encounter_id: order_by - id: order_by - pokemon_v2_encounter: pokemon_v2_encounter_order_by - pokemon_v2_encounterconditionvalue: pokemon_v2_encounterconditionvalue_order_by -} - -""" -select columns of table "pokemon_v2_encounterconditionvaluemap" -""" -enum pokemon_v2_encounterconditionvaluemap_select_column { - """column name""" - encounter_condition_value_id - - """column name""" - encounter_id - - """column name""" - id -} - -"""aggregate stddev on columns""" -type pokemon_v2_encounterconditionvaluemap_stddev_fields { - encounter_condition_value_id: Float - encounter_id: Float - id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_encounterconditionvaluemap" -""" -input pokemon_v2_encounterconditionvaluemap_stddev_order_by { - encounter_condition_value_id: order_by - encounter_id: order_by - id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_encounterconditionvaluemap_stddev_pop_fields { - encounter_condition_value_id: Float - encounter_id: Float - id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_encounterconditionvaluemap" -""" -input pokemon_v2_encounterconditionvaluemap_stddev_pop_order_by { - encounter_condition_value_id: order_by - encounter_id: order_by - id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_encounterconditionvaluemap_stddev_samp_fields { - encounter_condition_value_id: Float - encounter_id: Float - id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_encounterconditionvaluemap" -""" -input pokemon_v2_encounterconditionvaluemap_stddev_samp_order_by { - encounter_condition_value_id: order_by - encounter_id: order_by - id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_encounterconditionvaluemap" -""" -input pokemon_v2_encounterconditionvaluemap_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_encounterconditionvaluemap_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_encounterconditionvaluemap_stream_cursor_value_input { - encounter_condition_value_id: Int - encounter_id: Int - id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_encounterconditionvaluemap_sum_fields { - encounter_condition_value_id: Int - encounter_id: Int - id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_encounterconditionvaluemap" -""" -input pokemon_v2_encounterconditionvaluemap_sum_order_by { - encounter_condition_value_id: order_by - encounter_id: order_by - id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_encounterconditionvaluemap_var_pop_fields { - encounter_condition_value_id: Float - encounter_id: Float - id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_encounterconditionvaluemap" -""" -input pokemon_v2_encounterconditionvaluemap_var_pop_order_by { - encounter_condition_value_id: order_by - encounter_id: order_by - id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_encounterconditionvaluemap_var_samp_fields { - encounter_condition_value_id: Float - encounter_id: Float - id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_encounterconditionvaluemap" -""" -input pokemon_v2_encounterconditionvaluemap_var_samp_order_by { - encounter_condition_value_id: order_by - encounter_id: order_by - id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_encounterconditionvaluemap_variance_fields { - encounter_condition_value_id: Float - encounter_id: Float - id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_encounterconditionvaluemap" -""" -input pokemon_v2_encounterconditionvaluemap_variance_order_by { - encounter_condition_value_id: order_by - encounter_id: order_by - id: order_by -} - -""" -columns and relationships of "pokemon_v2_encounterconditionvaluename" -""" -type pokemon_v2_encounterconditionvaluename { - encounter_condition_value_id: Int - id: Int! - language_id: Int - name: String! - - """An object relationship""" - pokemon_v2_encounterconditionvalue: pokemon_v2_encounterconditionvalue - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language -} - -""" -aggregated selection of "pokemon_v2_encounterconditionvaluename" -""" -type pokemon_v2_encounterconditionvaluename_aggregate { - aggregate: pokemon_v2_encounterconditionvaluename_aggregate_fields - nodes: [pokemon_v2_encounterconditionvaluename!]! -} - -input pokemon_v2_encounterconditionvaluename_aggregate_bool_exp { - count: pokemon_v2_encounterconditionvaluename_aggregate_bool_exp_count -} - -input pokemon_v2_encounterconditionvaluename_aggregate_bool_exp_count { - arguments: [pokemon_v2_encounterconditionvaluename_select_column!] - distinct: Boolean - filter: pokemon_v2_encounterconditionvaluename_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_encounterconditionvaluename" -""" -type pokemon_v2_encounterconditionvaluename_aggregate_fields { - avg: pokemon_v2_encounterconditionvaluename_avg_fields - count(columns: [pokemon_v2_encounterconditionvaluename_select_column!], distinct: Boolean): Int! - max: pokemon_v2_encounterconditionvaluename_max_fields - min: pokemon_v2_encounterconditionvaluename_min_fields - stddev: pokemon_v2_encounterconditionvaluename_stddev_fields - stddev_pop: pokemon_v2_encounterconditionvaluename_stddev_pop_fields - stddev_samp: pokemon_v2_encounterconditionvaluename_stddev_samp_fields - sum: pokemon_v2_encounterconditionvaluename_sum_fields - var_pop: pokemon_v2_encounterconditionvaluename_var_pop_fields - var_samp: pokemon_v2_encounterconditionvaluename_var_samp_fields - variance: pokemon_v2_encounterconditionvaluename_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_encounterconditionvaluename" -""" -input pokemon_v2_encounterconditionvaluename_aggregate_order_by { - avg: pokemon_v2_encounterconditionvaluename_avg_order_by - count: order_by - max: pokemon_v2_encounterconditionvaluename_max_order_by - min: pokemon_v2_encounterconditionvaluename_min_order_by - stddev: pokemon_v2_encounterconditionvaluename_stddev_order_by - stddev_pop: pokemon_v2_encounterconditionvaluename_stddev_pop_order_by - stddev_samp: pokemon_v2_encounterconditionvaluename_stddev_samp_order_by - sum: pokemon_v2_encounterconditionvaluename_sum_order_by - var_pop: pokemon_v2_encounterconditionvaluename_var_pop_order_by - var_samp: pokemon_v2_encounterconditionvaluename_var_samp_order_by - variance: pokemon_v2_encounterconditionvaluename_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_encounterconditionvaluename_avg_fields { - encounter_condition_value_id: Float - id: Float - language_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_encounterconditionvaluename" -""" -input pokemon_v2_encounterconditionvaluename_avg_order_by { - encounter_condition_value_id: order_by - id: order_by - language_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_encounterconditionvaluename". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_encounterconditionvaluename_bool_exp { - _and: [pokemon_v2_encounterconditionvaluename_bool_exp!] - _not: pokemon_v2_encounterconditionvaluename_bool_exp - _or: [pokemon_v2_encounterconditionvaluename_bool_exp!] - encounter_condition_value_id: Int_comparison_exp - id: Int_comparison_exp - language_id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_encounterconditionvalue: pokemon_v2_encounterconditionvalue_bool_exp - pokemon_v2_language: pokemon_v2_language_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_encounterconditionvaluename_max_fields { - encounter_condition_value_id: Int - id: Int - language_id: Int - name: String -} - -""" -order by max() on columns of table "pokemon_v2_encounterconditionvaluename" -""" -input pokemon_v2_encounterconditionvaluename_max_order_by { - encounter_condition_value_id: order_by - id: order_by - language_id: order_by - name: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_encounterconditionvaluename_min_fields { - encounter_condition_value_id: Int - id: Int - language_id: Int - name: String -} - -""" -order by min() on columns of table "pokemon_v2_encounterconditionvaluename" -""" -input pokemon_v2_encounterconditionvaluename_min_order_by { - encounter_condition_value_id: order_by - id: order_by - language_id: order_by - name: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_encounterconditionvaluename". -""" -input pokemon_v2_encounterconditionvaluename_order_by { - encounter_condition_value_id: order_by - id: order_by - language_id: order_by - name: order_by - pokemon_v2_encounterconditionvalue: pokemon_v2_encounterconditionvalue_order_by - pokemon_v2_language: pokemon_v2_language_order_by -} - -""" -select columns of table "pokemon_v2_encounterconditionvaluename" -""" -enum pokemon_v2_encounterconditionvaluename_select_column { - """column name""" - encounter_condition_value_id - - """column name""" - id - - """column name""" - language_id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_encounterconditionvaluename_stddev_fields { - encounter_condition_value_id: Float - id: Float - language_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_encounterconditionvaluename" -""" -input pokemon_v2_encounterconditionvaluename_stddev_order_by { - encounter_condition_value_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_encounterconditionvaluename_stddev_pop_fields { - encounter_condition_value_id: Float - id: Float - language_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_encounterconditionvaluename" -""" -input pokemon_v2_encounterconditionvaluename_stddev_pop_order_by { - encounter_condition_value_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_encounterconditionvaluename_stddev_samp_fields { - encounter_condition_value_id: Float - id: Float - language_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_encounterconditionvaluename" -""" -input pokemon_v2_encounterconditionvaluename_stddev_samp_order_by { - encounter_condition_value_id: order_by - id: order_by - language_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_encounterconditionvaluename" -""" -input pokemon_v2_encounterconditionvaluename_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_encounterconditionvaluename_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_encounterconditionvaluename_stream_cursor_value_input { - encounter_condition_value_id: Int - id: Int - language_id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_encounterconditionvaluename_sum_fields { - encounter_condition_value_id: Int - id: Int - language_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_encounterconditionvaluename" -""" -input pokemon_v2_encounterconditionvaluename_sum_order_by { - encounter_condition_value_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_encounterconditionvaluename_var_pop_fields { - encounter_condition_value_id: Float - id: Float - language_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_encounterconditionvaluename" -""" -input pokemon_v2_encounterconditionvaluename_var_pop_order_by { - encounter_condition_value_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_encounterconditionvaluename_var_samp_fields { - encounter_condition_value_id: Float - id: Float - language_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_encounterconditionvaluename" -""" -input pokemon_v2_encounterconditionvaluename_var_samp_order_by { - encounter_condition_value_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_encounterconditionvaluename_variance_fields { - encounter_condition_value_id: Float - id: Float - language_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_encounterconditionvaluename" -""" -input pokemon_v2_encounterconditionvaluename_variance_order_by { - encounter_condition_value_id: order_by - id: order_by - language_id: order_by -} - -""" -columns and relationships of "pokemon_v2_encountermethod" -""" -type pokemon_v2_encountermethod { - id: Int! - name: String! - order: Int - - """An array relationship""" - pokemon_v2_encountermethodnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_encountermethodname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encountermethodname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encountermethodname_bool_exp - ): [pokemon_v2_encountermethodname!]! - - """An aggregate relationship""" - pokemon_v2_encountermethodnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_encountermethodname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encountermethodname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encountermethodname_bool_exp - ): pokemon_v2_encountermethodname_aggregate! - - """An array relationship""" - pokemon_v2_encounterslots( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterslot_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterslot_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterslot_bool_exp - ): [pokemon_v2_encounterslot!]! - - """An aggregate relationship""" - pokemon_v2_encounterslots_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterslot_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterslot_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterslot_bool_exp - ): pokemon_v2_encounterslot_aggregate! - - """An array relationship""" - pokemon_v2_locationareaencounterrates( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationareaencounterrate_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationareaencounterrate_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationareaencounterrate_bool_exp - ): [pokemon_v2_locationareaencounterrate!]! - - """An aggregate relationship""" - pokemon_v2_locationareaencounterrates_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationareaencounterrate_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationareaencounterrate_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationareaencounterrate_bool_exp - ): pokemon_v2_locationareaencounterrate_aggregate! -} - -""" -aggregated selection of "pokemon_v2_encountermethod" -""" -type pokemon_v2_encountermethod_aggregate { - aggregate: pokemon_v2_encountermethod_aggregate_fields - nodes: [pokemon_v2_encountermethod!]! -} - -""" -aggregate fields of "pokemon_v2_encountermethod" -""" -type pokemon_v2_encountermethod_aggregate_fields { - avg: pokemon_v2_encountermethod_avg_fields - count(columns: [pokemon_v2_encountermethod_select_column!], distinct: Boolean): Int! - max: pokemon_v2_encountermethod_max_fields - min: pokemon_v2_encountermethod_min_fields - stddev: pokemon_v2_encountermethod_stddev_fields - stddev_pop: pokemon_v2_encountermethod_stddev_pop_fields - stddev_samp: pokemon_v2_encountermethod_stddev_samp_fields - sum: pokemon_v2_encountermethod_sum_fields - var_pop: pokemon_v2_encountermethod_var_pop_fields - var_samp: pokemon_v2_encountermethod_var_samp_fields - variance: pokemon_v2_encountermethod_variance_fields -} - -"""aggregate avg on columns""" -type pokemon_v2_encountermethod_avg_fields { - id: Float - order: Float -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_encountermethod". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_encountermethod_bool_exp { - _and: [pokemon_v2_encountermethod_bool_exp!] - _not: pokemon_v2_encountermethod_bool_exp - _or: [pokemon_v2_encountermethod_bool_exp!] - id: Int_comparison_exp - name: String_comparison_exp - order: Int_comparison_exp - pokemon_v2_encountermethodnames: pokemon_v2_encountermethodname_bool_exp - pokemon_v2_encountermethodnames_aggregate: pokemon_v2_encountermethodname_aggregate_bool_exp - pokemon_v2_encounterslots: pokemon_v2_encounterslot_bool_exp - pokemon_v2_encounterslots_aggregate: pokemon_v2_encounterslot_aggregate_bool_exp - pokemon_v2_locationareaencounterrates: pokemon_v2_locationareaencounterrate_bool_exp - pokemon_v2_locationareaencounterrates_aggregate: pokemon_v2_locationareaencounterrate_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_encountermethod_max_fields { - id: Int - name: String - order: Int -} - -"""aggregate min on columns""" -type pokemon_v2_encountermethod_min_fields { - id: Int - name: String - order: Int -} - -""" -Ordering options when selecting data from "pokemon_v2_encountermethod". -""" -input pokemon_v2_encountermethod_order_by { - id: order_by - name: order_by - order: order_by - pokemon_v2_encountermethodnames_aggregate: pokemon_v2_encountermethodname_aggregate_order_by - pokemon_v2_encounterslots_aggregate: pokemon_v2_encounterslot_aggregate_order_by - pokemon_v2_locationareaencounterrates_aggregate: pokemon_v2_locationareaencounterrate_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_encountermethod" -""" -enum pokemon_v2_encountermethod_select_column { - """column name""" - id - - """column name""" - name - - """column name""" - order -} - -"""aggregate stddev on columns""" -type pokemon_v2_encountermethod_stddev_fields { - id: Float - order: Float -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_encountermethod_stddev_pop_fields { - id: Float - order: Float -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_encountermethod_stddev_samp_fields { - id: Float - order: Float -} - -""" -Streaming cursor of the table "pokemon_v2_encountermethod" -""" -input pokemon_v2_encountermethod_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_encountermethod_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_encountermethod_stream_cursor_value_input { - id: Int - name: String - order: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_encountermethod_sum_fields { - id: Int - order: Int -} - -"""aggregate var_pop on columns""" -type pokemon_v2_encountermethod_var_pop_fields { - id: Float - order: Float -} - -"""aggregate var_samp on columns""" -type pokemon_v2_encountermethod_var_samp_fields { - id: Float - order: Float -} - -"""aggregate variance on columns""" -type pokemon_v2_encountermethod_variance_fields { - id: Float - order: Float -} - -""" -columns and relationships of "pokemon_v2_encountermethodname" -""" -type pokemon_v2_encountermethodname { - encounter_method_id: Int - id: Int! - language_id: Int - name: String! - - """An object relationship""" - pokemon_v2_encountermethod: pokemon_v2_encountermethod - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language -} - -""" -aggregated selection of "pokemon_v2_encountermethodname" -""" -type pokemon_v2_encountermethodname_aggregate { - aggregate: pokemon_v2_encountermethodname_aggregate_fields - nodes: [pokemon_v2_encountermethodname!]! -} - -input pokemon_v2_encountermethodname_aggregate_bool_exp { - count: pokemon_v2_encountermethodname_aggregate_bool_exp_count -} - -input pokemon_v2_encountermethodname_aggregate_bool_exp_count { - arguments: [pokemon_v2_encountermethodname_select_column!] - distinct: Boolean - filter: pokemon_v2_encountermethodname_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_encountermethodname" -""" -type pokemon_v2_encountermethodname_aggregate_fields { - avg: pokemon_v2_encountermethodname_avg_fields - count(columns: [pokemon_v2_encountermethodname_select_column!], distinct: Boolean): Int! - max: pokemon_v2_encountermethodname_max_fields - min: pokemon_v2_encountermethodname_min_fields - stddev: pokemon_v2_encountermethodname_stddev_fields - stddev_pop: pokemon_v2_encountermethodname_stddev_pop_fields - stddev_samp: pokemon_v2_encountermethodname_stddev_samp_fields - sum: pokemon_v2_encountermethodname_sum_fields - var_pop: pokemon_v2_encountermethodname_var_pop_fields - var_samp: pokemon_v2_encountermethodname_var_samp_fields - variance: pokemon_v2_encountermethodname_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_encountermethodname" -""" -input pokemon_v2_encountermethodname_aggregate_order_by { - avg: pokemon_v2_encountermethodname_avg_order_by - count: order_by - max: pokemon_v2_encountermethodname_max_order_by - min: pokemon_v2_encountermethodname_min_order_by - stddev: pokemon_v2_encountermethodname_stddev_order_by - stddev_pop: pokemon_v2_encountermethodname_stddev_pop_order_by - stddev_samp: pokemon_v2_encountermethodname_stddev_samp_order_by - sum: pokemon_v2_encountermethodname_sum_order_by - var_pop: pokemon_v2_encountermethodname_var_pop_order_by - var_samp: pokemon_v2_encountermethodname_var_samp_order_by - variance: pokemon_v2_encountermethodname_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_encountermethodname_avg_fields { - encounter_method_id: Float - id: Float - language_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_encountermethodname" -""" -input pokemon_v2_encountermethodname_avg_order_by { - encounter_method_id: order_by - id: order_by - language_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_encountermethodname". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_encountermethodname_bool_exp { - _and: [pokemon_v2_encountermethodname_bool_exp!] - _not: pokemon_v2_encountermethodname_bool_exp - _or: [pokemon_v2_encountermethodname_bool_exp!] - encounter_method_id: Int_comparison_exp - id: Int_comparison_exp - language_id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_encountermethod: pokemon_v2_encountermethod_bool_exp - pokemon_v2_language: pokemon_v2_language_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_encountermethodname_max_fields { - encounter_method_id: Int - id: Int - language_id: Int - name: String -} - -""" -order by max() on columns of table "pokemon_v2_encountermethodname" -""" -input pokemon_v2_encountermethodname_max_order_by { - encounter_method_id: order_by - id: order_by - language_id: order_by - name: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_encountermethodname_min_fields { - encounter_method_id: Int - id: Int - language_id: Int - name: String -} - -""" -order by min() on columns of table "pokemon_v2_encountermethodname" -""" -input pokemon_v2_encountermethodname_min_order_by { - encounter_method_id: order_by - id: order_by - language_id: order_by - name: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_encountermethodname". -""" -input pokemon_v2_encountermethodname_order_by { - encounter_method_id: order_by - id: order_by - language_id: order_by - name: order_by - pokemon_v2_encountermethod: pokemon_v2_encountermethod_order_by - pokemon_v2_language: pokemon_v2_language_order_by -} - -""" -select columns of table "pokemon_v2_encountermethodname" -""" -enum pokemon_v2_encountermethodname_select_column { - """column name""" - encounter_method_id - - """column name""" - id - - """column name""" - language_id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_encountermethodname_stddev_fields { - encounter_method_id: Float - id: Float - language_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_encountermethodname" -""" -input pokemon_v2_encountermethodname_stddev_order_by { - encounter_method_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_encountermethodname_stddev_pop_fields { - encounter_method_id: Float - id: Float - language_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_encountermethodname" -""" -input pokemon_v2_encountermethodname_stddev_pop_order_by { - encounter_method_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_encountermethodname_stddev_samp_fields { - encounter_method_id: Float - id: Float - language_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_encountermethodname" -""" -input pokemon_v2_encountermethodname_stddev_samp_order_by { - encounter_method_id: order_by - id: order_by - language_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_encountermethodname" -""" -input pokemon_v2_encountermethodname_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_encountermethodname_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_encountermethodname_stream_cursor_value_input { - encounter_method_id: Int - id: Int - language_id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_encountermethodname_sum_fields { - encounter_method_id: Int - id: Int - language_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_encountermethodname" -""" -input pokemon_v2_encountermethodname_sum_order_by { - encounter_method_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_encountermethodname_var_pop_fields { - encounter_method_id: Float - id: Float - language_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_encountermethodname" -""" -input pokemon_v2_encountermethodname_var_pop_order_by { - encounter_method_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_encountermethodname_var_samp_fields { - encounter_method_id: Float - id: Float - language_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_encountermethodname" -""" -input pokemon_v2_encountermethodname_var_samp_order_by { - encounter_method_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_encountermethodname_variance_fields { - encounter_method_id: Float - id: Float - language_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_encountermethodname" -""" -input pokemon_v2_encountermethodname_variance_order_by { - encounter_method_id: order_by - id: order_by - language_id: order_by -} - -""" -columns and relationships of "pokemon_v2_encounterslot" -""" -type pokemon_v2_encounterslot { - encounter_method_id: Int - id: Int! - - """An object relationship""" - pokemon_v2_encountermethod: pokemon_v2_encountermethod - - """An array relationship""" - pokemon_v2_encounters( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounter_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounter_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounter_bool_exp - ): [pokemon_v2_encounter!]! - - """An aggregate relationship""" - pokemon_v2_encounters_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounter_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounter_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounter_bool_exp - ): pokemon_v2_encounter_aggregate! - - """An object relationship""" - pokemon_v2_versiongroup: pokemon_v2_versiongroup - rarity: Int! - slot: Int - version_group_id: Int -} - -""" -aggregated selection of "pokemon_v2_encounterslot" -""" -type pokemon_v2_encounterslot_aggregate { - aggregate: pokemon_v2_encounterslot_aggregate_fields - nodes: [pokemon_v2_encounterslot!]! -} - -input pokemon_v2_encounterslot_aggregate_bool_exp { - count: pokemon_v2_encounterslot_aggregate_bool_exp_count -} - -input pokemon_v2_encounterslot_aggregate_bool_exp_count { - arguments: [pokemon_v2_encounterslot_select_column!] - distinct: Boolean - filter: pokemon_v2_encounterslot_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_encounterslot" -""" -type pokemon_v2_encounterslot_aggregate_fields { - avg: pokemon_v2_encounterslot_avg_fields - count(columns: [pokemon_v2_encounterslot_select_column!], distinct: Boolean): Int! - max: pokemon_v2_encounterslot_max_fields - min: pokemon_v2_encounterslot_min_fields - stddev: pokemon_v2_encounterslot_stddev_fields - stddev_pop: pokemon_v2_encounterslot_stddev_pop_fields - stddev_samp: pokemon_v2_encounterslot_stddev_samp_fields - sum: pokemon_v2_encounterslot_sum_fields - var_pop: pokemon_v2_encounterslot_var_pop_fields - var_samp: pokemon_v2_encounterslot_var_samp_fields - variance: pokemon_v2_encounterslot_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_encounterslot" -""" -input pokemon_v2_encounterslot_aggregate_order_by { - avg: pokemon_v2_encounterslot_avg_order_by - count: order_by - max: pokemon_v2_encounterslot_max_order_by - min: pokemon_v2_encounterslot_min_order_by - stddev: pokemon_v2_encounterslot_stddev_order_by - stddev_pop: pokemon_v2_encounterslot_stddev_pop_order_by - stddev_samp: pokemon_v2_encounterslot_stddev_samp_order_by - sum: pokemon_v2_encounterslot_sum_order_by - var_pop: pokemon_v2_encounterslot_var_pop_order_by - var_samp: pokemon_v2_encounterslot_var_samp_order_by - variance: pokemon_v2_encounterslot_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_encounterslot_avg_fields { - encounter_method_id: Float - id: Float - rarity: Float - slot: Float - version_group_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_encounterslot" -""" -input pokemon_v2_encounterslot_avg_order_by { - encounter_method_id: order_by - id: order_by - rarity: order_by - slot: order_by - version_group_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_encounterslot". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_encounterslot_bool_exp { - _and: [pokemon_v2_encounterslot_bool_exp!] - _not: pokemon_v2_encounterslot_bool_exp - _or: [pokemon_v2_encounterslot_bool_exp!] - encounter_method_id: Int_comparison_exp - id: Int_comparison_exp - pokemon_v2_encountermethod: pokemon_v2_encountermethod_bool_exp - pokemon_v2_encounters: pokemon_v2_encounter_bool_exp - pokemon_v2_encounters_aggregate: pokemon_v2_encounter_aggregate_bool_exp - pokemon_v2_versiongroup: pokemon_v2_versiongroup_bool_exp - rarity: Int_comparison_exp - slot: Int_comparison_exp - version_group_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_encounterslot_max_fields { - encounter_method_id: Int - id: Int - rarity: Int - slot: Int - version_group_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_encounterslot" -""" -input pokemon_v2_encounterslot_max_order_by { - encounter_method_id: order_by - id: order_by - rarity: order_by - slot: order_by - version_group_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_encounterslot_min_fields { - encounter_method_id: Int - id: Int - rarity: Int - slot: Int - version_group_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_encounterslot" -""" -input pokemon_v2_encounterslot_min_order_by { - encounter_method_id: order_by - id: order_by - rarity: order_by - slot: order_by - version_group_id: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_encounterslot".""" -input pokemon_v2_encounterslot_order_by { - encounter_method_id: order_by - id: order_by - pokemon_v2_encountermethod: pokemon_v2_encountermethod_order_by - pokemon_v2_encounters_aggregate: pokemon_v2_encounter_aggregate_order_by - pokemon_v2_versiongroup: pokemon_v2_versiongroup_order_by - rarity: order_by - slot: order_by - version_group_id: order_by -} - -""" -select columns of table "pokemon_v2_encounterslot" -""" -enum pokemon_v2_encounterslot_select_column { - """column name""" - encounter_method_id - - """column name""" - id - - """column name""" - rarity - - """column name""" - slot - - """column name""" - version_group_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_encounterslot_stddev_fields { - encounter_method_id: Float - id: Float - rarity: Float - slot: Float - version_group_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_encounterslot" -""" -input pokemon_v2_encounterslot_stddev_order_by { - encounter_method_id: order_by - id: order_by - rarity: order_by - slot: order_by - version_group_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_encounterslot_stddev_pop_fields { - encounter_method_id: Float - id: Float - rarity: Float - slot: Float - version_group_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_encounterslot" -""" -input pokemon_v2_encounterslot_stddev_pop_order_by { - encounter_method_id: order_by - id: order_by - rarity: order_by - slot: order_by - version_group_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_encounterslot_stddev_samp_fields { - encounter_method_id: Float - id: Float - rarity: Float - slot: Float - version_group_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_encounterslot" -""" -input pokemon_v2_encounterslot_stddev_samp_order_by { - encounter_method_id: order_by - id: order_by - rarity: order_by - slot: order_by - version_group_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_encounterslot" -""" -input pokemon_v2_encounterslot_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_encounterslot_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_encounterslot_stream_cursor_value_input { - encounter_method_id: Int - id: Int - rarity: Int - slot: Int - version_group_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_encounterslot_sum_fields { - encounter_method_id: Int - id: Int - rarity: Int - slot: Int - version_group_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_encounterslot" -""" -input pokemon_v2_encounterslot_sum_order_by { - encounter_method_id: order_by - id: order_by - rarity: order_by - slot: order_by - version_group_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_encounterslot_var_pop_fields { - encounter_method_id: Float - id: Float - rarity: Float - slot: Float - version_group_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_encounterslot" -""" -input pokemon_v2_encounterslot_var_pop_order_by { - encounter_method_id: order_by - id: order_by - rarity: order_by - slot: order_by - version_group_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_encounterslot_var_samp_fields { - encounter_method_id: Float - id: Float - rarity: Float - slot: Float - version_group_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_encounterslot" -""" -input pokemon_v2_encounterslot_var_samp_order_by { - encounter_method_id: order_by - id: order_by - rarity: order_by - slot: order_by - version_group_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_encounterslot_variance_fields { - encounter_method_id: Float - id: Float - rarity: Float - slot: Float - version_group_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_encounterslot" -""" -input pokemon_v2_encounterslot_variance_order_by { - encounter_method_id: order_by - id: order_by - rarity: order_by - slot: order_by - version_group_id: order_by -} - -""" -columns and relationships of "pokemon_v2_evolutionchain" -""" -type pokemon_v2_evolutionchain { - baby_trigger_item_id: Int - id: Int! - - """An object relationship""" - pokemon_v2_item: pokemon_v2_item - - """An array relationship""" - pokemon_v2_pokemonspecies( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspecies_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspecies_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspecies_bool_exp - ): [pokemon_v2_pokemonspecies!]! - - """An aggregate relationship""" - pokemon_v2_pokemonspecies_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspecies_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspecies_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspecies_bool_exp - ): pokemon_v2_pokemonspecies_aggregate! -} - -""" -aggregated selection of "pokemon_v2_evolutionchain" -""" -type pokemon_v2_evolutionchain_aggregate { - aggregate: pokemon_v2_evolutionchain_aggregate_fields - nodes: [pokemon_v2_evolutionchain!]! -} - -input pokemon_v2_evolutionchain_aggregate_bool_exp { - count: pokemon_v2_evolutionchain_aggregate_bool_exp_count -} - -input pokemon_v2_evolutionchain_aggregate_bool_exp_count { - arguments: [pokemon_v2_evolutionchain_select_column!] - distinct: Boolean - filter: pokemon_v2_evolutionchain_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_evolutionchain" -""" -type pokemon_v2_evolutionchain_aggregate_fields { - avg: pokemon_v2_evolutionchain_avg_fields - count(columns: [pokemon_v2_evolutionchain_select_column!], distinct: Boolean): Int! - max: pokemon_v2_evolutionchain_max_fields - min: pokemon_v2_evolutionchain_min_fields - stddev: pokemon_v2_evolutionchain_stddev_fields - stddev_pop: pokemon_v2_evolutionchain_stddev_pop_fields - stddev_samp: pokemon_v2_evolutionchain_stddev_samp_fields - sum: pokemon_v2_evolutionchain_sum_fields - var_pop: pokemon_v2_evolutionchain_var_pop_fields - var_samp: pokemon_v2_evolutionchain_var_samp_fields - variance: pokemon_v2_evolutionchain_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_evolutionchain" -""" -input pokemon_v2_evolutionchain_aggregate_order_by { - avg: pokemon_v2_evolutionchain_avg_order_by - count: order_by - max: pokemon_v2_evolutionchain_max_order_by - min: pokemon_v2_evolutionchain_min_order_by - stddev: pokemon_v2_evolutionchain_stddev_order_by - stddev_pop: pokemon_v2_evolutionchain_stddev_pop_order_by - stddev_samp: pokemon_v2_evolutionchain_stddev_samp_order_by - sum: pokemon_v2_evolutionchain_sum_order_by - var_pop: pokemon_v2_evolutionchain_var_pop_order_by - var_samp: pokemon_v2_evolutionchain_var_samp_order_by - variance: pokemon_v2_evolutionchain_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_evolutionchain_avg_fields { - baby_trigger_item_id: Float - id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_evolutionchain" -""" -input pokemon_v2_evolutionchain_avg_order_by { - baby_trigger_item_id: order_by - id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_evolutionchain". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_evolutionchain_bool_exp { - _and: [pokemon_v2_evolutionchain_bool_exp!] - _not: pokemon_v2_evolutionchain_bool_exp - _or: [pokemon_v2_evolutionchain_bool_exp!] - baby_trigger_item_id: Int_comparison_exp - id: Int_comparison_exp - pokemon_v2_item: pokemon_v2_item_bool_exp - pokemon_v2_pokemonspecies: pokemon_v2_pokemonspecies_bool_exp - pokemon_v2_pokemonspecies_aggregate: pokemon_v2_pokemonspecies_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_evolutionchain_max_fields { - baby_trigger_item_id: Int - id: Int -} - -""" -order by max() on columns of table "pokemon_v2_evolutionchain" -""" -input pokemon_v2_evolutionchain_max_order_by { - baby_trigger_item_id: order_by - id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_evolutionchain_min_fields { - baby_trigger_item_id: Int - id: Int -} - -""" -order by min() on columns of table "pokemon_v2_evolutionchain" -""" -input pokemon_v2_evolutionchain_min_order_by { - baby_trigger_item_id: order_by - id: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_evolutionchain".""" -input pokemon_v2_evolutionchain_order_by { - baby_trigger_item_id: order_by - id: order_by - pokemon_v2_item: pokemon_v2_item_order_by - pokemon_v2_pokemonspecies_aggregate: pokemon_v2_pokemonspecies_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_evolutionchain" -""" -enum pokemon_v2_evolutionchain_select_column { - """column name""" - baby_trigger_item_id - - """column name""" - id -} - -"""aggregate stddev on columns""" -type pokemon_v2_evolutionchain_stddev_fields { - baby_trigger_item_id: Float - id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_evolutionchain" -""" -input pokemon_v2_evolutionchain_stddev_order_by { - baby_trigger_item_id: order_by - id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_evolutionchain_stddev_pop_fields { - baby_trigger_item_id: Float - id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_evolutionchain" -""" -input pokemon_v2_evolutionchain_stddev_pop_order_by { - baby_trigger_item_id: order_by - id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_evolutionchain_stddev_samp_fields { - baby_trigger_item_id: Float - id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_evolutionchain" -""" -input pokemon_v2_evolutionchain_stddev_samp_order_by { - baby_trigger_item_id: order_by - id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_evolutionchain" -""" -input pokemon_v2_evolutionchain_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_evolutionchain_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_evolutionchain_stream_cursor_value_input { - baby_trigger_item_id: Int - id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_evolutionchain_sum_fields { - baby_trigger_item_id: Int - id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_evolutionchain" -""" -input pokemon_v2_evolutionchain_sum_order_by { - baby_trigger_item_id: order_by - id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_evolutionchain_var_pop_fields { - baby_trigger_item_id: Float - id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_evolutionchain" -""" -input pokemon_v2_evolutionchain_var_pop_order_by { - baby_trigger_item_id: order_by - id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_evolutionchain_var_samp_fields { - baby_trigger_item_id: Float - id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_evolutionchain" -""" -input pokemon_v2_evolutionchain_var_samp_order_by { - baby_trigger_item_id: order_by - id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_evolutionchain_variance_fields { - baby_trigger_item_id: Float - id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_evolutionchain" -""" -input pokemon_v2_evolutionchain_variance_order_by { - baby_trigger_item_id: order_by - id: order_by -} - -""" -columns and relationships of "pokemon_v2_evolutiontrigger" -""" -type pokemon_v2_evolutiontrigger { - id: Int! - name: String! - - """An array relationship""" - pokemon_v2_evolutiontriggernames( - """distinct select on columns""" - distinct_on: [pokemon_v2_evolutiontriggername_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_evolutiontriggername_order_by!] - - """filter the rows returned""" - where: pokemon_v2_evolutiontriggername_bool_exp - ): [pokemon_v2_evolutiontriggername!]! - - """An aggregate relationship""" - pokemon_v2_evolutiontriggernames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_evolutiontriggername_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_evolutiontriggername_order_by!] - - """filter the rows returned""" - where: pokemon_v2_evolutiontriggername_bool_exp - ): pokemon_v2_evolutiontriggername_aggregate! - - """An array relationship""" - pokemon_v2_pokemonevolutions( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonevolution_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonevolution_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonevolution_bool_exp - ): [pokemon_v2_pokemonevolution!]! - - """An aggregate relationship""" - pokemon_v2_pokemonevolutions_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonevolution_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonevolution_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonevolution_bool_exp - ): pokemon_v2_pokemonevolution_aggregate! -} - -""" -aggregated selection of "pokemon_v2_evolutiontrigger" -""" -type pokemon_v2_evolutiontrigger_aggregate { - aggregate: pokemon_v2_evolutiontrigger_aggregate_fields - nodes: [pokemon_v2_evolutiontrigger!]! -} - -""" -aggregate fields of "pokemon_v2_evolutiontrigger" -""" -type pokemon_v2_evolutiontrigger_aggregate_fields { - avg: pokemon_v2_evolutiontrigger_avg_fields - count(columns: [pokemon_v2_evolutiontrigger_select_column!], distinct: Boolean): Int! - max: pokemon_v2_evolutiontrigger_max_fields - min: pokemon_v2_evolutiontrigger_min_fields - stddev: pokemon_v2_evolutiontrigger_stddev_fields - stddev_pop: pokemon_v2_evolutiontrigger_stddev_pop_fields - stddev_samp: pokemon_v2_evolutiontrigger_stddev_samp_fields - sum: pokemon_v2_evolutiontrigger_sum_fields - var_pop: pokemon_v2_evolutiontrigger_var_pop_fields - var_samp: pokemon_v2_evolutiontrigger_var_samp_fields - variance: pokemon_v2_evolutiontrigger_variance_fields -} - -"""aggregate avg on columns""" -type pokemon_v2_evolutiontrigger_avg_fields { - id: Float -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_evolutiontrigger". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_evolutiontrigger_bool_exp { - _and: [pokemon_v2_evolutiontrigger_bool_exp!] - _not: pokemon_v2_evolutiontrigger_bool_exp - _or: [pokemon_v2_evolutiontrigger_bool_exp!] - id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_evolutiontriggernames: pokemon_v2_evolutiontriggername_bool_exp - pokemon_v2_evolutiontriggernames_aggregate: pokemon_v2_evolutiontriggername_aggregate_bool_exp - pokemon_v2_pokemonevolutions: pokemon_v2_pokemonevolution_bool_exp - pokemon_v2_pokemonevolutions_aggregate: pokemon_v2_pokemonevolution_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_evolutiontrigger_max_fields { - id: Int - name: String -} - -"""aggregate min on columns""" -type pokemon_v2_evolutiontrigger_min_fields { - id: Int - name: String -} - -""" -Ordering options when selecting data from "pokemon_v2_evolutiontrigger". -""" -input pokemon_v2_evolutiontrigger_order_by { - id: order_by - name: order_by - pokemon_v2_evolutiontriggernames_aggregate: pokemon_v2_evolutiontriggername_aggregate_order_by - pokemon_v2_pokemonevolutions_aggregate: pokemon_v2_pokemonevolution_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_evolutiontrigger" -""" -enum pokemon_v2_evolutiontrigger_select_column { - """column name""" - id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_evolutiontrigger_stddev_fields { - id: Float -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_evolutiontrigger_stddev_pop_fields { - id: Float -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_evolutiontrigger_stddev_samp_fields { - id: Float -} - -""" -Streaming cursor of the table "pokemon_v2_evolutiontrigger" -""" -input pokemon_v2_evolutiontrigger_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_evolutiontrigger_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_evolutiontrigger_stream_cursor_value_input { - id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_evolutiontrigger_sum_fields { - id: Int -} - -"""aggregate var_pop on columns""" -type pokemon_v2_evolutiontrigger_var_pop_fields { - id: Float -} - -"""aggregate var_samp on columns""" -type pokemon_v2_evolutiontrigger_var_samp_fields { - id: Float -} - -"""aggregate variance on columns""" -type pokemon_v2_evolutiontrigger_variance_fields { - id: Float -} - -""" -columns and relationships of "pokemon_v2_evolutiontriggername" -""" -type pokemon_v2_evolutiontriggername { - evolution_trigger_id: Int - id: Int! - language_id: Int - name: String! - - """An object relationship""" - pokemon_v2_evolutiontrigger: pokemon_v2_evolutiontrigger - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language -} - -""" -aggregated selection of "pokemon_v2_evolutiontriggername" -""" -type pokemon_v2_evolutiontriggername_aggregate { - aggregate: pokemon_v2_evolutiontriggername_aggregate_fields - nodes: [pokemon_v2_evolutiontriggername!]! -} - -input pokemon_v2_evolutiontriggername_aggregate_bool_exp { - count: pokemon_v2_evolutiontriggername_aggregate_bool_exp_count -} - -input pokemon_v2_evolutiontriggername_aggregate_bool_exp_count { - arguments: [pokemon_v2_evolutiontriggername_select_column!] - distinct: Boolean - filter: pokemon_v2_evolutiontriggername_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_evolutiontriggername" -""" -type pokemon_v2_evolutiontriggername_aggregate_fields { - avg: pokemon_v2_evolutiontriggername_avg_fields - count(columns: [pokemon_v2_evolutiontriggername_select_column!], distinct: Boolean): Int! - max: pokemon_v2_evolutiontriggername_max_fields - min: pokemon_v2_evolutiontriggername_min_fields - stddev: pokemon_v2_evolutiontriggername_stddev_fields - stddev_pop: pokemon_v2_evolutiontriggername_stddev_pop_fields - stddev_samp: pokemon_v2_evolutiontriggername_stddev_samp_fields - sum: pokemon_v2_evolutiontriggername_sum_fields - var_pop: pokemon_v2_evolutiontriggername_var_pop_fields - var_samp: pokemon_v2_evolutiontriggername_var_samp_fields - variance: pokemon_v2_evolutiontriggername_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_evolutiontriggername" -""" -input pokemon_v2_evolutiontriggername_aggregate_order_by { - avg: pokemon_v2_evolutiontriggername_avg_order_by - count: order_by - max: pokemon_v2_evolutiontriggername_max_order_by - min: pokemon_v2_evolutiontriggername_min_order_by - stddev: pokemon_v2_evolutiontriggername_stddev_order_by - stddev_pop: pokemon_v2_evolutiontriggername_stddev_pop_order_by - stddev_samp: pokemon_v2_evolutiontriggername_stddev_samp_order_by - sum: pokemon_v2_evolutiontriggername_sum_order_by - var_pop: pokemon_v2_evolutiontriggername_var_pop_order_by - var_samp: pokemon_v2_evolutiontriggername_var_samp_order_by - variance: pokemon_v2_evolutiontriggername_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_evolutiontriggername_avg_fields { - evolution_trigger_id: Float - id: Float - language_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_evolutiontriggername" -""" -input pokemon_v2_evolutiontriggername_avg_order_by { - evolution_trigger_id: order_by - id: order_by - language_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_evolutiontriggername". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_evolutiontriggername_bool_exp { - _and: [pokemon_v2_evolutiontriggername_bool_exp!] - _not: pokemon_v2_evolutiontriggername_bool_exp - _or: [pokemon_v2_evolutiontriggername_bool_exp!] - evolution_trigger_id: Int_comparison_exp - id: Int_comparison_exp - language_id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_evolutiontrigger: pokemon_v2_evolutiontrigger_bool_exp - pokemon_v2_language: pokemon_v2_language_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_evolutiontriggername_max_fields { - evolution_trigger_id: Int - id: Int - language_id: Int - name: String -} - -""" -order by max() on columns of table "pokemon_v2_evolutiontriggername" -""" -input pokemon_v2_evolutiontriggername_max_order_by { - evolution_trigger_id: order_by - id: order_by - language_id: order_by - name: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_evolutiontriggername_min_fields { - evolution_trigger_id: Int - id: Int - language_id: Int - name: String -} - -""" -order by min() on columns of table "pokemon_v2_evolutiontriggername" -""" -input pokemon_v2_evolutiontriggername_min_order_by { - evolution_trigger_id: order_by - id: order_by - language_id: order_by - name: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_evolutiontriggername". -""" -input pokemon_v2_evolutiontriggername_order_by { - evolution_trigger_id: order_by - id: order_by - language_id: order_by - name: order_by - pokemon_v2_evolutiontrigger: pokemon_v2_evolutiontrigger_order_by - pokemon_v2_language: pokemon_v2_language_order_by -} - -""" -select columns of table "pokemon_v2_evolutiontriggername" -""" -enum pokemon_v2_evolutiontriggername_select_column { - """column name""" - evolution_trigger_id - - """column name""" - id - - """column name""" - language_id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_evolutiontriggername_stddev_fields { - evolution_trigger_id: Float - id: Float - language_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_evolutiontriggername" -""" -input pokemon_v2_evolutiontriggername_stddev_order_by { - evolution_trigger_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_evolutiontriggername_stddev_pop_fields { - evolution_trigger_id: Float - id: Float - language_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_evolutiontriggername" -""" -input pokemon_v2_evolutiontriggername_stddev_pop_order_by { - evolution_trigger_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_evolutiontriggername_stddev_samp_fields { - evolution_trigger_id: Float - id: Float - language_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_evolutiontriggername" -""" -input pokemon_v2_evolutiontriggername_stddev_samp_order_by { - evolution_trigger_id: order_by - id: order_by - language_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_evolutiontriggername" -""" -input pokemon_v2_evolutiontriggername_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_evolutiontriggername_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_evolutiontriggername_stream_cursor_value_input { - evolution_trigger_id: Int - id: Int - language_id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_evolutiontriggername_sum_fields { - evolution_trigger_id: Int - id: Int - language_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_evolutiontriggername" -""" -input pokemon_v2_evolutiontriggername_sum_order_by { - evolution_trigger_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_evolutiontriggername_var_pop_fields { - evolution_trigger_id: Float - id: Float - language_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_evolutiontriggername" -""" -input pokemon_v2_evolutiontriggername_var_pop_order_by { - evolution_trigger_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_evolutiontriggername_var_samp_fields { - evolution_trigger_id: Float - id: Float - language_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_evolutiontriggername" -""" -input pokemon_v2_evolutiontriggername_var_samp_order_by { - evolution_trigger_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_evolutiontriggername_variance_fields { - evolution_trigger_id: Float - id: Float - language_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_evolutiontriggername" -""" -input pokemon_v2_evolutiontriggername_variance_order_by { - evolution_trigger_id: order_by - id: order_by - language_id: order_by -} - -""" -columns and relationships of "pokemon_v2_experience" -""" -type pokemon_v2_experience { - experience: Int! - growth_rate_id: Int - id: Int! - level: Int! - - """An object relationship""" - pokemon_v2_growthrate: pokemon_v2_growthrate -} - -""" -aggregated selection of "pokemon_v2_experience" -""" -type pokemon_v2_experience_aggregate { - aggregate: pokemon_v2_experience_aggregate_fields - nodes: [pokemon_v2_experience!]! -} - -input pokemon_v2_experience_aggregate_bool_exp { - count: pokemon_v2_experience_aggregate_bool_exp_count -} - -input pokemon_v2_experience_aggregate_bool_exp_count { - arguments: [pokemon_v2_experience_select_column!] - distinct: Boolean - filter: pokemon_v2_experience_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_experience" -""" -type pokemon_v2_experience_aggregate_fields { - avg: pokemon_v2_experience_avg_fields - count(columns: [pokemon_v2_experience_select_column!], distinct: Boolean): Int! - max: pokemon_v2_experience_max_fields - min: pokemon_v2_experience_min_fields - stddev: pokemon_v2_experience_stddev_fields - stddev_pop: pokemon_v2_experience_stddev_pop_fields - stddev_samp: pokemon_v2_experience_stddev_samp_fields - sum: pokemon_v2_experience_sum_fields - var_pop: pokemon_v2_experience_var_pop_fields - var_samp: pokemon_v2_experience_var_samp_fields - variance: pokemon_v2_experience_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_experience" -""" -input pokemon_v2_experience_aggregate_order_by { - avg: pokemon_v2_experience_avg_order_by - count: order_by - max: pokemon_v2_experience_max_order_by - min: pokemon_v2_experience_min_order_by - stddev: pokemon_v2_experience_stddev_order_by - stddev_pop: pokemon_v2_experience_stddev_pop_order_by - stddev_samp: pokemon_v2_experience_stddev_samp_order_by - sum: pokemon_v2_experience_sum_order_by - var_pop: pokemon_v2_experience_var_pop_order_by - var_samp: pokemon_v2_experience_var_samp_order_by - variance: pokemon_v2_experience_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_experience_avg_fields { - experience: Float - growth_rate_id: Float - id: Float - level: Float -} - -""" -order by avg() on columns of table "pokemon_v2_experience" -""" -input pokemon_v2_experience_avg_order_by { - experience: order_by - growth_rate_id: order_by - id: order_by - level: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_experience". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_experience_bool_exp { - _and: [pokemon_v2_experience_bool_exp!] - _not: pokemon_v2_experience_bool_exp - _or: [pokemon_v2_experience_bool_exp!] - experience: Int_comparison_exp - growth_rate_id: Int_comparison_exp - id: Int_comparison_exp - level: Int_comparison_exp - pokemon_v2_growthrate: pokemon_v2_growthrate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_experience_max_fields { - experience: Int - growth_rate_id: Int - id: Int - level: Int -} - -""" -order by max() on columns of table "pokemon_v2_experience" -""" -input pokemon_v2_experience_max_order_by { - experience: order_by - growth_rate_id: order_by - id: order_by - level: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_experience_min_fields { - experience: Int - growth_rate_id: Int - id: Int - level: Int -} - -""" -order by min() on columns of table "pokemon_v2_experience" -""" -input pokemon_v2_experience_min_order_by { - experience: order_by - growth_rate_id: order_by - id: order_by - level: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_experience".""" -input pokemon_v2_experience_order_by { - experience: order_by - growth_rate_id: order_by - id: order_by - level: order_by - pokemon_v2_growthrate: pokemon_v2_growthrate_order_by -} - -""" -select columns of table "pokemon_v2_experience" -""" -enum pokemon_v2_experience_select_column { - """column name""" - experience - - """column name""" - growth_rate_id - - """column name""" - id - - """column name""" - level -} - -"""aggregate stddev on columns""" -type pokemon_v2_experience_stddev_fields { - experience: Float - growth_rate_id: Float - id: Float - level: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_experience" -""" -input pokemon_v2_experience_stddev_order_by { - experience: order_by - growth_rate_id: order_by - id: order_by - level: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_experience_stddev_pop_fields { - experience: Float - growth_rate_id: Float - id: Float - level: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_experience" -""" -input pokemon_v2_experience_stddev_pop_order_by { - experience: order_by - growth_rate_id: order_by - id: order_by - level: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_experience_stddev_samp_fields { - experience: Float - growth_rate_id: Float - id: Float - level: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_experience" -""" -input pokemon_v2_experience_stddev_samp_order_by { - experience: order_by - growth_rate_id: order_by - id: order_by - level: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_experience" -""" -input pokemon_v2_experience_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_experience_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_experience_stream_cursor_value_input { - experience: Int - growth_rate_id: Int - id: Int - level: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_experience_sum_fields { - experience: Int - growth_rate_id: Int - id: Int - level: Int -} - -""" -order by sum() on columns of table "pokemon_v2_experience" -""" -input pokemon_v2_experience_sum_order_by { - experience: order_by - growth_rate_id: order_by - id: order_by - level: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_experience_var_pop_fields { - experience: Float - growth_rate_id: Float - id: Float - level: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_experience" -""" -input pokemon_v2_experience_var_pop_order_by { - experience: order_by - growth_rate_id: order_by - id: order_by - level: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_experience_var_samp_fields { - experience: Float - growth_rate_id: Float - id: Float - level: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_experience" -""" -input pokemon_v2_experience_var_samp_order_by { - experience: order_by - growth_rate_id: order_by - id: order_by - level: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_experience_variance_fields { - experience: Float - growth_rate_id: Float - id: Float - level: Float -} - -""" -order by variance() on columns of table "pokemon_v2_experience" -""" -input pokemon_v2_experience_variance_order_by { - experience: order_by - growth_rate_id: order_by - id: order_by - level: order_by -} - -""" -columns and relationships of "pokemon_v2_gender" -""" -type pokemon_v2_gender { - id: Int! - name: String! - - """An array relationship""" - pokemon_v2_pokemonevolutions( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonevolution_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonevolution_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonevolution_bool_exp - ): [pokemon_v2_pokemonevolution!]! - - """An aggregate relationship""" - pokemon_v2_pokemonevolutions_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonevolution_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonevolution_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonevolution_bool_exp - ): pokemon_v2_pokemonevolution_aggregate! -} - -""" -aggregated selection of "pokemon_v2_gender" -""" -type pokemon_v2_gender_aggregate { - aggregate: pokemon_v2_gender_aggregate_fields - nodes: [pokemon_v2_gender!]! -} - -""" -aggregate fields of "pokemon_v2_gender" -""" -type pokemon_v2_gender_aggregate_fields { - avg: pokemon_v2_gender_avg_fields - count(columns: [pokemon_v2_gender_select_column!], distinct: Boolean): Int! - max: pokemon_v2_gender_max_fields - min: pokemon_v2_gender_min_fields - stddev: pokemon_v2_gender_stddev_fields - stddev_pop: pokemon_v2_gender_stddev_pop_fields - stddev_samp: pokemon_v2_gender_stddev_samp_fields - sum: pokemon_v2_gender_sum_fields - var_pop: pokemon_v2_gender_var_pop_fields - var_samp: pokemon_v2_gender_var_samp_fields - variance: pokemon_v2_gender_variance_fields -} - -"""aggregate avg on columns""" -type pokemon_v2_gender_avg_fields { - id: Float -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_gender". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_gender_bool_exp { - _and: [pokemon_v2_gender_bool_exp!] - _not: pokemon_v2_gender_bool_exp - _or: [pokemon_v2_gender_bool_exp!] - id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_pokemonevolutions: pokemon_v2_pokemonevolution_bool_exp - pokemon_v2_pokemonevolutions_aggregate: pokemon_v2_pokemonevolution_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_gender_max_fields { - id: Int - name: String -} - -"""aggregate min on columns""" -type pokemon_v2_gender_min_fields { - id: Int - name: String -} - -"""Ordering options when selecting data from "pokemon_v2_gender".""" -input pokemon_v2_gender_order_by { - id: order_by - name: order_by - pokemon_v2_pokemonevolutions_aggregate: pokemon_v2_pokemonevolution_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_gender" -""" -enum pokemon_v2_gender_select_column { - """column name""" - id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_gender_stddev_fields { - id: Float -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_gender_stddev_pop_fields { - id: Float -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_gender_stddev_samp_fields { - id: Float -} - -""" -Streaming cursor of the table "pokemon_v2_gender" -""" -input pokemon_v2_gender_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_gender_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_gender_stream_cursor_value_input { - id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_gender_sum_fields { - id: Int -} - -"""aggregate var_pop on columns""" -type pokemon_v2_gender_var_pop_fields { - id: Float -} - -"""aggregate var_samp on columns""" -type pokemon_v2_gender_var_samp_fields { - id: Float -} - -"""aggregate variance on columns""" -type pokemon_v2_gender_variance_fields { - id: Float -} - -""" -columns and relationships of "pokemon_v2_generation" -""" -type pokemon_v2_generation { - id: Int! - name: String! - - """An array relationship""" - pokemon_v2_abilities( - """distinct select on columns""" - distinct_on: [pokemon_v2_ability_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_ability_order_by!] - - """filter the rows returned""" - where: pokemon_v2_ability_bool_exp - ): [pokemon_v2_ability!]! - - """An aggregate relationship""" - pokemon_v2_abilities_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_ability_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_ability_order_by!] - - """filter the rows returned""" - where: pokemon_v2_ability_bool_exp - ): pokemon_v2_ability_aggregate! - - """An array relationship""" - pokemon_v2_generationnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_generationname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_generationname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_generationname_bool_exp - ): [pokemon_v2_generationname!]! - - """An aggregate relationship""" - pokemon_v2_generationnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_generationname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_generationname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_generationname_bool_exp - ): pokemon_v2_generationname_aggregate! - - """An array relationship""" - pokemon_v2_itemgameindices( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemgameindex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemgameindex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemgameindex_bool_exp - ): [pokemon_v2_itemgameindex!]! - - """An aggregate relationship""" - pokemon_v2_itemgameindices_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemgameindex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemgameindex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemgameindex_bool_exp - ): pokemon_v2_itemgameindex_aggregate! - - """An array relationship""" - pokemon_v2_locationgameindices( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationgameindex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationgameindex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationgameindex_bool_exp - ): [pokemon_v2_locationgameindex!]! - - """An aggregate relationship""" - pokemon_v2_locationgameindices_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationgameindex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationgameindex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationgameindex_bool_exp - ): pokemon_v2_locationgameindex_aggregate! - - """An array relationship""" - pokemon_v2_moves( - """distinct select on columns""" - distinct_on: [pokemon_v2_move_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_move_order_by!] - - """filter the rows returned""" - where: pokemon_v2_move_bool_exp - ): [pokemon_v2_move!]! - - """An aggregate relationship""" - pokemon_v2_moves_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_move_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_move_order_by!] - - """filter the rows returned""" - where: pokemon_v2_move_bool_exp - ): pokemon_v2_move_aggregate! - - """An array relationship""" - pokemon_v2_pokemonabilitypasts( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonabilitypast_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonabilitypast_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonabilitypast_bool_exp - ): [pokemon_v2_pokemonabilitypast!]! - - """An aggregate relationship""" - pokemon_v2_pokemonabilitypasts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonabilitypast_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonabilitypast_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonabilitypast_bool_exp - ): pokemon_v2_pokemonabilitypast_aggregate! - - """An array relationship""" - pokemon_v2_pokemonformgenerations( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonformgeneration_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonformgeneration_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonformgeneration_bool_exp - ): [pokemon_v2_pokemonformgeneration!]! - - """An aggregate relationship""" - pokemon_v2_pokemonformgenerations_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonformgeneration_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonformgeneration_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonformgeneration_bool_exp - ): pokemon_v2_pokemonformgeneration_aggregate! - - """An array relationship""" - pokemon_v2_pokemonspecies( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspecies_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspecies_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspecies_bool_exp - ): [pokemon_v2_pokemonspecies!]! - - """An aggregate relationship""" - pokemon_v2_pokemonspecies_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspecies_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspecies_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspecies_bool_exp - ): pokemon_v2_pokemonspecies_aggregate! - - """An array relationship""" - pokemon_v2_pokemontypepasts( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemontypepast_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemontypepast_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemontypepast_bool_exp - ): [pokemon_v2_pokemontypepast!]! - - """An aggregate relationship""" - pokemon_v2_pokemontypepasts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemontypepast_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemontypepast_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemontypepast_bool_exp - ): pokemon_v2_pokemontypepast_aggregate! - - """An object relationship""" - pokemon_v2_region: pokemon_v2_region - - """An array relationship""" - pokemon_v2_typeefficacypasts( - """distinct select on columns""" - distinct_on: [pokemon_v2_typeefficacypast_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_typeefficacypast_order_by!] - - """filter the rows returned""" - where: pokemon_v2_typeefficacypast_bool_exp - ): [pokemon_v2_typeefficacypast!]! - - """An aggregate relationship""" - pokemon_v2_typeefficacypasts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_typeefficacypast_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_typeefficacypast_order_by!] - - """filter the rows returned""" - where: pokemon_v2_typeefficacypast_bool_exp - ): pokemon_v2_typeefficacypast_aggregate! - - """An array relationship""" - pokemon_v2_typegameindices( - """distinct select on columns""" - distinct_on: [pokemon_v2_typegameindex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_typegameindex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_typegameindex_bool_exp - ): [pokemon_v2_typegameindex!]! - - """An aggregate relationship""" - pokemon_v2_typegameindices_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_typegameindex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_typegameindex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_typegameindex_bool_exp - ): pokemon_v2_typegameindex_aggregate! - - """An array relationship""" - pokemon_v2_types( - """distinct select on columns""" - distinct_on: [pokemon_v2_type_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_type_order_by!] - - """filter the rows returned""" - where: pokemon_v2_type_bool_exp - ): [pokemon_v2_type!]! - - """An aggregate relationship""" - pokemon_v2_types_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_type_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_type_order_by!] - - """filter the rows returned""" - where: pokemon_v2_type_bool_exp - ): pokemon_v2_type_aggregate! - - """An array relationship""" - pokemon_v2_versiongroups( - """distinct select on columns""" - distinct_on: [pokemon_v2_versiongroup_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_versiongroup_order_by!] - - """filter the rows returned""" - where: pokemon_v2_versiongroup_bool_exp - ): [pokemon_v2_versiongroup!]! - - """An aggregate relationship""" - pokemon_v2_versiongroups_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_versiongroup_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_versiongroup_order_by!] - - """filter the rows returned""" - where: pokemon_v2_versiongroup_bool_exp - ): pokemon_v2_versiongroup_aggregate! - region_id: Int -} - -""" -aggregated selection of "pokemon_v2_generation" -""" -type pokemon_v2_generation_aggregate { - aggregate: pokemon_v2_generation_aggregate_fields - nodes: [pokemon_v2_generation!]! -} - -input pokemon_v2_generation_aggregate_bool_exp { - count: pokemon_v2_generation_aggregate_bool_exp_count -} - -input pokemon_v2_generation_aggregate_bool_exp_count { - arguments: [pokemon_v2_generation_select_column!] - distinct: Boolean - filter: pokemon_v2_generation_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_generation" -""" -type pokemon_v2_generation_aggregate_fields { - avg: pokemon_v2_generation_avg_fields - count(columns: [pokemon_v2_generation_select_column!], distinct: Boolean): Int! - max: pokemon_v2_generation_max_fields - min: pokemon_v2_generation_min_fields - stddev: pokemon_v2_generation_stddev_fields - stddev_pop: pokemon_v2_generation_stddev_pop_fields - stddev_samp: pokemon_v2_generation_stddev_samp_fields - sum: pokemon_v2_generation_sum_fields - var_pop: pokemon_v2_generation_var_pop_fields - var_samp: pokemon_v2_generation_var_samp_fields - variance: pokemon_v2_generation_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_generation" -""" -input pokemon_v2_generation_aggregate_order_by { - avg: pokemon_v2_generation_avg_order_by - count: order_by - max: pokemon_v2_generation_max_order_by - min: pokemon_v2_generation_min_order_by - stddev: pokemon_v2_generation_stddev_order_by - stddev_pop: pokemon_v2_generation_stddev_pop_order_by - stddev_samp: pokemon_v2_generation_stddev_samp_order_by - sum: pokemon_v2_generation_sum_order_by - var_pop: pokemon_v2_generation_var_pop_order_by - var_samp: pokemon_v2_generation_var_samp_order_by - variance: pokemon_v2_generation_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_generation_avg_fields { - id: Float - region_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_generation" -""" -input pokemon_v2_generation_avg_order_by { - id: order_by - region_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_generation". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_generation_bool_exp { - _and: [pokemon_v2_generation_bool_exp!] - _not: pokemon_v2_generation_bool_exp - _or: [pokemon_v2_generation_bool_exp!] - id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_abilities: pokemon_v2_ability_bool_exp - pokemon_v2_abilities_aggregate: pokemon_v2_ability_aggregate_bool_exp - pokemon_v2_generationnames: pokemon_v2_generationname_bool_exp - pokemon_v2_generationnames_aggregate: pokemon_v2_generationname_aggregate_bool_exp - pokemon_v2_itemgameindices: pokemon_v2_itemgameindex_bool_exp - pokemon_v2_itemgameindices_aggregate: pokemon_v2_itemgameindex_aggregate_bool_exp - pokemon_v2_locationgameindices: pokemon_v2_locationgameindex_bool_exp - pokemon_v2_locationgameindices_aggregate: pokemon_v2_locationgameindex_aggregate_bool_exp - pokemon_v2_moves: pokemon_v2_move_bool_exp - pokemon_v2_moves_aggregate: pokemon_v2_move_aggregate_bool_exp - pokemon_v2_pokemonabilitypasts: pokemon_v2_pokemonabilitypast_bool_exp - pokemon_v2_pokemonabilitypasts_aggregate: pokemon_v2_pokemonabilitypast_aggregate_bool_exp - pokemon_v2_pokemonformgenerations: pokemon_v2_pokemonformgeneration_bool_exp - pokemon_v2_pokemonformgenerations_aggregate: pokemon_v2_pokemonformgeneration_aggregate_bool_exp - pokemon_v2_pokemonspecies: pokemon_v2_pokemonspecies_bool_exp - pokemon_v2_pokemonspecies_aggregate: pokemon_v2_pokemonspecies_aggregate_bool_exp - pokemon_v2_pokemontypepasts: pokemon_v2_pokemontypepast_bool_exp - pokemon_v2_pokemontypepasts_aggregate: pokemon_v2_pokemontypepast_aggregate_bool_exp - pokemon_v2_region: pokemon_v2_region_bool_exp - pokemon_v2_typeefficacypasts: pokemon_v2_typeefficacypast_bool_exp - pokemon_v2_typeefficacypasts_aggregate: pokemon_v2_typeefficacypast_aggregate_bool_exp - pokemon_v2_typegameindices: pokemon_v2_typegameindex_bool_exp - pokemon_v2_typegameindices_aggregate: pokemon_v2_typegameindex_aggregate_bool_exp - pokemon_v2_types: pokemon_v2_type_bool_exp - pokemon_v2_types_aggregate: pokemon_v2_type_aggregate_bool_exp - pokemon_v2_versiongroups: pokemon_v2_versiongroup_bool_exp - pokemon_v2_versiongroups_aggregate: pokemon_v2_versiongroup_aggregate_bool_exp - region_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_generation_max_fields { - id: Int - name: String - region_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_generation" -""" -input pokemon_v2_generation_max_order_by { - id: order_by - name: order_by - region_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_generation_min_fields { - id: Int - name: String - region_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_generation" -""" -input pokemon_v2_generation_min_order_by { - id: order_by - name: order_by - region_id: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_generation".""" -input pokemon_v2_generation_order_by { - id: order_by - name: order_by - pokemon_v2_abilities_aggregate: pokemon_v2_ability_aggregate_order_by - pokemon_v2_generationnames_aggregate: pokemon_v2_generationname_aggregate_order_by - pokemon_v2_itemgameindices_aggregate: pokemon_v2_itemgameindex_aggregate_order_by - pokemon_v2_locationgameindices_aggregate: pokemon_v2_locationgameindex_aggregate_order_by - pokemon_v2_moves_aggregate: pokemon_v2_move_aggregate_order_by - pokemon_v2_pokemonabilitypasts_aggregate: pokemon_v2_pokemonabilitypast_aggregate_order_by - pokemon_v2_pokemonformgenerations_aggregate: pokemon_v2_pokemonformgeneration_aggregate_order_by - pokemon_v2_pokemonspecies_aggregate: pokemon_v2_pokemonspecies_aggregate_order_by - pokemon_v2_pokemontypepasts_aggregate: pokemon_v2_pokemontypepast_aggregate_order_by - pokemon_v2_region: pokemon_v2_region_order_by - pokemon_v2_typeefficacypasts_aggregate: pokemon_v2_typeefficacypast_aggregate_order_by - pokemon_v2_typegameindices_aggregate: pokemon_v2_typegameindex_aggregate_order_by - pokemon_v2_types_aggregate: pokemon_v2_type_aggregate_order_by - pokemon_v2_versiongroups_aggregate: pokemon_v2_versiongroup_aggregate_order_by - region_id: order_by -} - -""" -select columns of table "pokemon_v2_generation" -""" -enum pokemon_v2_generation_select_column { - """column name""" - id - - """column name""" - name - - """column name""" - region_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_generation_stddev_fields { - id: Float - region_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_generation" -""" -input pokemon_v2_generation_stddev_order_by { - id: order_by - region_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_generation_stddev_pop_fields { - id: Float - region_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_generation" -""" -input pokemon_v2_generation_stddev_pop_order_by { - id: order_by - region_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_generation_stddev_samp_fields { - id: Float - region_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_generation" -""" -input pokemon_v2_generation_stddev_samp_order_by { - id: order_by - region_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_generation" -""" -input pokemon_v2_generation_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_generation_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_generation_stream_cursor_value_input { - id: Int - name: String - region_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_generation_sum_fields { - id: Int - region_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_generation" -""" -input pokemon_v2_generation_sum_order_by { - id: order_by - region_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_generation_var_pop_fields { - id: Float - region_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_generation" -""" -input pokemon_v2_generation_var_pop_order_by { - id: order_by - region_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_generation_var_samp_fields { - id: Float - region_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_generation" -""" -input pokemon_v2_generation_var_samp_order_by { - id: order_by - region_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_generation_variance_fields { - id: Float - region_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_generation" -""" -input pokemon_v2_generation_variance_order_by { - id: order_by - region_id: order_by -} - -""" -columns and relationships of "pokemon_v2_generationname" -""" -type pokemon_v2_generationname { - generation_id: Int - id: Int! - language_id: Int - name: String! - - """An object relationship""" - pokemon_v2_generation: pokemon_v2_generation - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language -} - -""" -aggregated selection of "pokemon_v2_generationname" -""" -type pokemon_v2_generationname_aggregate { - aggregate: pokemon_v2_generationname_aggregate_fields - nodes: [pokemon_v2_generationname!]! -} - -input pokemon_v2_generationname_aggregate_bool_exp { - count: pokemon_v2_generationname_aggregate_bool_exp_count -} - -input pokemon_v2_generationname_aggregate_bool_exp_count { - arguments: [pokemon_v2_generationname_select_column!] - distinct: Boolean - filter: pokemon_v2_generationname_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_generationname" -""" -type pokemon_v2_generationname_aggregate_fields { - avg: pokemon_v2_generationname_avg_fields - count(columns: [pokemon_v2_generationname_select_column!], distinct: Boolean): Int! - max: pokemon_v2_generationname_max_fields - min: pokemon_v2_generationname_min_fields - stddev: pokemon_v2_generationname_stddev_fields - stddev_pop: pokemon_v2_generationname_stddev_pop_fields - stddev_samp: pokemon_v2_generationname_stddev_samp_fields - sum: pokemon_v2_generationname_sum_fields - var_pop: pokemon_v2_generationname_var_pop_fields - var_samp: pokemon_v2_generationname_var_samp_fields - variance: pokemon_v2_generationname_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_generationname" -""" -input pokemon_v2_generationname_aggregate_order_by { - avg: pokemon_v2_generationname_avg_order_by - count: order_by - max: pokemon_v2_generationname_max_order_by - min: pokemon_v2_generationname_min_order_by - stddev: pokemon_v2_generationname_stddev_order_by - stddev_pop: pokemon_v2_generationname_stddev_pop_order_by - stddev_samp: pokemon_v2_generationname_stddev_samp_order_by - sum: pokemon_v2_generationname_sum_order_by - var_pop: pokemon_v2_generationname_var_pop_order_by - var_samp: pokemon_v2_generationname_var_samp_order_by - variance: pokemon_v2_generationname_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_generationname_avg_fields { - generation_id: Float - id: Float - language_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_generationname" -""" -input pokemon_v2_generationname_avg_order_by { - generation_id: order_by - id: order_by - language_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_generationname". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_generationname_bool_exp { - _and: [pokemon_v2_generationname_bool_exp!] - _not: pokemon_v2_generationname_bool_exp - _or: [pokemon_v2_generationname_bool_exp!] - generation_id: Int_comparison_exp - id: Int_comparison_exp - language_id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_generation: pokemon_v2_generation_bool_exp - pokemon_v2_language: pokemon_v2_language_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_generationname_max_fields { - generation_id: Int - id: Int - language_id: Int - name: String -} - -""" -order by max() on columns of table "pokemon_v2_generationname" -""" -input pokemon_v2_generationname_max_order_by { - generation_id: order_by - id: order_by - language_id: order_by - name: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_generationname_min_fields { - generation_id: Int - id: Int - language_id: Int - name: String -} - -""" -order by min() on columns of table "pokemon_v2_generationname" -""" -input pokemon_v2_generationname_min_order_by { - generation_id: order_by - id: order_by - language_id: order_by - name: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_generationname".""" -input pokemon_v2_generationname_order_by { - generation_id: order_by - id: order_by - language_id: order_by - name: order_by - pokemon_v2_generation: pokemon_v2_generation_order_by - pokemon_v2_language: pokemon_v2_language_order_by -} - -""" -select columns of table "pokemon_v2_generationname" -""" -enum pokemon_v2_generationname_select_column { - """column name""" - generation_id - - """column name""" - id - - """column name""" - language_id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_generationname_stddev_fields { - generation_id: Float - id: Float - language_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_generationname" -""" -input pokemon_v2_generationname_stddev_order_by { - generation_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_generationname_stddev_pop_fields { - generation_id: Float - id: Float - language_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_generationname" -""" -input pokemon_v2_generationname_stddev_pop_order_by { - generation_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_generationname_stddev_samp_fields { - generation_id: Float - id: Float - language_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_generationname" -""" -input pokemon_v2_generationname_stddev_samp_order_by { - generation_id: order_by - id: order_by - language_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_generationname" -""" -input pokemon_v2_generationname_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_generationname_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_generationname_stream_cursor_value_input { - generation_id: Int - id: Int - language_id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_generationname_sum_fields { - generation_id: Int - id: Int - language_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_generationname" -""" -input pokemon_v2_generationname_sum_order_by { - generation_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_generationname_var_pop_fields { - generation_id: Float - id: Float - language_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_generationname" -""" -input pokemon_v2_generationname_var_pop_order_by { - generation_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_generationname_var_samp_fields { - generation_id: Float - id: Float - language_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_generationname" -""" -input pokemon_v2_generationname_var_samp_order_by { - generation_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_generationname_variance_fields { - generation_id: Float - id: Float - language_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_generationname" -""" -input pokemon_v2_generationname_variance_order_by { - generation_id: order_by - id: order_by - language_id: order_by -} - -""" -columns and relationships of "pokemon_v2_growthrate" -""" -type pokemon_v2_growthrate { - formula: String! - id: Int! - name: String! - - """An array relationship""" - pokemon_v2_experiences( - """distinct select on columns""" - distinct_on: [pokemon_v2_experience_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_experience_order_by!] - - """filter the rows returned""" - where: pokemon_v2_experience_bool_exp - ): [pokemon_v2_experience!]! - - """An aggregate relationship""" - pokemon_v2_experiences_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_experience_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_experience_order_by!] - - """filter the rows returned""" - where: pokemon_v2_experience_bool_exp - ): pokemon_v2_experience_aggregate! - - """An array relationship""" - pokemon_v2_growthratedescriptions( - """distinct select on columns""" - distinct_on: [pokemon_v2_growthratedescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_growthratedescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_growthratedescription_bool_exp - ): [pokemon_v2_growthratedescription!]! - - """An aggregate relationship""" - pokemon_v2_growthratedescriptions_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_growthratedescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_growthratedescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_growthratedescription_bool_exp - ): pokemon_v2_growthratedescription_aggregate! - - """An array relationship""" - pokemon_v2_machines( - """distinct select on columns""" - distinct_on: [pokemon_v2_machine_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_machine_order_by!] - - """filter the rows returned""" - where: pokemon_v2_machine_bool_exp - ): [pokemon_v2_machine!]! - - """An aggregate relationship""" - pokemon_v2_machines_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_machine_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_machine_order_by!] - - """filter the rows returned""" - where: pokemon_v2_machine_bool_exp - ): pokemon_v2_machine_aggregate! - - """An array relationship""" - pokemon_v2_pokemonspecies( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspecies_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspecies_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspecies_bool_exp - ): [pokemon_v2_pokemonspecies!]! - - """An aggregate relationship""" - pokemon_v2_pokemonspecies_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspecies_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspecies_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspecies_bool_exp - ): pokemon_v2_pokemonspecies_aggregate! -} - -""" -aggregated selection of "pokemon_v2_growthrate" -""" -type pokemon_v2_growthrate_aggregate { - aggregate: pokemon_v2_growthrate_aggregate_fields - nodes: [pokemon_v2_growthrate!]! -} - -""" -aggregate fields of "pokemon_v2_growthrate" -""" -type pokemon_v2_growthrate_aggregate_fields { - avg: pokemon_v2_growthrate_avg_fields - count(columns: [pokemon_v2_growthrate_select_column!], distinct: Boolean): Int! - max: pokemon_v2_growthrate_max_fields - min: pokemon_v2_growthrate_min_fields - stddev: pokemon_v2_growthrate_stddev_fields - stddev_pop: pokemon_v2_growthrate_stddev_pop_fields - stddev_samp: pokemon_v2_growthrate_stddev_samp_fields - sum: pokemon_v2_growthrate_sum_fields - var_pop: pokemon_v2_growthrate_var_pop_fields - var_samp: pokemon_v2_growthrate_var_samp_fields - variance: pokemon_v2_growthrate_variance_fields -} - -"""aggregate avg on columns""" -type pokemon_v2_growthrate_avg_fields { - id: Float -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_growthrate". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_growthrate_bool_exp { - _and: [pokemon_v2_growthrate_bool_exp!] - _not: pokemon_v2_growthrate_bool_exp - _or: [pokemon_v2_growthrate_bool_exp!] - formula: String_comparison_exp - id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_experiences: pokemon_v2_experience_bool_exp - pokemon_v2_experiences_aggregate: pokemon_v2_experience_aggregate_bool_exp - pokemon_v2_growthratedescriptions: pokemon_v2_growthratedescription_bool_exp - pokemon_v2_growthratedescriptions_aggregate: pokemon_v2_growthratedescription_aggregate_bool_exp - pokemon_v2_machines: pokemon_v2_machine_bool_exp - pokemon_v2_machines_aggregate: pokemon_v2_machine_aggregate_bool_exp - pokemon_v2_pokemonspecies: pokemon_v2_pokemonspecies_bool_exp - pokemon_v2_pokemonspecies_aggregate: pokemon_v2_pokemonspecies_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_growthrate_max_fields { - formula: String - id: Int - name: String -} - -"""aggregate min on columns""" -type pokemon_v2_growthrate_min_fields { - formula: String - id: Int - name: String -} - -"""Ordering options when selecting data from "pokemon_v2_growthrate".""" -input pokemon_v2_growthrate_order_by { - formula: order_by - id: order_by - name: order_by - pokemon_v2_experiences_aggregate: pokemon_v2_experience_aggregate_order_by - pokemon_v2_growthratedescriptions_aggregate: pokemon_v2_growthratedescription_aggregate_order_by - pokemon_v2_machines_aggregate: pokemon_v2_machine_aggregate_order_by - pokemon_v2_pokemonspecies_aggregate: pokemon_v2_pokemonspecies_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_growthrate" -""" -enum pokemon_v2_growthrate_select_column { - """column name""" - formula - - """column name""" - id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_growthrate_stddev_fields { - id: Float -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_growthrate_stddev_pop_fields { - id: Float -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_growthrate_stddev_samp_fields { - id: Float -} - -""" -Streaming cursor of the table "pokemon_v2_growthrate" -""" -input pokemon_v2_growthrate_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_growthrate_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_growthrate_stream_cursor_value_input { - formula: String - id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_growthrate_sum_fields { - id: Int -} - -"""aggregate var_pop on columns""" -type pokemon_v2_growthrate_var_pop_fields { - id: Float -} - -"""aggregate var_samp on columns""" -type pokemon_v2_growthrate_var_samp_fields { - id: Float -} - -"""aggregate variance on columns""" -type pokemon_v2_growthrate_variance_fields { - id: Float -} - -""" -columns and relationships of "pokemon_v2_growthratedescription" -""" -type pokemon_v2_growthratedescription { - description: String! - growth_rate_id: Int - id: Int! - language_id: Int - - """An object relationship""" - pokemon_v2_growthrate: pokemon_v2_growthrate - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language -} - -""" -aggregated selection of "pokemon_v2_growthratedescription" -""" -type pokemon_v2_growthratedescription_aggregate { - aggregate: pokemon_v2_growthratedescription_aggregate_fields - nodes: [pokemon_v2_growthratedescription!]! -} - -input pokemon_v2_growthratedescription_aggregate_bool_exp { - count: pokemon_v2_growthratedescription_aggregate_bool_exp_count -} - -input pokemon_v2_growthratedescription_aggregate_bool_exp_count { - arguments: [pokemon_v2_growthratedescription_select_column!] - distinct: Boolean - filter: pokemon_v2_growthratedescription_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_growthratedescription" -""" -type pokemon_v2_growthratedescription_aggregate_fields { - avg: pokemon_v2_growthratedescription_avg_fields - count(columns: [pokemon_v2_growthratedescription_select_column!], distinct: Boolean): Int! - max: pokemon_v2_growthratedescription_max_fields - min: pokemon_v2_growthratedescription_min_fields - stddev: pokemon_v2_growthratedescription_stddev_fields - stddev_pop: pokemon_v2_growthratedescription_stddev_pop_fields - stddev_samp: pokemon_v2_growthratedescription_stddev_samp_fields - sum: pokemon_v2_growthratedescription_sum_fields - var_pop: pokemon_v2_growthratedescription_var_pop_fields - var_samp: pokemon_v2_growthratedescription_var_samp_fields - variance: pokemon_v2_growthratedescription_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_growthratedescription" -""" -input pokemon_v2_growthratedescription_aggregate_order_by { - avg: pokemon_v2_growthratedescription_avg_order_by - count: order_by - max: pokemon_v2_growthratedescription_max_order_by - min: pokemon_v2_growthratedescription_min_order_by - stddev: pokemon_v2_growthratedescription_stddev_order_by - stddev_pop: pokemon_v2_growthratedescription_stddev_pop_order_by - stddev_samp: pokemon_v2_growthratedescription_stddev_samp_order_by - sum: pokemon_v2_growthratedescription_sum_order_by - var_pop: pokemon_v2_growthratedescription_var_pop_order_by - var_samp: pokemon_v2_growthratedescription_var_samp_order_by - variance: pokemon_v2_growthratedescription_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_growthratedescription_avg_fields { - growth_rate_id: Float - id: Float - language_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_growthratedescription" -""" -input pokemon_v2_growthratedescription_avg_order_by { - growth_rate_id: order_by - id: order_by - language_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_growthratedescription". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_growthratedescription_bool_exp { - _and: [pokemon_v2_growthratedescription_bool_exp!] - _not: pokemon_v2_growthratedescription_bool_exp - _or: [pokemon_v2_growthratedescription_bool_exp!] - description: String_comparison_exp - growth_rate_id: Int_comparison_exp - id: Int_comparison_exp - language_id: Int_comparison_exp - pokemon_v2_growthrate: pokemon_v2_growthrate_bool_exp - pokemon_v2_language: pokemon_v2_language_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_growthratedescription_max_fields { - description: String - growth_rate_id: Int - id: Int - language_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_growthratedescription" -""" -input pokemon_v2_growthratedescription_max_order_by { - description: order_by - growth_rate_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_growthratedescription_min_fields { - description: String - growth_rate_id: Int - id: Int - language_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_growthratedescription" -""" -input pokemon_v2_growthratedescription_min_order_by { - description: order_by - growth_rate_id: order_by - id: order_by - language_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_growthratedescription". -""" -input pokemon_v2_growthratedescription_order_by { - description: order_by - growth_rate_id: order_by - id: order_by - language_id: order_by - pokemon_v2_growthrate: pokemon_v2_growthrate_order_by - pokemon_v2_language: pokemon_v2_language_order_by -} - -""" -select columns of table "pokemon_v2_growthratedescription" -""" -enum pokemon_v2_growthratedescription_select_column { - """column name""" - description - - """column name""" - growth_rate_id - - """column name""" - id - - """column name""" - language_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_growthratedescription_stddev_fields { - growth_rate_id: Float - id: Float - language_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_growthratedescription" -""" -input pokemon_v2_growthratedescription_stddev_order_by { - growth_rate_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_growthratedescription_stddev_pop_fields { - growth_rate_id: Float - id: Float - language_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_growthratedescription" -""" -input pokemon_v2_growthratedescription_stddev_pop_order_by { - growth_rate_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_growthratedescription_stddev_samp_fields { - growth_rate_id: Float - id: Float - language_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_growthratedescription" -""" -input pokemon_v2_growthratedescription_stddev_samp_order_by { - growth_rate_id: order_by - id: order_by - language_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_growthratedescription" -""" -input pokemon_v2_growthratedescription_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_growthratedescription_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_growthratedescription_stream_cursor_value_input { - description: String - growth_rate_id: Int - id: Int - language_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_growthratedescription_sum_fields { - growth_rate_id: Int - id: Int - language_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_growthratedescription" -""" -input pokemon_v2_growthratedescription_sum_order_by { - growth_rate_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_growthratedescription_var_pop_fields { - growth_rate_id: Float - id: Float - language_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_growthratedescription" -""" -input pokemon_v2_growthratedescription_var_pop_order_by { - growth_rate_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_growthratedescription_var_samp_fields { - growth_rate_id: Float - id: Float - language_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_growthratedescription" -""" -input pokemon_v2_growthratedescription_var_samp_order_by { - growth_rate_id: order_by - id: order_by - language_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_growthratedescription_variance_fields { - growth_rate_id: Float - id: Float - language_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_growthratedescription" -""" -input pokemon_v2_growthratedescription_variance_order_by { - growth_rate_id: order_by - id: order_by - language_id: order_by -} - -""" -columns and relationships of "pokemon_v2_item" -""" -type pokemon_v2_item { - cost: Int - fling_power: Int - id: Int! - item_category_id: Int - item_fling_effect_id: Int - name: String! - - """An array relationship""" - pokemonV2PokemonevolutionsByHeldItemId( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonevolution_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonevolution_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonevolution_bool_exp - ): [pokemon_v2_pokemonevolution!]! - - """An aggregate relationship""" - pokemonV2PokemonevolutionsByHeldItemId_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonevolution_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonevolution_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonevolution_bool_exp - ): pokemon_v2_pokemonevolution_aggregate! - - """An array relationship""" - pokemon_v2_berries( - """distinct select on columns""" - distinct_on: [pokemon_v2_berry_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berry_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berry_bool_exp - ): [pokemon_v2_berry!]! - - """An aggregate relationship""" - pokemon_v2_berries_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_berry_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berry_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berry_bool_exp - ): pokemon_v2_berry_aggregate! - - """An array relationship""" - pokemon_v2_evolutionchains( - """distinct select on columns""" - distinct_on: [pokemon_v2_evolutionchain_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_evolutionchain_order_by!] - - """filter the rows returned""" - where: pokemon_v2_evolutionchain_bool_exp - ): [pokemon_v2_evolutionchain!]! - - """An aggregate relationship""" - pokemon_v2_evolutionchains_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_evolutionchain_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_evolutionchain_order_by!] - - """filter the rows returned""" - where: pokemon_v2_evolutionchain_bool_exp - ): pokemon_v2_evolutionchain_aggregate! - - """An array relationship""" - pokemon_v2_itemattributemaps( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemattributemap_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemattributemap_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemattributemap_bool_exp - ): [pokemon_v2_itemattributemap!]! - - """An aggregate relationship""" - pokemon_v2_itemattributemaps_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemattributemap_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemattributemap_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemattributemap_bool_exp - ): pokemon_v2_itemattributemap_aggregate! - - """An object relationship""" - pokemon_v2_itemcategory: pokemon_v2_itemcategory - - """An array relationship""" - pokemon_v2_itemeffecttexts( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemeffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemeffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemeffecttext_bool_exp - ): [pokemon_v2_itemeffecttext!]! - - """An aggregate relationship""" - pokemon_v2_itemeffecttexts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemeffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemeffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemeffecttext_bool_exp - ): pokemon_v2_itemeffecttext_aggregate! - - """An array relationship""" - pokemon_v2_itemflavortexts( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemflavortext_bool_exp - ): [pokemon_v2_itemflavortext!]! - - """An aggregate relationship""" - pokemon_v2_itemflavortexts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemflavortext_bool_exp - ): pokemon_v2_itemflavortext_aggregate! - - """An object relationship""" - pokemon_v2_itemflingeffect: pokemon_v2_itemflingeffect - - """An array relationship""" - pokemon_v2_itemgameindices( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemgameindex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemgameindex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemgameindex_bool_exp - ): [pokemon_v2_itemgameindex!]! - - """An aggregate relationship""" - pokemon_v2_itemgameindices_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemgameindex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemgameindex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemgameindex_bool_exp - ): pokemon_v2_itemgameindex_aggregate! - - """An array relationship""" - pokemon_v2_itemnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemname_bool_exp - ): [pokemon_v2_itemname!]! - - """An aggregate relationship""" - pokemon_v2_itemnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemname_bool_exp - ): pokemon_v2_itemname_aggregate! - - """An array relationship""" - pokemon_v2_itemsprites( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemsprites_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemsprites_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemsprites_bool_exp - ): [pokemon_v2_itemsprites!]! - - """An aggregate relationship""" - pokemon_v2_itemsprites_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemsprites_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemsprites_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemsprites_bool_exp - ): pokemon_v2_itemsprites_aggregate! - - """An array relationship""" - pokemon_v2_machines( - """distinct select on columns""" - distinct_on: [pokemon_v2_machine_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_machine_order_by!] - - """filter the rows returned""" - where: pokemon_v2_machine_bool_exp - ): [pokemon_v2_machine!]! - - """An aggregate relationship""" - pokemon_v2_machines_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_machine_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_machine_order_by!] - - """filter the rows returned""" - where: pokemon_v2_machine_bool_exp - ): pokemon_v2_machine_aggregate! - - """An array relationship""" - pokemon_v2_pokemonevolutions( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonevolution_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonevolution_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonevolution_bool_exp - ): [pokemon_v2_pokemonevolution!]! - - """An aggregate relationship""" - pokemon_v2_pokemonevolutions_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonevolution_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonevolution_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonevolution_bool_exp - ): pokemon_v2_pokemonevolution_aggregate! - - """An array relationship""" - pokemon_v2_pokemonitems( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonitem_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonitem_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonitem_bool_exp - ): [pokemon_v2_pokemonitem!]! - - """An aggregate relationship""" - pokemon_v2_pokemonitems_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonitem_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonitem_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonitem_bool_exp - ): pokemon_v2_pokemonitem_aggregate! -} - -""" -aggregated selection of "pokemon_v2_item" -""" -type pokemon_v2_item_aggregate { - aggregate: pokemon_v2_item_aggregate_fields - nodes: [pokemon_v2_item!]! -} - -input pokemon_v2_item_aggregate_bool_exp { - count: pokemon_v2_item_aggregate_bool_exp_count -} - -input pokemon_v2_item_aggregate_bool_exp_count { - arguments: [pokemon_v2_item_select_column!] - distinct: Boolean - filter: pokemon_v2_item_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_item" -""" -type pokemon_v2_item_aggregate_fields { - avg: pokemon_v2_item_avg_fields - count(columns: [pokemon_v2_item_select_column!], distinct: Boolean): Int! - max: pokemon_v2_item_max_fields - min: pokemon_v2_item_min_fields - stddev: pokemon_v2_item_stddev_fields - stddev_pop: pokemon_v2_item_stddev_pop_fields - stddev_samp: pokemon_v2_item_stddev_samp_fields - sum: pokemon_v2_item_sum_fields - var_pop: pokemon_v2_item_var_pop_fields - var_samp: pokemon_v2_item_var_samp_fields - variance: pokemon_v2_item_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_item" -""" -input pokemon_v2_item_aggregate_order_by { - avg: pokemon_v2_item_avg_order_by - count: order_by - max: pokemon_v2_item_max_order_by - min: pokemon_v2_item_min_order_by - stddev: pokemon_v2_item_stddev_order_by - stddev_pop: pokemon_v2_item_stddev_pop_order_by - stddev_samp: pokemon_v2_item_stddev_samp_order_by - sum: pokemon_v2_item_sum_order_by - var_pop: pokemon_v2_item_var_pop_order_by - var_samp: pokemon_v2_item_var_samp_order_by - variance: pokemon_v2_item_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_item_avg_fields { - cost: Float - fling_power: Float - id: Float - item_category_id: Float - item_fling_effect_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_item" -""" -input pokemon_v2_item_avg_order_by { - cost: order_by - fling_power: order_by - id: order_by - item_category_id: order_by - item_fling_effect_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_item". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_item_bool_exp { - _and: [pokemon_v2_item_bool_exp!] - _not: pokemon_v2_item_bool_exp - _or: [pokemon_v2_item_bool_exp!] - cost: Int_comparison_exp - fling_power: Int_comparison_exp - id: Int_comparison_exp - item_category_id: Int_comparison_exp - item_fling_effect_id: Int_comparison_exp - name: String_comparison_exp - pokemonV2PokemonevolutionsByHeldItemId: pokemon_v2_pokemonevolution_bool_exp - pokemonV2PokemonevolutionsByHeldItemId_aggregate: pokemon_v2_pokemonevolution_aggregate_bool_exp - pokemon_v2_berries: pokemon_v2_berry_bool_exp - pokemon_v2_berries_aggregate: pokemon_v2_berry_aggregate_bool_exp - pokemon_v2_evolutionchains: pokemon_v2_evolutionchain_bool_exp - pokemon_v2_evolutionchains_aggregate: pokemon_v2_evolutionchain_aggregate_bool_exp - pokemon_v2_itemattributemaps: pokemon_v2_itemattributemap_bool_exp - pokemon_v2_itemattributemaps_aggregate: pokemon_v2_itemattributemap_aggregate_bool_exp - pokemon_v2_itemcategory: pokemon_v2_itemcategory_bool_exp - pokemon_v2_itemeffecttexts: pokemon_v2_itemeffecttext_bool_exp - pokemon_v2_itemeffecttexts_aggregate: pokemon_v2_itemeffecttext_aggregate_bool_exp - pokemon_v2_itemflavortexts: pokemon_v2_itemflavortext_bool_exp - pokemon_v2_itemflavortexts_aggregate: pokemon_v2_itemflavortext_aggregate_bool_exp - pokemon_v2_itemflingeffect: pokemon_v2_itemflingeffect_bool_exp - pokemon_v2_itemgameindices: pokemon_v2_itemgameindex_bool_exp - pokemon_v2_itemgameindices_aggregate: pokemon_v2_itemgameindex_aggregate_bool_exp - pokemon_v2_itemnames: pokemon_v2_itemname_bool_exp - pokemon_v2_itemnames_aggregate: pokemon_v2_itemname_aggregate_bool_exp - pokemon_v2_itemsprites: pokemon_v2_itemsprites_bool_exp - pokemon_v2_itemsprites_aggregate: pokemon_v2_itemsprites_aggregate_bool_exp - pokemon_v2_machines: pokemon_v2_machine_bool_exp - pokemon_v2_machines_aggregate: pokemon_v2_machine_aggregate_bool_exp - pokemon_v2_pokemonevolutions: pokemon_v2_pokemonevolution_bool_exp - pokemon_v2_pokemonevolutions_aggregate: pokemon_v2_pokemonevolution_aggregate_bool_exp - pokemon_v2_pokemonitems: pokemon_v2_pokemonitem_bool_exp - pokemon_v2_pokemonitems_aggregate: pokemon_v2_pokemonitem_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_item_max_fields { - cost: Int - fling_power: Int - id: Int - item_category_id: Int - item_fling_effect_id: Int - name: String -} - -""" -order by max() on columns of table "pokemon_v2_item" -""" -input pokemon_v2_item_max_order_by { - cost: order_by - fling_power: order_by - id: order_by - item_category_id: order_by - item_fling_effect_id: order_by - name: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_item_min_fields { - cost: Int - fling_power: Int - id: Int - item_category_id: Int - item_fling_effect_id: Int - name: String -} - -""" -order by min() on columns of table "pokemon_v2_item" -""" -input pokemon_v2_item_min_order_by { - cost: order_by - fling_power: order_by - id: order_by - item_category_id: order_by - item_fling_effect_id: order_by - name: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_item".""" -input pokemon_v2_item_order_by { - cost: order_by - fling_power: order_by - id: order_by - item_category_id: order_by - item_fling_effect_id: order_by - name: order_by - pokemonV2PokemonevolutionsByHeldItemId_aggregate: pokemon_v2_pokemonevolution_aggregate_order_by - pokemon_v2_berries_aggregate: pokemon_v2_berry_aggregate_order_by - pokemon_v2_evolutionchains_aggregate: pokemon_v2_evolutionchain_aggregate_order_by - pokemon_v2_itemattributemaps_aggregate: pokemon_v2_itemattributemap_aggregate_order_by - pokemon_v2_itemcategory: pokemon_v2_itemcategory_order_by - pokemon_v2_itemeffecttexts_aggregate: pokemon_v2_itemeffecttext_aggregate_order_by - pokemon_v2_itemflavortexts_aggregate: pokemon_v2_itemflavortext_aggregate_order_by - pokemon_v2_itemflingeffect: pokemon_v2_itemflingeffect_order_by - pokemon_v2_itemgameindices_aggregate: pokemon_v2_itemgameindex_aggregate_order_by - pokemon_v2_itemnames_aggregate: pokemon_v2_itemname_aggregate_order_by - pokemon_v2_itemsprites_aggregate: pokemon_v2_itemsprites_aggregate_order_by - pokemon_v2_machines_aggregate: pokemon_v2_machine_aggregate_order_by - pokemon_v2_pokemonevolutions_aggregate: pokemon_v2_pokemonevolution_aggregate_order_by - pokemon_v2_pokemonitems_aggregate: pokemon_v2_pokemonitem_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_item" -""" -enum pokemon_v2_item_select_column { - """column name""" - cost - - """column name""" - fling_power - - """column name""" - id - - """column name""" - item_category_id - - """column name""" - item_fling_effect_id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_item_stddev_fields { - cost: Float - fling_power: Float - id: Float - item_category_id: Float - item_fling_effect_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_item" -""" -input pokemon_v2_item_stddev_order_by { - cost: order_by - fling_power: order_by - id: order_by - item_category_id: order_by - item_fling_effect_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_item_stddev_pop_fields { - cost: Float - fling_power: Float - id: Float - item_category_id: Float - item_fling_effect_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_item" -""" -input pokemon_v2_item_stddev_pop_order_by { - cost: order_by - fling_power: order_by - id: order_by - item_category_id: order_by - item_fling_effect_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_item_stddev_samp_fields { - cost: Float - fling_power: Float - id: Float - item_category_id: Float - item_fling_effect_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_item" -""" -input pokemon_v2_item_stddev_samp_order_by { - cost: order_by - fling_power: order_by - id: order_by - item_category_id: order_by - item_fling_effect_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_item" -""" -input pokemon_v2_item_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_item_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_item_stream_cursor_value_input { - cost: Int - fling_power: Int - id: Int - item_category_id: Int - item_fling_effect_id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_item_sum_fields { - cost: Int - fling_power: Int - id: Int - item_category_id: Int - item_fling_effect_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_item" -""" -input pokemon_v2_item_sum_order_by { - cost: order_by - fling_power: order_by - id: order_by - item_category_id: order_by - item_fling_effect_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_item_var_pop_fields { - cost: Float - fling_power: Float - id: Float - item_category_id: Float - item_fling_effect_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_item" -""" -input pokemon_v2_item_var_pop_order_by { - cost: order_by - fling_power: order_by - id: order_by - item_category_id: order_by - item_fling_effect_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_item_var_samp_fields { - cost: Float - fling_power: Float - id: Float - item_category_id: Float - item_fling_effect_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_item" -""" -input pokemon_v2_item_var_samp_order_by { - cost: order_by - fling_power: order_by - id: order_by - item_category_id: order_by - item_fling_effect_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_item_variance_fields { - cost: Float - fling_power: Float - id: Float - item_category_id: Float - item_fling_effect_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_item" -""" -input pokemon_v2_item_variance_order_by { - cost: order_by - fling_power: order_by - id: order_by - item_category_id: order_by - item_fling_effect_id: order_by -} - -""" -columns and relationships of "pokemon_v2_itemattribute" -""" -type pokemon_v2_itemattribute { - id: Int! - name: String! - - """An array relationship""" - pokemon_v2_itemattributedescriptions( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemattributedescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemattributedescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemattributedescription_bool_exp - ): [pokemon_v2_itemattributedescription!]! - - """An aggregate relationship""" - pokemon_v2_itemattributedescriptions_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemattributedescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemattributedescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemattributedescription_bool_exp - ): pokemon_v2_itemattributedescription_aggregate! - - """An array relationship""" - pokemon_v2_itemattributemaps( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemattributemap_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemattributemap_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemattributemap_bool_exp - ): [pokemon_v2_itemattributemap!]! - - """An aggregate relationship""" - pokemon_v2_itemattributemaps_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemattributemap_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemattributemap_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemattributemap_bool_exp - ): pokemon_v2_itemattributemap_aggregate! - - """An array relationship""" - pokemon_v2_itemattributenames( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemattributename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemattributename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemattributename_bool_exp - ): [pokemon_v2_itemattributename!]! - - """An aggregate relationship""" - pokemon_v2_itemattributenames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemattributename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemattributename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemattributename_bool_exp - ): pokemon_v2_itemattributename_aggregate! -} - -""" -aggregated selection of "pokemon_v2_itemattribute" -""" -type pokemon_v2_itemattribute_aggregate { - aggregate: pokemon_v2_itemattribute_aggregate_fields - nodes: [pokemon_v2_itemattribute!]! -} - -""" -aggregate fields of "pokemon_v2_itemattribute" -""" -type pokemon_v2_itemattribute_aggregate_fields { - avg: pokemon_v2_itemattribute_avg_fields - count(columns: [pokemon_v2_itemattribute_select_column!], distinct: Boolean): Int! - max: pokemon_v2_itemattribute_max_fields - min: pokemon_v2_itemattribute_min_fields - stddev: pokemon_v2_itemattribute_stddev_fields - stddev_pop: pokemon_v2_itemattribute_stddev_pop_fields - stddev_samp: pokemon_v2_itemattribute_stddev_samp_fields - sum: pokemon_v2_itemattribute_sum_fields - var_pop: pokemon_v2_itemattribute_var_pop_fields - var_samp: pokemon_v2_itemattribute_var_samp_fields - variance: pokemon_v2_itemattribute_variance_fields -} - -"""aggregate avg on columns""" -type pokemon_v2_itemattribute_avg_fields { - id: Float -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_itemattribute". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_itemattribute_bool_exp { - _and: [pokemon_v2_itemattribute_bool_exp!] - _not: pokemon_v2_itemattribute_bool_exp - _or: [pokemon_v2_itemattribute_bool_exp!] - id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_itemattributedescriptions: pokemon_v2_itemattributedescription_bool_exp - pokemon_v2_itemattributedescriptions_aggregate: pokemon_v2_itemattributedescription_aggregate_bool_exp - pokemon_v2_itemattributemaps: pokemon_v2_itemattributemap_bool_exp - pokemon_v2_itemattributemaps_aggregate: pokemon_v2_itemattributemap_aggregate_bool_exp - pokemon_v2_itemattributenames: pokemon_v2_itemattributename_bool_exp - pokemon_v2_itemattributenames_aggregate: pokemon_v2_itemattributename_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_itemattribute_max_fields { - id: Int - name: String -} - -"""aggregate min on columns""" -type pokemon_v2_itemattribute_min_fields { - id: Int - name: String -} - -"""Ordering options when selecting data from "pokemon_v2_itemattribute".""" -input pokemon_v2_itemattribute_order_by { - id: order_by - name: order_by - pokemon_v2_itemattributedescriptions_aggregate: pokemon_v2_itemattributedescription_aggregate_order_by - pokemon_v2_itemattributemaps_aggregate: pokemon_v2_itemattributemap_aggregate_order_by - pokemon_v2_itemattributenames_aggregate: pokemon_v2_itemattributename_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_itemattribute" -""" -enum pokemon_v2_itemattribute_select_column { - """column name""" - id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_itemattribute_stddev_fields { - id: Float -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_itemattribute_stddev_pop_fields { - id: Float -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_itemattribute_stddev_samp_fields { - id: Float -} - -""" -Streaming cursor of the table "pokemon_v2_itemattribute" -""" -input pokemon_v2_itemattribute_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_itemattribute_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_itemattribute_stream_cursor_value_input { - id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_itemattribute_sum_fields { - id: Int -} - -"""aggregate var_pop on columns""" -type pokemon_v2_itemattribute_var_pop_fields { - id: Float -} - -"""aggregate var_samp on columns""" -type pokemon_v2_itemattribute_var_samp_fields { - id: Float -} - -"""aggregate variance on columns""" -type pokemon_v2_itemattribute_variance_fields { - id: Float -} - -""" -columns and relationships of "pokemon_v2_itemattributedescription" -""" -type pokemon_v2_itemattributedescription { - description: String! - id: Int! - item_attribute_id: Int - language_id: Int - - """An object relationship""" - pokemon_v2_itemattribute: pokemon_v2_itemattribute - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language -} - -""" -aggregated selection of "pokemon_v2_itemattributedescription" -""" -type pokemon_v2_itemattributedescription_aggregate { - aggregate: pokemon_v2_itemattributedescription_aggregate_fields - nodes: [pokemon_v2_itemattributedescription!]! -} - -input pokemon_v2_itemattributedescription_aggregate_bool_exp { - count: pokemon_v2_itemattributedescription_aggregate_bool_exp_count -} - -input pokemon_v2_itemattributedescription_aggregate_bool_exp_count { - arguments: [pokemon_v2_itemattributedescription_select_column!] - distinct: Boolean - filter: pokemon_v2_itemattributedescription_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_itemattributedescription" -""" -type pokemon_v2_itemattributedescription_aggregate_fields { - avg: pokemon_v2_itemattributedescription_avg_fields - count(columns: [pokemon_v2_itemattributedescription_select_column!], distinct: Boolean): Int! - max: pokemon_v2_itemattributedescription_max_fields - min: pokemon_v2_itemattributedescription_min_fields - stddev: pokemon_v2_itemattributedescription_stddev_fields - stddev_pop: pokemon_v2_itemattributedescription_stddev_pop_fields - stddev_samp: pokemon_v2_itemattributedescription_stddev_samp_fields - sum: pokemon_v2_itemattributedescription_sum_fields - var_pop: pokemon_v2_itemattributedescription_var_pop_fields - var_samp: pokemon_v2_itemattributedescription_var_samp_fields - variance: pokemon_v2_itemattributedescription_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_itemattributedescription" -""" -input pokemon_v2_itemattributedescription_aggregate_order_by { - avg: pokemon_v2_itemattributedescription_avg_order_by - count: order_by - max: pokemon_v2_itemattributedescription_max_order_by - min: pokemon_v2_itemattributedescription_min_order_by - stddev: pokemon_v2_itemattributedescription_stddev_order_by - stddev_pop: pokemon_v2_itemattributedescription_stddev_pop_order_by - stddev_samp: pokemon_v2_itemattributedescription_stddev_samp_order_by - sum: pokemon_v2_itemattributedescription_sum_order_by - var_pop: pokemon_v2_itemattributedescription_var_pop_order_by - var_samp: pokemon_v2_itemattributedescription_var_samp_order_by - variance: pokemon_v2_itemattributedescription_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_itemattributedescription_avg_fields { - id: Float - item_attribute_id: Float - language_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_itemattributedescription" -""" -input pokemon_v2_itemattributedescription_avg_order_by { - id: order_by - item_attribute_id: order_by - language_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_itemattributedescription". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_itemattributedescription_bool_exp { - _and: [pokemon_v2_itemattributedescription_bool_exp!] - _not: pokemon_v2_itemattributedescription_bool_exp - _or: [pokemon_v2_itemattributedescription_bool_exp!] - description: String_comparison_exp - id: Int_comparison_exp - item_attribute_id: Int_comparison_exp - language_id: Int_comparison_exp - pokemon_v2_itemattribute: pokemon_v2_itemattribute_bool_exp - pokemon_v2_language: pokemon_v2_language_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_itemattributedescription_max_fields { - description: String - id: Int - item_attribute_id: Int - language_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_itemattributedescription" -""" -input pokemon_v2_itemattributedescription_max_order_by { - description: order_by - id: order_by - item_attribute_id: order_by - language_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_itemattributedescription_min_fields { - description: String - id: Int - item_attribute_id: Int - language_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_itemattributedescription" -""" -input pokemon_v2_itemattributedescription_min_order_by { - description: order_by - id: order_by - item_attribute_id: order_by - language_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_itemattributedescription". -""" -input pokemon_v2_itemattributedescription_order_by { - description: order_by - id: order_by - item_attribute_id: order_by - language_id: order_by - pokemon_v2_itemattribute: pokemon_v2_itemattribute_order_by - pokemon_v2_language: pokemon_v2_language_order_by -} - -""" -select columns of table "pokemon_v2_itemattributedescription" -""" -enum pokemon_v2_itemattributedescription_select_column { - """column name""" - description - - """column name""" - id - - """column name""" - item_attribute_id - - """column name""" - language_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_itemattributedescription_stddev_fields { - id: Float - item_attribute_id: Float - language_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_itemattributedescription" -""" -input pokemon_v2_itemattributedescription_stddev_order_by { - id: order_by - item_attribute_id: order_by - language_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_itemattributedescription_stddev_pop_fields { - id: Float - item_attribute_id: Float - language_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_itemattributedescription" -""" -input pokemon_v2_itemattributedescription_stddev_pop_order_by { - id: order_by - item_attribute_id: order_by - language_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_itemattributedescription_stddev_samp_fields { - id: Float - item_attribute_id: Float - language_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_itemattributedescription" -""" -input pokemon_v2_itemattributedescription_stddev_samp_order_by { - id: order_by - item_attribute_id: order_by - language_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_itemattributedescription" -""" -input pokemon_v2_itemattributedescription_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_itemattributedescription_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_itemattributedescription_stream_cursor_value_input { - description: String - id: Int - item_attribute_id: Int - language_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_itemattributedescription_sum_fields { - id: Int - item_attribute_id: Int - language_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_itemattributedescription" -""" -input pokemon_v2_itemattributedescription_sum_order_by { - id: order_by - item_attribute_id: order_by - language_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_itemattributedescription_var_pop_fields { - id: Float - item_attribute_id: Float - language_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_itemattributedescription" -""" -input pokemon_v2_itemattributedescription_var_pop_order_by { - id: order_by - item_attribute_id: order_by - language_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_itemattributedescription_var_samp_fields { - id: Float - item_attribute_id: Float - language_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_itemattributedescription" -""" -input pokemon_v2_itemattributedescription_var_samp_order_by { - id: order_by - item_attribute_id: order_by - language_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_itemattributedescription_variance_fields { - id: Float - item_attribute_id: Float - language_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_itemattributedescription" -""" -input pokemon_v2_itemattributedescription_variance_order_by { - id: order_by - item_attribute_id: order_by - language_id: order_by -} - -""" -columns and relationships of "pokemon_v2_itemattributemap" -""" -type pokemon_v2_itemattributemap { - id: Int! - item_attribute_id: Int - item_id: Int - - """An object relationship""" - pokemon_v2_item: pokemon_v2_item - - """An object relationship""" - pokemon_v2_itemattribute: pokemon_v2_itemattribute -} - -""" -aggregated selection of "pokemon_v2_itemattributemap" -""" -type pokemon_v2_itemattributemap_aggregate { - aggregate: pokemon_v2_itemattributemap_aggregate_fields - nodes: [pokemon_v2_itemattributemap!]! -} - -input pokemon_v2_itemattributemap_aggregate_bool_exp { - count: pokemon_v2_itemattributemap_aggregate_bool_exp_count -} - -input pokemon_v2_itemattributemap_aggregate_bool_exp_count { - arguments: [pokemon_v2_itemattributemap_select_column!] - distinct: Boolean - filter: pokemon_v2_itemattributemap_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_itemattributemap" -""" -type pokemon_v2_itemattributemap_aggregate_fields { - avg: pokemon_v2_itemattributemap_avg_fields - count(columns: [pokemon_v2_itemattributemap_select_column!], distinct: Boolean): Int! - max: pokemon_v2_itemattributemap_max_fields - min: pokemon_v2_itemattributemap_min_fields - stddev: pokemon_v2_itemattributemap_stddev_fields - stddev_pop: pokemon_v2_itemattributemap_stddev_pop_fields - stddev_samp: pokemon_v2_itemattributemap_stddev_samp_fields - sum: pokemon_v2_itemattributemap_sum_fields - var_pop: pokemon_v2_itemattributemap_var_pop_fields - var_samp: pokemon_v2_itemattributemap_var_samp_fields - variance: pokemon_v2_itemattributemap_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_itemattributemap" -""" -input pokemon_v2_itemattributemap_aggregate_order_by { - avg: pokemon_v2_itemattributemap_avg_order_by - count: order_by - max: pokemon_v2_itemattributemap_max_order_by - min: pokemon_v2_itemattributemap_min_order_by - stddev: pokemon_v2_itemattributemap_stddev_order_by - stddev_pop: pokemon_v2_itemattributemap_stddev_pop_order_by - stddev_samp: pokemon_v2_itemattributemap_stddev_samp_order_by - sum: pokemon_v2_itemattributemap_sum_order_by - var_pop: pokemon_v2_itemattributemap_var_pop_order_by - var_samp: pokemon_v2_itemattributemap_var_samp_order_by - variance: pokemon_v2_itemattributemap_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_itemattributemap_avg_fields { - id: Float - item_attribute_id: Float - item_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_itemattributemap" -""" -input pokemon_v2_itemattributemap_avg_order_by { - id: order_by - item_attribute_id: order_by - item_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_itemattributemap". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_itemattributemap_bool_exp { - _and: [pokemon_v2_itemattributemap_bool_exp!] - _not: pokemon_v2_itemattributemap_bool_exp - _or: [pokemon_v2_itemattributemap_bool_exp!] - id: Int_comparison_exp - item_attribute_id: Int_comparison_exp - item_id: Int_comparison_exp - pokemon_v2_item: pokemon_v2_item_bool_exp - pokemon_v2_itemattribute: pokemon_v2_itemattribute_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_itemattributemap_max_fields { - id: Int - item_attribute_id: Int - item_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_itemattributemap" -""" -input pokemon_v2_itemattributemap_max_order_by { - id: order_by - item_attribute_id: order_by - item_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_itemattributemap_min_fields { - id: Int - item_attribute_id: Int - item_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_itemattributemap" -""" -input pokemon_v2_itemattributemap_min_order_by { - id: order_by - item_attribute_id: order_by - item_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_itemattributemap". -""" -input pokemon_v2_itemattributemap_order_by { - id: order_by - item_attribute_id: order_by - item_id: order_by - pokemon_v2_item: pokemon_v2_item_order_by - pokemon_v2_itemattribute: pokemon_v2_itemattribute_order_by -} - -""" -select columns of table "pokemon_v2_itemattributemap" -""" -enum pokemon_v2_itemattributemap_select_column { - """column name""" - id - - """column name""" - item_attribute_id - - """column name""" - item_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_itemattributemap_stddev_fields { - id: Float - item_attribute_id: Float - item_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_itemattributemap" -""" -input pokemon_v2_itemattributemap_stddev_order_by { - id: order_by - item_attribute_id: order_by - item_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_itemattributemap_stddev_pop_fields { - id: Float - item_attribute_id: Float - item_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_itemattributemap" -""" -input pokemon_v2_itemattributemap_stddev_pop_order_by { - id: order_by - item_attribute_id: order_by - item_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_itemattributemap_stddev_samp_fields { - id: Float - item_attribute_id: Float - item_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_itemattributemap" -""" -input pokemon_v2_itemattributemap_stddev_samp_order_by { - id: order_by - item_attribute_id: order_by - item_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_itemattributemap" -""" -input pokemon_v2_itemattributemap_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_itemattributemap_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_itemattributemap_stream_cursor_value_input { - id: Int - item_attribute_id: Int - item_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_itemattributemap_sum_fields { - id: Int - item_attribute_id: Int - item_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_itemattributemap" -""" -input pokemon_v2_itemattributemap_sum_order_by { - id: order_by - item_attribute_id: order_by - item_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_itemattributemap_var_pop_fields { - id: Float - item_attribute_id: Float - item_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_itemattributemap" -""" -input pokemon_v2_itemattributemap_var_pop_order_by { - id: order_by - item_attribute_id: order_by - item_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_itemattributemap_var_samp_fields { - id: Float - item_attribute_id: Float - item_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_itemattributemap" -""" -input pokemon_v2_itemattributemap_var_samp_order_by { - id: order_by - item_attribute_id: order_by - item_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_itemattributemap_variance_fields { - id: Float - item_attribute_id: Float - item_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_itemattributemap" -""" -input pokemon_v2_itemattributemap_variance_order_by { - id: order_by - item_attribute_id: order_by - item_id: order_by -} - -""" -columns and relationships of "pokemon_v2_itemattributename" -""" -type pokemon_v2_itemattributename { - id: Int! - item_attribute_id: Int - language_id: Int - name: String! - - """An object relationship""" - pokemon_v2_itemattribute: pokemon_v2_itemattribute - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language -} - -""" -aggregated selection of "pokemon_v2_itemattributename" -""" -type pokemon_v2_itemattributename_aggregate { - aggregate: pokemon_v2_itemattributename_aggregate_fields - nodes: [pokemon_v2_itemattributename!]! -} - -input pokemon_v2_itemattributename_aggregate_bool_exp { - count: pokemon_v2_itemattributename_aggregate_bool_exp_count -} - -input pokemon_v2_itemattributename_aggregate_bool_exp_count { - arguments: [pokemon_v2_itemattributename_select_column!] - distinct: Boolean - filter: pokemon_v2_itemattributename_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_itemattributename" -""" -type pokemon_v2_itemattributename_aggregate_fields { - avg: pokemon_v2_itemattributename_avg_fields - count(columns: [pokemon_v2_itemattributename_select_column!], distinct: Boolean): Int! - max: pokemon_v2_itemattributename_max_fields - min: pokemon_v2_itemattributename_min_fields - stddev: pokemon_v2_itemattributename_stddev_fields - stddev_pop: pokemon_v2_itemattributename_stddev_pop_fields - stddev_samp: pokemon_v2_itemattributename_stddev_samp_fields - sum: pokemon_v2_itemattributename_sum_fields - var_pop: pokemon_v2_itemattributename_var_pop_fields - var_samp: pokemon_v2_itemattributename_var_samp_fields - variance: pokemon_v2_itemattributename_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_itemattributename" -""" -input pokemon_v2_itemattributename_aggregate_order_by { - avg: pokemon_v2_itemattributename_avg_order_by - count: order_by - max: pokemon_v2_itemattributename_max_order_by - min: pokemon_v2_itemattributename_min_order_by - stddev: pokemon_v2_itemattributename_stddev_order_by - stddev_pop: pokemon_v2_itemattributename_stddev_pop_order_by - stddev_samp: pokemon_v2_itemattributename_stddev_samp_order_by - sum: pokemon_v2_itemattributename_sum_order_by - var_pop: pokemon_v2_itemattributename_var_pop_order_by - var_samp: pokemon_v2_itemattributename_var_samp_order_by - variance: pokemon_v2_itemattributename_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_itemattributename_avg_fields { - id: Float - item_attribute_id: Float - language_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_itemattributename" -""" -input pokemon_v2_itemattributename_avg_order_by { - id: order_by - item_attribute_id: order_by - language_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_itemattributename". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_itemattributename_bool_exp { - _and: [pokemon_v2_itemattributename_bool_exp!] - _not: pokemon_v2_itemattributename_bool_exp - _or: [pokemon_v2_itemattributename_bool_exp!] - id: Int_comparison_exp - item_attribute_id: Int_comparison_exp - language_id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_itemattribute: pokemon_v2_itemattribute_bool_exp - pokemon_v2_language: pokemon_v2_language_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_itemattributename_max_fields { - id: Int - item_attribute_id: Int - language_id: Int - name: String -} - -""" -order by max() on columns of table "pokemon_v2_itemattributename" -""" -input pokemon_v2_itemattributename_max_order_by { - id: order_by - item_attribute_id: order_by - language_id: order_by - name: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_itemattributename_min_fields { - id: Int - item_attribute_id: Int - language_id: Int - name: String -} - -""" -order by min() on columns of table "pokemon_v2_itemattributename" -""" -input pokemon_v2_itemattributename_min_order_by { - id: order_by - item_attribute_id: order_by - language_id: order_by - name: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_itemattributename". -""" -input pokemon_v2_itemattributename_order_by { - id: order_by - item_attribute_id: order_by - language_id: order_by - name: order_by - pokemon_v2_itemattribute: pokemon_v2_itemattribute_order_by - pokemon_v2_language: pokemon_v2_language_order_by -} - -""" -select columns of table "pokemon_v2_itemattributename" -""" -enum pokemon_v2_itemattributename_select_column { - """column name""" - id - - """column name""" - item_attribute_id - - """column name""" - language_id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_itemattributename_stddev_fields { - id: Float - item_attribute_id: Float - language_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_itemattributename" -""" -input pokemon_v2_itemattributename_stddev_order_by { - id: order_by - item_attribute_id: order_by - language_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_itemattributename_stddev_pop_fields { - id: Float - item_attribute_id: Float - language_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_itemattributename" -""" -input pokemon_v2_itemattributename_stddev_pop_order_by { - id: order_by - item_attribute_id: order_by - language_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_itemattributename_stddev_samp_fields { - id: Float - item_attribute_id: Float - language_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_itemattributename" -""" -input pokemon_v2_itemattributename_stddev_samp_order_by { - id: order_by - item_attribute_id: order_by - language_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_itemattributename" -""" -input pokemon_v2_itemattributename_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_itemattributename_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_itemattributename_stream_cursor_value_input { - id: Int - item_attribute_id: Int - language_id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_itemattributename_sum_fields { - id: Int - item_attribute_id: Int - language_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_itemattributename" -""" -input pokemon_v2_itemattributename_sum_order_by { - id: order_by - item_attribute_id: order_by - language_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_itemattributename_var_pop_fields { - id: Float - item_attribute_id: Float - language_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_itemattributename" -""" -input pokemon_v2_itemattributename_var_pop_order_by { - id: order_by - item_attribute_id: order_by - language_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_itemattributename_var_samp_fields { - id: Float - item_attribute_id: Float - language_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_itemattributename" -""" -input pokemon_v2_itemattributename_var_samp_order_by { - id: order_by - item_attribute_id: order_by - language_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_itemattributename_variance_fields { - id: Float - item_attribute_id: Float - language_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_itemattributename" -""" -input pokemon_v2_itemattributename_variance_order_by { - id: order_by - item_attribute_id: order_by - language_id: order_by -} - -""" -columns and relationships of "pokemon_v2_itemcategory" -""" -type pokemon_v2_itemcategory { - id: Int! - item_pocket_id: Int - name: String! - - """An array relationship""" - pokemon_v2_itemcategorynames( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemcategoryname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemcategoryname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemcategoryname_bool_exp - ): [pokemon_v2_itemcategoryname!]! - - """An aggregate relationship""" - pokemon_v2_itemcategorynames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemcategoryname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemcategoryname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemcategoryname_bool_exp - ): pokemon_v2_itemcategoryname_aggregate! - - """An object relationship""" - pokemon_v2_itempocket: pokemon_v2_itempocket - - """An array relationship""" - pokemon_v2_items( - """distinct select on columns""" - distinct_on: [pokemon_v2_item_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_item_order_by!] - - """filter the rows returned""" - where: pokemon_v2_item_bool_exp - ): [pokemon_v2_item!]! - - """An aggregate relationship""" - pokemon_v2_items_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_item_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_item_order_by!] - - """filter the rows returned""" - where: pokemon_v2_item_bool_exp - ): pokemon_v2_item_aggregate! -} - -""" -aggregated selection of "pokemon_v2_itemcategory" -""" -type pokemon_v2_itemcategory_aggregate { - aggregate: pokemon_v2_itemcategory_aggregate_fields - nodes: [pokemon_v2_itemcategory!]! -} - -input pokemon_v2_itemcategory_aggregate_bool_exp { - count: pokemon_v2_itemcategory_aggregate_bool_exp_count -} - -input pokemon_v2_itemcategory_aggregate_bool_exp_count { - arguments: [pokemon_v2_itemcategory_select_column!] - distinct: Boolean - filter: pokemon_v2_itemcategory_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_itemcategory" -""" -type pokemon_v2_itemcategory_aggregate_fields { - avg: pokemon_v2_itemcategory_avg_fields - count(columns: [pokemon_v2_itemcategory_select_column!], distinct: Boolean): Int! - max: pokemon_v2_itemcategory_max_fields - min: pokemon_v2_itemcategory_min_fields - stddev: pokemon_v2_itemcategory_stddev_fields - stddev_pop: pokemon_v2_itemcategory_stddev_pop_fields - stddev_samp: pokemon_v2_itemcategory_stddev_samp_fields - sum: pokemon_v2_itemcategory_sum_fields - var_pop: pokemon_v2_itemcategory_var_pop_fields - var_samp: pokemon_v2_itemcategory_var_samp_fields - variance: pokemon_v2_itemcategory_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_itemcategory" -""" -input pokemon_v2_itemcategory_aggregate_order_by { - avg: pokemon_v2_itemcategory_avg_order_by - count: order_by - max: pokemon_v2_itemcategory_max_order_by - min: pokemon_v2_itemcategory_min_order_by - stddev: pokemon_v2_itemcategory_stddev_order_by - stddev_pop: pokemon_v2_itemcategory_stddev_pop_order_by - stddev_samp: pokemon_v2_itemcategory_stddev_samp_order_by - sum: pokemon_v2_itemcategory_sum_order_by - var_pop: pokemon_v2_itemcategory_var_pop_order_by - var_samp: pokemon_v2_itemcategory_var_samp_order_by - variance: pokemon_v2_itemcategory_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_itemcategory_avg_fields { - id: Float - item_pocket_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_itemcategory" -""" -input pokemon_v2_itemcategory_avg_order_by { - id: order_by - item_pocket_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_itemcategory". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_itemcategory_bool_exp { - _and: [pokemon_v2_itemcategory_bool_exp!] - _not: pokemon_v2_itemcategory_bool_exp - _or: [pokemon_v2_itemcategory_bool_exp!] - id: Int_comparison_exp - item_pocket_id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_itemcategorynames: pokemon_v2_itemcategoryname_bool_exp - pokemon_v2_itemcategorynames_aggregate: pokemon_v2_itemcategoryname_aggregate_bool_exp - pokemon_v2_itempocket: pokemon_v2_itempocket_bool_exp - pokemon_v2_items: pokemon_v2_item_bool_exp - pokemon_v2_items_aggregate: pokemon_v2_item_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_itemcategory_max_fields { - id: Int - item_pocket_id: Int - name: String -} - -""" -order by max() on columns of table "pokemon_v2_itemcategory" -""" -input pokemon_v2_itemcategory_max_order_by { - id: order_by - item_pocket_id: order_by - name: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_itemcategory_min_fields { - id: Int - item_pocket_id: Int - name: String -} - -""" -order by min() on columns of table "pokemon_v2_itemcategory" -""" -input pokemon_v2_itemcategory_min_order_by { - id: order_by - item_pocket_id: order_by - name: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_itemcategory".""" -input pokemon_v2_itemcategory_order_by { - id: order_by - item_pocket_id: order_by - name: order_by - pokemon_v2_itemcategorynames_aggregate: pokemon_v2_itemcategoryname_aggregate_order_by - pokemon_v2_itempocket: pokemon_v2_itempocket_order_by - pokemon_v2_items_aggregate: pokemon_v2_item_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_itemcategory" -""" -enum pokemon_v2_itemcategory_select_column { - """column name""" - id - - """column name""" - item_pocket_id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_itemcategory_stddev_fields { - id: Float - item_pocket_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_itemcategory" -""" -input pokemon_v2_itemcategory_stddev_order_by { - id: order_by - item_pocket_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_itemcategory_stddev_pop_fields { - id: Float - item_pocket_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_itemcategory" -""" -input pokemon_v2_itemcategory_stddev_pop_order_by { - id: order_by - item_pocket_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_itemcategory_stddev_samp_fields { - id: Float - item_pocket_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_itemcategory" -""" -input pokemon_v2_itemcategory_stddev_samp_order_by { - id: order_by - item_pocket_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_itemcategory" -""" -input pokemon_v2_itemcategory_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_itemcategory_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_itemcategory_stream_cursor_value_input { - id: Int - item_pocket_id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_itemcategory_sum_fields { - id: Int - item_pocket_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_itemcategory" -""" -input pokemon_v2_itemcategory_sum_order_by { - id: order_by - item_pocket_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_itemcategory_var_pop_fields { - id: Float - item_pocket_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_itemcategory" -""" -input pokemon_v2_itemcategory_var_pop_order_by { - id: order_by - item_pocket_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_itemcategory_var_samp_fields { - id: Float - item_pocket_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_itemcategory" -""" -input pokemon_v2_itemcategory_var_samp_order_by { - id: order_by - item_pocket_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_itemcategory_variance_fields { - id: Float - item_pocket_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_itemcategory" -""" -input pokemon_v2_itemcategory_variance_order_by { - id: order_by - item_pocket_id: order_by -} - -""" -columns and relationships of "pokemon_v2_itemcategoryname" -""" -type pokemon_v2_itemcategoryname { - id: Int! - item_category_id: Int - language_id: Int - name: String! - - """An object relationship""" - pokemon_v2_itemcategory: pokemon_v2_itemcategory - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language -} - -""" -aggregated selection of "pokemon_v2_itemcategoryname" -""" -type pokemon_v2_itemcategoryname_aggregate { - aggregate: pokemon_v2_itemcategoryname_aggregate_fields - nodes: [pokemon_v2_itemcategoryname!]! -} - -input pokemon_v2_itemcategoryname_aggregate_bool_exp { - count: pokemon_v2_itemcategoryname_aggregate_bool_exp_count -} - -input pokemon_v2_itemcategoryname_aggregate_bool_exp_count { - arguments: [pokemon_v2_itemcategoryname_select_column!] - distinct: Boolean - filter: pokemon_v2_itemcategoryname_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_itemcategoryname" -""" -type pokemon_v2_itemcategoryname_aggregate_fields { - avg: pokemon_v2_itemcategoryname_avg_fields - count(columns: [pokemon_v2_itemcategoryname_select_column!], distinct: Boolean): Int! - max: pokemon_v2_itemcategoryname_max_fields - min: pokemon_v2_itemcategoryname_min_fields - stddev: pokemon_v2_itemcategoryname_stddev_fields - stddev_pop: pokemon_v2_itemcategoryname_stddev_pop_fields - stddev_samp: pokemon_v2_itemcategoryname_stddev_samp_fields - sum: pokemon_v2_itemcategoryname_sum_fields - var_pop: pokemon_v2_itemcategoryname_var_pop_fields - var_samp: pokemon_v2_itemcategoryname_var_samp_fields - variance: pokemon_v2_itemcategoryname_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_itemcategoryname" -""" -input pokemon_v2_itemcategoryname_aggregate_order_by { - avg: pokemon_v2_itemcategoryname_avg_order_by - count: order_by - max: pokemon_v2_itemcategoryname_max_order_by - min: pokemon_v2_itemcategoryname_min_order_by - stddev: pokemon_v2_itemcategoryname_stddev_order_by - stddev_pop: pokemon_v2_itemcategoryname_stddev_pop_order_by - stddev_samp: pokemon_v2_itemcategoryname_stddev_samp_order_by - sum: pokemon_v2_itemcategoryname_sum_order_by - var_pop: pokemon_v2_itemcategoryname_var_pop_order_by - var_samp: pokemon_v2_itemcategoryname_var_samp_order_by - variance: pokemon_v2_itemcategoryname_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_itemcategoryname_avg_fields { - id: Float - item_category_id: Float - language_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_itemcategoryname" -""" -input pokemon_v2_itemcategoryname_avg_order_by { - id: order_by - item_category_id: order_by - language_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_itemcategoryname". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_itemcategoryname_bool_exp { - _and: [pokemon_v2_itemcategoryname_bool_exp!] - _not: pokemon_v2_itemcategoryname_bool_exp - _or: [pokemon_v2_itemcategoryname_bool_exp!] - id: Int_comparison_exp - item_category_id: Int_comparison_exp - language_id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_itemcategory: pokemon_v2_itemcategory_bool_exp - pokemon_v2_language: pokemon_v2_language_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_itemcategoryname_max_fields { - id: Int - item_category_id: Int - language_id: Int - name: String -} - -""" -order by max() on columns of table "pokemon_v2_itemcategoryname" -""" -input pokemon_v2_itemcategoryname_max_order_by { - id: order_by - item_category_id: order_by - language_id: order_by - name: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_itemcategoryname_min_fields { - id: Int - item_category_id: Int - language_id: Int - name: String -} - -""" -order by min() on columns of table "pokemon_v2_itemcategoryname" -""" -input pokemon_v2_itemcategoryname_min_order_by { - id: order_by - item_category_id: order_by - language_id: order_by - name: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_itemcategoryname". -""" -input pokemon_v2_itemcategoryname_order_by { - id: order_by - item_category_id: order_by - language_id: order_by - name: order_by - pokemon_v2_itemcategory: pokemon_v2_itemcategory_order_by - pokemon_v2_language: pokemon_v2_language_order_by -} - -""" -select columns of table "pokemon_v2_itemcategoryname" -""" -enum pokemon_v2_itemcategoryname_select_column { - """column name""" - id - - """column name""" - item_category_id - - """column name""" - language_id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_itemcategoryname_stddev_fields { - id: Float - item_category_id: Float - language_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_itemcategoryname" -""" -input pokemon_v2_itemcategoryname_stddev_order_by { - id: order_by - item_category_id: order_by - language_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_itemcategoryname_stddev_pop_fields { - id: Float - item_category_id: Float - language_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_itemcategoryname" -""" -input pokemon_v2_itemcategoryname_stddev_pop_order_by { - id: order_by - item_category_id: order_by - language_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_itemcategoryname_stddev_samp_fields { - id: Float - item_category_id: Float - language_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_itemcategoryname" -""" -input pokemon_v2_itemcategoryname_stddev_samp_order_by { - id: order_by - item_category_id: order_by - language_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_itemcategoryname" -""" -input pokemon_v2_itemcategoryname_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_itemcategoryname_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_itemcategoryname_stream_cursor_value_input { - id: Int - item_category_id: Int - language_id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_itemcategoryname_sum_fields { - id: Int - item_category_id: Int - language_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_itemcategoryname" -""" -input pokemon_v2_itemcategoryname_sum_order_by { - id: order_by - item_category_id: order_by - language_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_itemcategoryname_var_pop_fields { - id: Float - item_category_id: Float - language_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_itemcategoryname" -""" -input pokemon_v2_itemcategoryname_var_pop_order_by { - id: order_by - item_category_id: order_by - language_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_itemcategoryname_var_samp_fields { - id: Float - item_category_id: Float - language_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_itemcategoryname" -""" -input pokemon_v2_itemcategoryname_var_samp_order_by { - id: order_by - item_category_id: order_by - language_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_itemcategoryname_variance_fields { - id: Float - item_category_id: Float - language_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_itemcategoryname" -""" -input pokemon_v2_itemcategoryname_variance_order_by { - id: order_by - item_category_id: order_by - language_id: order_by -} - -""" -columns and relationships of "pokemon_v2_itemeffecttext" -""" -type pokemon_v2_itemeffecttext { - effect: String! - id: Int! - item_id: Int - language_id: Int - - """An object relationship""" - pokemon_v2_item: pokemon_v2_item - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - short_effect: String! -} - -""" -aggregated selection of "pokemon_v2_itemeffecttext" -""" -type pokemon_v2_itemeffecttext_aggregate { - aggregate: pokemon_v2_itemeffecttext_aggregate_fields - nodes: [pokemon_v2_itemeffecttext!]! -} - -input pokemon_v2_itemeffecttext_aggregate_bool_exp { - count: pokemon_v2_itemeffecttext_aggregate_bool_exp_count -} - -input pokemon_v2_itemeffecttext_aggregate_bool_exp_count { - arguments: [pokemon_v2_itemeffecttext_select_column!] - distinct: Boolean - filter: pokemon_v2_itemeffecttext_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_itemeffecttext" -""" -type pokemon_v2_itemeffecttext_aggregate_fields { - avg: pokemon_v2_itemeffecttext_avg_fields - count(columns: [pokemon_v2_itemeffecttext_select_column!], distinct: Boolean): Int! - max: pokemon_v2_itemeffecttext_max_fields - min: pokemon_v2_itemeffecttext_min_fields - stddev: pokemon_v2_itemeffecttext_stddev_fields - stddev_pop: pokemon_v2_itemeffecttext_stddev_pop_fields - stddev_samp: pokemon_v2_itemeffecttext_stddev_samp_fields - sum: pokemon_v2_itemeffecttext_sum_fields - var_pop: pokemon_v2_itemeffecttext_var_pop_fields - var_samp: pokemon_v2_itemeffecttext_var_samp_fields - variance: pokemon_v2_itemeffecttext_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_itemeffecttext" -""" -input pokemon_v2_itemeffecttext_aggregate_order_by { - avg: pokemon_v2_itemeffecttext_avg_order_by - count: order_by - max: pokemon_v2_itemeffecttext_max_order_by - min: pokemon_v2_itemeffecttext_min_order_by - stddev: pokemon_v2_itemeffecttext_stddev_order_by - stddev_pop: pokemon_v2_itemeffecttext_stddev_pop_order_by - stddev_samp: pokemon_v2_itemeffecttext_stddev_samp_order_by - sum: pokemon_v2_itemeffecttext_sum_order_by - var_pop: pokemon_v2_itemeffecttext_var_pop_order_by - var_samp: pokemon_v2_itemeffecttext_var_samp_order_by - variance: pokemon_v2_itemeffecttext_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_itemeffecttext_avg_fields { - id: Float - item_id: Float - language_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_itemeffecttext" -""" -input pokemon_v2_itemeffecttext_avg_order_by { - id: order_by - item_id: order_by - language_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_itemeffecttext". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_itemeffecttext_bool_exp { - _and: [pokemon_v2_itemeffecttext_bool_exp!] - _not: pokemon_v2_itemeffecttext_bool_exp - _or: [pokemon_v2_itemeffecttext_bool_exp!] - effect: String_comparison_exp - id: Int_comparison_exp - item_id: Int_comparison_exp - language_id: Int_comparison_exp - pokemon_v2_item: pokemon_v2_item_bool_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - short_effect: String_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_itemeffecttext_max_fields { - effect: String - id: Int - item_id: Int - language_id: Int - short_effect: String -} - -""" -order by max() on columns of table "pokemon_v2_itemeffecttext" -""" -input pokemon_v2_itemeffecttext_max_order_by { - effect: order_by - id: order_by - item_id: order_by - language_id: order_by - short_effect: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_itemeffecttext_min_fields { - effect: String - id: Int - item_id: Int - language_id: Int - short_effect: String -} - -""" -order by min() on columns of table "pokemon_v2_itemeffecttext" -""" -input pokemon_v2_itemeffecttext_min_order_by { - effect: order_by - id: order_by - item_id: order_by - language_id: order_by - short_effect: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_itemeffecttext".""" -input pokemon_v2_itemeffecttext_order_by { - effect: order_by - id: order_by - item_id: order_by - language_id: order_by - pokemon_v2_item: pokemon_v2_item_order_by - pokemon_v2_language: pokemon_v2_language_order_by - short_effect: order_by -} - -""" -select columns of table "pokemon_v2_itemeffecttext" -""" -enum pokemon_v2_itemeffecttext_select_column { - """column name""" - effect - - """column name""" - id - - """column name""" - item_id - - """column name""" - language_id - - """column name""" - short_effect -} - -"""aggregate stddev on columns""" -type pokemon_v2_itemeffecttext_stddev_fields { - id: Float - item_id: Float - language_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_itemeffecttext" -""" -input pokemon_v2_itemeffecttext_stddev_order_by { - id: order_by - item_id: order_by - language_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_itemeffecttext_stddev_pop_fields { - id: Float - item_id: Float - language_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_itemeffecttext" -""" -input pokemon_v2_itemeffecttext_stddev_pop_order_by { - id: order_by - item_id: order_by - language_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_itemeffecttext_stddev_samp_fields { - id: Float - item_id: Float - language_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_itemeffecttext" -""" -input pokemon_v2_itemeffecttext_stddev_samp_order_by { - id: order_by - item_id: order_by - language_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_itemeffecttext" -""" -input pokemon_v2_itemeffecttext_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_itemeffecttext_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_itemeffecttext_stream_cursor_value_input { - effect: String - id: Int - item_id: Int - language_id: Int - short_effect: String -} - -"""aggregate sum on columns""" -type pokemon_v2_itemeffecttext_sum_fields { - id: Int - item_id: Int - language_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_itemeffecttext" -""" -input pokemon_v2_itemeffecttext_sum_order_by { - id: order_by - item_id: order_by - language_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_itemeffecttext_var_pop_fields { - id: Float - item_id: Float - language_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_itemeffecttext" -""" -input pokemon_v2_itemeffecttext_var_pop_order_by { - id: order_by - item_id: order_by - language_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_itemeffecttext_var_samp_fields { - id: Float - item_id: Float - language_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_itemeffecttext" -""" -input pokemon_v2_itemeffecttext_var_samp_order_by { - id: order_by - item_id: order_by - language_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_itemeffecttext_variance_fields { - id: Float - item_id: Float - language_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_itemeffecttext" -""" -input pokemon_v2_itemeffecttext_variance_order_by { - id: order_by - item_id: order_by - language_id: order_by -} - -""" -columns and relationships of "pokemon_v2_itemflavortext" -""" -type pokemon_v2_itemflavortext { - flavor_text: String! - id: Int! - item_id: Int - language_id: Int - - """An object relationship""" - pokemon_v2_item: pokemon_v2_item - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_versiongroup: pokemon_v2_versiongroup - version_group_id: Int -} - -""" -aggregated selection of "pokemon_v2_itemflavortext" -""" -type pokemon_v2_itemflavortext_aggregate { - aggregate: pokemon_v2_itemflavortext_aggregate_fields - nodes: [pokemon_v2_itemflavortext!]! -} - -input pokemon_v2_itemflavortext_aggregate_bool_exp { - count: pokemon_v2_itemflavortext_aggregate_bool_exp_count -} - -input pokemon_v2_itemflavortext_aggregate_bool_exp_count { - arguments: [pokemon_v2_itemflavortext_select_column!] - distinct: Boolean - filter: pokemon_v2_itemflavortext_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_itemflavortext" -""" -type pokemon_v2_itemflavortext_aggregate_fields { - avg: pokemon_v2_itemflavortext_avg_fields - count(columns: [pokemon_v2_itemflavortext_select_column!], distinct: Boolean): Int! - max: pokemon_v2_itemflavortext_max_fields - min: pokemon_v2_itemflavortext_min_fields - stddev: pokemon_v2_itemflavortext_stddev_fields - stddev_pop: pokemon_v2_itemflavortext_stddev_pop_fields - stddev_samp: pokemon_v2_itemflavortext_stddev_samp_fields - sum: pokemon_v2_itemflavortext_sum_fields - var_pop: pokemon_v2_itemflavortext_var_pop_fields - var_samp: pokemon_v2_itemflavortext_var_samp_fields - variance: pokemon_v2_itemflavortext_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_itemflavortext" -""" -input pokemon_v2_itemflavortext_aggregate_order_by { - avg: pokemon_v2_itemflavortext_avg_order_by - count: order_by - max: pokemon_v2_itemflavortext_max_order_by - min: pokemon_v2_itemflavortext_min_order_by - stddev: pokemon_v2_itemflavortext_stddev_order_by - stddev_pop: pokemon_v2_itemflavortext_stddev_pop_order_by - stddev_samp: pokemon_v2_itemflavortext_stddev_samp_order_by - sum: pokemon_v2_itemflavortext_sum_order_by - var_pop: pokemon_v2_itemflavortext_var_pop_order_by - var_samp: pokemon_v2_itemflavortext_var_samp_order_by - variance: pokemon_v2_itemflavortext_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_itemflavortext_avg_fields { - id: Float - item_id: Float - language_id: Float - version_group_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_itemflavortext" -""" -input pokemon_v2_itemflavortext_avg_order_by { - id: order_by - item_id: order_by - language_id: order_by - version_group_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_itemflavortext". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_itemflavortext_bool_exp { - _and: [pokemon_v2_itemflavortext_bool_exp!] - _not: pokemon_v2_itemflavortext_bool_exp - _or: [pokemon_v2_itemflavortext_bool_exp!] - flavor_text: String_comparison_exp - id: Int_comparison_exp - item_id: Int_comparison_exp - language_id: Int_comparison_exp - pokemon_v2_item: pokemon_v2_item_bool_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_versiongroup: pokemon_v2_versiongroup_bool_exp - version_group_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_itemflavortext_max_fields { - flavor_text: String - id: Int - item_id: Int - language_id: Int - version_group_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_itemflavortext" -""" -input pokemon_v2_itemflavortext_max_order_by { - flavor_text: order_by - id: order_by - item_id: order_by - language_id: order_by - version_group_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_itemflavortext_min_fields { - flavor_text: String - id: Int - item_id: Int - language_id: Int - version_group_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_itemflavortext" -""" -input pokemon_v2_itemflavortext_min_order_by { - flavor_text: order_by - id: order_by - item_id: order_by - language_id: order_by - version_group_id: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_itemflavortext".""" -input pokemon_v2_itemflavortext_order_by { - flavor_text: order_by - id: order_by - item_id: order_by - language_id: order_by - pokemon_v2_item: pokemon_v2_item_order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_versiongroup: pokemon_v2_versiongroup_order_by - version_group_id: order_by -} - -""" -select columns of table "pokemon_v2_itemflavortext" -""" -enum pokemon_v2_itemflavortext_select_column { - """column name""" - flavor_text - - """column name""" - id - - """column name""" - item_id - - """column name""" - language_id - - """column name""" - version_group_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_itemflavortext_stddev_fields { - id: Float - item_id: Float - language_id: Float - version_group_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_itemflavortext" -""" -input pokemon_v2_itemflavortext_stddev_order_by { - id: order_by - item_id: order_by - language_id: order_by - version_group_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_itemflavortext_stddev_pop_fields { - id: Float - item_id: Float - language_id: Float - version_group_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_itemflavortext" -""" -input pokemon_v2_itemflavortext_stddev_pop_order_by { - id: order_by - item_id: order_by - language_id: order_by - version_group_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_itemflavortext_stddev_samp_fields { - id: Float - item_id: Float - language_id: Float - version_group_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_itemflavortext" -""" -input pokemon_v2_itemflavortext_stddev_samp_order_by { - id: order_by - item_id: order_by - language_id: order_by - version_group_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_itemflavortext" -""" -input pokemon_v2_itemflavortext_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_itemflavortext_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_itemflavortext_stream_cursor_value_input { - flavor_text: String - id: Int - item_id: Int - language_id: Int - version_group_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_itemflavortext_sum_fields { - id: Int - item_id: Int - language_id: Int - version_group_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_itemflavortext" -""" -input pokemon_v2_itemflavortext_sum_order_by { - id: order_by - item_id: order_by - language_id: order_by - version_group_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_itemflavortext_var_pop_fields { - id: Float - item_id: Float - language_id: Float - version_group_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_itemflavortext" -""" -input pokemon_v2_itemflavortext_var_pop_order_by { - id: order_by - item_id: order_by - language_id: order_by - version_group_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_itemflavortext_var_samp_fields { - id: Float - item_id: Float - language_id: Float - version_group_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_itemflavortext" -""" -input pokemon_v2_itemflavortext_var_samp_order_by { - id: order_by - item_id: order_by - language_id: order_by - version_group_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_itemflavortext_variance_fields { - id: Float - item_id: Float - language_id: Float - version_group_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_itemflavortext" -""" -input pokemon_v2_itemflavortext_variance_order_by { - id: order_by - item_id: order_by - language_id: order_by - version_group_id: order_by -} - -""" -columns and relationships of "pokemon_v2_itemflingeffect" -""" -type pokemon_v2_itemflingeffect { - id: Int! - name: String! - - """An array relationship""" - pokemon_v2_itemflingeffecteffecttexts( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemflingeffecteffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemflingeffecteffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemflingeffecteffecttext_bool_exp - ): [pokemon_v2_itemflingeffecteffecttext!]! - - """An aggregate relationship""" - pokemon_v2_itemflingeffecteffecttexts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemflingeffecteffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemflingeffecteffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemflingeffecteffecttext_bool_exp - ): pokemon_v2_itemflingeffecteffecttext_aggregate! - - """An array relationship""" - pokemon_v2_items( - """distinct select on columns""" - distinct_on: [pokemon_v2_item_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_item_order_by!] - - """filter the rows returned""" - where: pokemon_v2_item_bool_exp - ): [pokemon_v2_item!]! - - """An aggregate relationship""" - pokemon_v2_items_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_item_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_item_order_by!] - - """filter the rows returned""" - where: pokemon_v2_item_bool_exp - ): pokemon_v2_item_aggregate! -} - -""" -aggregated selection of "pokemon_v2_itemflingeffect" -""" -type pokemon_v2_itemflingeffect_aggregate { - aggregate: pokemon_v2_itemflingeffect_aggregate_fields - nodes: [pokemon_v2_itemflingeffect!]! -} - -""" -aggregate fields of "pokemon_v2_itemflingeffect" -""" -type pokemon_v2_itemflingeffect_aggregate_fields { - avg: pokemon_v2_itemflingeffect_avg_fields - count(columns: [pokemon_v2_itemflingeffect_select_column!], distinct: Boolean): Int! - max: pokemon_v2_itemflingeffect_max_fields - min: pokemon_v2_itemflingeffect_min_fields - stddev: pokemon_v2_itemflingeffect_stddev_fields - stddev_pop: pokemon_v2_itemflingeffect_stddev_pop_fields - stddev_samp: pokemon_v2_itemflingeffect_stddev_samp_fields - sum: pokemon_v2_itemflingeffect_sum_fields - var_pop: pokemon_v2_itemflingeffect_var_pop_fields - var_samp: pokemon_v2_itemflingeffect_var_samp_fields - variance: pokemon_v2_itemflingeffect_variance_fields -} - -"""aggregate avg on columns""" -type pokemon_v2_itemflingeffect_avg_fields { - id: Float -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_itemflingeffect". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_itemflingeffect_bool_exp { - _and: [pokemon_v2_itemflingeffect_bool_exp!] - _not: pokemon_v2_itemflingeffect_bool_exp - _or: [pokemon_v2_itemflingeffect_bool_exp!] - id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_itemflingeffecteffecttexts: pokemon_v2_itemflingeffecteffecttext_bool_exp - pokemon_v2_itemflingeffecteffecttexts_aggregate: pokemon_v2_itemflingeffecteffecttext_aggregate_bool_exp - pokemon_v2_items: pokemon_v2_item_bool_exp - pokemon_v2_items_aggregate: pokemon_v2_item_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_itemflingeffect_max_fields { - id: Int - name: String -} - -"""aggregate min on columns""" -type pokemon_v2_itemflingeffect_min_fields { - id: Int - name: String -} - -""" -Ordering options when selecting data from "pokemon_v2_itemflingeffect". -""" -input pokemon_v2_itemflingeffect_order_by { - id: order_by - name: order_by - pokemon_v2_itemflingeffecteffecttexts_aggregate: pokemon_v2_itemflingeffecteffecttext_aggregate_order_by - pokemon_v2_items_aggregate: pokemon_v2_item_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_itemflingeffect" -""" -enum pokemon_v2_itemflingeffect_select_column { - """column name""" - id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_itemflingeffect_stddev_fields { - id: Float -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_itemflingeffect_stddev_pop_fields { - id: Float -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_itemflingeffect_stddev_samp_fields { - id: Float -} - -""" -Streaming cursor of the table "pokemon_v2_itemflingeffect" -""" -input pokemon_v2_itemflingeffect_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_itemflingeffect_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_itemflingeffect_stream_cursor_value_input { - id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_itemflingeffect_sum_fields { - id: Int -} - -"""aggregate var_pop on columns""" -type pokemon_v2_itemflingeffect_var_pop_fields { - id: Float -} - -"""aggregate var_samp on columns""" -type pokemon_v2_itemflingeffect_var_samp_fields { - id: Float -} - -"""aggregate variance on columns""" -type pokemon_v2_itemflingeffect_variance_fields { - id: Float -} - -""" -columns and relationships of "pokemon_v2_itemflingeffecteffecttext" -""" -type pokemon_v2_itemflingeffecteffecttext { - effect: String! - id: Int! - item_fling_effect_id: Int - language_id: Int - - """An object relationship""" - pokemon_v2_itemflingeffect: pokemon_v2_itemflingeffect - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language -} - -""" -aggregated selection of "pokemon_v2_itemflingeffecteffecttext" -""" -type pokemon_v2_itemflingeffecteffecttext_aggregate { - aggregate: pokemon_v2_itemflingeffecteffecttext_aggregate_fields - nodes: [pokemon_v2_itemflingeffecteffecttext!]! -} - -input pokemon_v2_itemflingeffecteffecttext_aggregate_bool_exp { - count: pokemon_v2_itemflingeffecteffecttext_aggregate_bool_exp_count -} - -input pokemon_v2_itemflingeffecteffecttext_aggregate_bool_exp_count { - arguments: [pokemon_v2_itemflingeffecteffecttext_select_column!] - distinct: Boolean - filter: pokemon_v2_itemflingeffecteffecttext_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_itemflingeffecteffecttext" -""" -type pokemon_v2_itemflingeffecteffecttext_aggregate_fields { - avg: pokemon_v2_itemflingeffecteffecttext_avg_fields - count(columns: [pokemon_v2_itemflingeffecteffecttext_select_column!], distinct: Boolean): Int! - max: pokemon_v2_itemflingeffecteffecttext_max_fields - min: pokemon_v2_itemflingeffecteffecttext_min_fields - stddev: pokemon_v2_itemflingeffecteffecttext_stddev_fields - stddev_pop: pokemon_v2_itemflingeffecteffecttext_stddev_pop_fields - stddev_samp: pokemon_v2_itemflingeffecteffecttext_stddev_samp_fields - sum: pokemon_v2_itemflingeffecteffecttext_sum_fields - var_pop: pokemon_v2_itemflingeffecteffecttext_var_pop_fields - var_samp: pokemon_v2_itemflingeffecteffecttext_var_samp_fields - variance: pokemon_v2_itemflingeffecteffecttext_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_itemflingeffecteffecttext" -""" -input pokemon_v2_itemflingeffecteffecttext_aggregate_order_by { - avg: pokemon_v2_itemflingeffecteffecttext_avg_order_by - count: order_by - max: pokemon_v2_itemflingeffecteffecttext_max_order_by - min: pokemon_v2_itemflingeffecteffecttext_min_order_by - stddev: pokemon_v2_itemflingeffecteffecttext_stddev_order_by - stddev_pop: pokemon_v2_itemflingeffecteffecttext_stddev_pop_order_by - stddev_samp: pokemon_v2_itemflingeffecteffecttext_stddev_samp_order_by - sum: pokemon_v2_itemflingeffecteffecttext_sum_order_by - var_pop: pokemon_v2_itemflingeffecteffecttext_var_pop_order_by - var_samp: pokemon_v2_itemflingeffecteffecttext_var_samp_order_by - variance: pokemon_v2_itemflingeffecteffecttext_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_itemflingeffecteffecttext_avg_fields { - id: Float - item_fling_effect_id: Float - language_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_itemflingeffecteffecttext" -""" -input pokemon_v2_itemflingeffecteffecttext_avg_order_by { - id: order_by - item_fling_effect_id: order_by - language_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_itemflingeffecteffecttext". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_itemflingeffecteffecttext_bool_exp { - _and: [pokemon_v2_itemflingeffecteffecttext_bool_exp!] - _not: pokemon_v2_itemflingeffecteffecttext_bool_exp - _or: [pokemon_v2_itemflingeffecteffecttext_bool_exp!] - effect: String_comparison_exp - id: Int_comparison_exp - item_fling_effect_id: Int_comparison_exp - language_id: Int_comparison_exp - pokemon_v2_itemflingeffect: pokemon_v2_itemflingeffect_bool_exp - pokemon_v2_language: pokemon_v2_language_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_itemflingeffecteffecttext_max_fields { - effect: String - id: Int - item_fling_effect_id: Int - language_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_itemflingeffecteffecttext" -""" -input pokemon_v2_itemflingeffecteffecttext_max_order_by { - effect: order_by - id: order_by - item_fling_effect_id: order_by - language_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_itemflingeffecteffecttext_min_fields { - effect: String - id: Int - item_fling_effect_id: Int - language_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_itemflingeffecteffecttext" -""" -input pokemon_v2_itemflingeffecteffecttext_min_order_by { - effect: order_by - id: order_by - item_fling_effect_id: order_by - language_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_itemflingeffecteffecttext". -""" -input pokemon_v2_itemflingeffecteffecttext_order_by { - effect: order_by - id: order_by - item_fling_effect_id: order_by - language_id: order_by - pokemon_v2_itemflingeffect: pokemon_v2_itemflingeffect_order_by - pokemon_v2_language: pokemon_v2_language_order_by -} - -""" -select columns of table "pokemon_v2_itemflingeffecteffecttext" -""" -enum pokemon_v2_itemflingeffecteffecttext_select_column { - """column name""" - effect - - """column name""" - id - - """column name""" - item_fling_effect_id - - """column name""" - language_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_itemflingeffecteffecttext_stddev_fields { - id: Float - item_fling_effect_id: Float - language_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_itemflingeffecteffecttext" -""" -input pokemon_v2_itemflingeffecteffecttext_stddev_order_by { - id: order_by - item_fling_effect_id: order_by - language_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_itemflingeffecteffecttext_stddev_pop_fields { - id: Float - item_fling_effect_id: Float - language_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_itemflingeffecteffecttext" -""" -input pokemon_v2_itemflingeffecteffecttext_stddev_pop_order_by { - id: order_by - item_fling_effect_id: order_by - language_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_itemflingeffecteffecttext_stddev_samp_fields { - id: Float - item_fling_effect_id: Float - language_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_itemflingeffecteffecttext" -""" -input pokemon_v2_itemflingeffecteffecttext_stddev_samp_order_by { - id: order_by - item_fling_effect_id: order_by - language_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_itemflingeffecteffecttext" -""" -input pokemon_v2_itemflingeffecteffecttext_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_itemflingeffecteffecttext_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_itemflingeffecteffecttext_stream_cursor_value_input { - effect: String - id: Int - item_fling_effect_id: Int - language_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_itemflingeffecteffecttext_sum_fields { - id: Int - item_fling_effect_id: Int - language_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_itemflingeffecteffecttext" -""" -input pokemon_v2_itemflingeffecteffecttext_sum_order_by { - id: order_by - item_fling_effect_id: order_by - language_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_itemflingeffecteffecttext_var_pop_fields { - id: Float - item_fling_effect_id: Float - language_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_itemflingeffecteffecttext" -""" -input pokemon_v2_itemflingeffecteffecttext_var_pop_order_by { - id: order_by - item_fling_effect_id: order_by - language_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_itemflingeffecteffecttext_var_samp_fields { - id: Float - item_fling_effect_id: Float - language_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_itemflingeffecteffecttext" -""" -input pokemon_v2_itemflingeffecteffecttext_var_samp_order_by { - id: order_by - item_fling_effect_id: order_by - language_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_itemflingeffecteffecttext_variance_fields { - id: Float - item_fling_effect_id: Float - language_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_itemflingeffecteffecttext" -""" -input pokemon_v2_itemflingeffecteffecttext_variance_order_by { - id: order_by - item_fling_effect_id: order_by - language_id: order_by -} - -""" -columns and relationships of "pokemon_v2_itemgameindex" -""" -type pokemon_v2_itemgameindex { - game_index: Int! - generation_id: Int - id: Int! - item_id: Int - - """An object relationship""" - pokemon_v2_generation: pokemon_v2_generation - - """An object relationship""" - pokemon_v2_item: pokemon_v2_item -} - -""" -aggregated selection of "pokemon_v2_itemgameindex" -""" -type pokemon_v2_itemgameindex_aggregate { - aggregate: pokemon_v2_itemgameindex_aggregate_fields - nodes: [pokemon_v2_itemgameindex!]! -} - -input pokemon_v2_itemgameindex_aggregate_bool_exp { - count: pokemon_v2_itemgameindex_aggregate_bool_exp_count -} - -input pokemon_v2_itemgameindex_aggregate_bool_exp_count { - arguments: [pokemon_v2_itemgameindex_select_column!] - distinct: Boolean - filter: pokemon_v2_itemgameindex_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_itemgameindex" -""" -type pokemon_v2_itemgameindex_aggregate_fields { - avg: pokemon_v2_itemgameindex_avg_fields - count(columns: [pokemon_v2_itemgameindex_select_column!], distinct: Boolean): Int! - max: pokemon_v2_itemgameindex_max_fields - min: pokemon_v2_itemgameindex_min_fields - stddev: pokemon_v2_itemgameindex_stddev_fields - stddev_pop: pokemon_v2_itemgameindex_stddev_pop_fields - stddev_samp: pokemon_v2_itemgameindex_stddev_samp_fields - sum: pokemon_v2_itemgameindex_sum_fields - var_pop: pokemon_v2_itemgameindex_var_pop_fields - var_samp: pokemon_v2_itemgameindex_var_samp_fields - variance: pokemon_v2_itemgameindex_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_itemgameindex" -""" -input pokemon_v2_itemgameindex_aggregate_order_by { - avg: pokemon_v2_itemgameindex_avg_order_by - count: order_by - max: pokemon_v2_itemgameindex_max_order_by - min: pokemon_v2_itemgameindex_min_order_by - stddev: pokemon_v2_itemgameindex_stddev_order_by - stddev_pop: pokemon_v2_itemgameindex_stddev_pop_order_by - stddev_samp: pokemon_v2_itemgameindex_stddev_samp_order_by - sum: pokemon_v2_itemgameindex_sum_order_by - var_pop: pokemon_v2_itemgameindex_var_pop_order_by - var_samp: pokemon_v2_itemgameindex_var_samp_order_by - variance: pokemon_v2_itemgameindex_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_itemgameindex_avg_fields { - game_index: Float - generation_id: Float - id: Float - item_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_itemgameindex" -""" -input pokemon_v2_itemgameindex_avg_order_by { - game_index: order_by - generation_id: order_by - id: order_by - item_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_itemgameindex". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_itemgameindex_bool_exp { - _and: [pokemon_v2_itemgameindex_bool_exp!] - _not: pokemon_v2_itemgameindex_bool_exp - _or: [pokemon_v2_itemgameindex_bool_exp!] - game_index: Int_comparison_exp - generation_id: Int_comparison_exp - id: Int_comparison_exp - item_id: Int_comparison_exp - pokemon_v2_generation: pokemon_v2_generation_bool_exp - pokemon_v2_item: pokemon_v2_item_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_itemgameindex_max_fields { - game_index: Int - generation_id: Int - id: Int - item_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_itemgameindex" -""" -input pokemon_v2_itemgameindex_max_order_by { - game_index: order_by - generation_id: order_by - id: order_by - item_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_itemgameindex_min_fields { - game_index: Int - generation_id: Int - id: Int - item_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_itemgameindex" -""" -input pokemon_v2_itemgameindex_min_order_by { - game_index: order_by - generation_id: order_by - id: order_by - item_id: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_itemgameindex".""" -input pokemon_v2_itemgameindex_order_by { - game_index: order_by - generation_id: order_by - id: order_by - item_id: order_by - pokemon_v2_generation: pokemon_v2_generation_order_by - pokemon_v2_item: pokemon_v2_item_order_by -} - -""" -select columns of table "pokemon_v2_itemgameindex" -""" -enum pokemon_v2_itemgameindex_select_column { - """column name""" - game_index - - """column name""" - generation_id - - """column name""" - id - - """column name""" - item_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_itemgameindex_stddev_fields { - game_index: Float - generation_id: Float - id: Float - item_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_itemgameindex" -""" -input pokemon_v2_itemgameindex_stddev_order_by { - game_index: order_by - generation_id: order_by - id: order_by - item_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_itemgameindex_stddev_pop_fields { - game_index: Float - generation_id: Float - id: Float - item_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_itemgameindex" -""" -input pokemon_v2_itemgameindex_stddev_pop_order_by { - game_index: order_by - generation_id: order_by - id: order_by - item_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_itemgameindex_stddev_samp_fields { - game_index: Float - generation_id: Float - id: Float - item_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_itemgameindex" -""" -input pokemon_v2_itemgameindex_stddev_samp_order_by { - game_index: order_by - generation_id: order_by - id: order_by - item_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_itemgameindex" -""" -input pokemon_v2_itemgameindex_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_itemgameindex_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_itemgameindex_stream_cursor_value_input { - game_index: Int - generation_id: Int - id: Int - item_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_itemgameindex_sum_fields { - game_index: Int - generation_id: Int - id: Int - item_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_itemgameindex" -""" -input pokemon_v2_itemgameindex_sum_order_by { - game_index: order_by - generation_id: order_by - id: order_by - item_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_itemgameindex_var_pop_fields { - game_index: Float - generation_id: Float - id: Float - item_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_itemgameindex" -""" -input pokemon_v2_itemgameindex_var_pop_order_by { - game_index: order_by - generation_id: order_by - id: order_by - item_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_itemgameindex_var_samp_fields { - game_index: Float - generation_id: Float - id: Float - item_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_itemgameindex" -""" -input pokemon_v2_itemgameindex_var_samp_order_by { - game_index: order_by - generation_id: order_by - id: order_by - item_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_itemgameindex_variance_fields { - game_index: Float - generation_id: Float - id: Float - item_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_itemgameindex" -""" -input pokemon_v2_itemgameindex_variance_order_by { - game_index: order_by - generation_id: order_by - id: order_by - item_id: order_by -} - -""" -columns and relationships of "pokemon_v2_itemname" -""" -type pokemon_v2_itemname { - id: Int! - item_id: Int - language_id: Int - name: String! - - """An object relationship""" - pokemon_v2_item: pokemon_v2_item - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language -} - -""" -aggregated selection of "pokemon_v2_itemname" -""" -type pokemon_v2_itemname_aggregate { - aggregate: pokemon_v2_itemname_aggregate_fields - nodes: [pokemon_v2_itemname!]! -} - -input pokemon_v2_itemname_aggregate_bool_exp { - count: pokemon_v2_itemname_aggregate_bool_exp_count -} - -input pokemon_v2_itemname_aggregate_bool_exp_count { - arguments: [pokemon_v2_itemname_select_column!] - distinct: Boolean - filter: pokemon_v2_itemname_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_itemname" -""" -type pokemon_v2_itemname_aggregate_fields { - avg: pokemon_v2_itemname_avg_fields - count(columns: [pokemon_v2_itemname_select_column!], distinct: Boolean): Int! - max: pokemon_v2_itemname_max_fields - min: pokemon_v2_itemname_min_fields - stddev: pokemon_v2_itemname_stddev_fields - stddev_pop: pokemon_v2_itemname_stddev_pop_fields - stddev_samp: pokemon_v2_itemname_stddev_samp_fields - sum: pokemon_v2_itemname_sum_fields - var_pop: pokemon_v2_itemname_var_pop_fields - var_samp: pokemon_v2_itemname_var_samp_fields - variance: pokemon_v2_itemname_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_itemname" -""" -input pokemon_v2_itemname_aggregate_order_by { - avg: pokemon_v2_itemname_avg_order_by - count: order_by - max: pokemon_v2_itemname_max_order_by - min: pokemon_v2_itemname_min_order_by - stddev: pokemon_v2_itemname_stddev_order_by - stddev_pop: pokemon_v2_itemname_stddev_pop_order_by - stddev_samp: pokemon_v2_itemname_stddev_samp_order_by - sum: pokemon_v2_itemname_sum_order_by - var_pop: pokemon_v2_itemname_var_pop_order_by - var_samp: pokemon_v2_itemname_var_samp_order_by - variance: pokemon_v2_itemname_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_itemname_avg_fields { - id: Float - item_id: Float - language_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_itemname" -""" -input pokemon_v2_itemname_avg_order_by { - id: order_by - item_id: order_by - language_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_itemname". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_itemname_bool_exp { - _and: [pokemon_v2_itemname_bool_exp!] - _not: pokemon_v2_itemname_bool_exp - _or: [pokemon_v2_itemname_bool_exp!] - id: Int_comparison_exp - item_id: Int_comparison_exp - language_id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_item: pokemon_v2_item_bool_exp - pokemon_v2_language: pokemon_v2_language_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_itemname_max_fields { - id: Int - item_id: Int - language_id: Int - name: String -} - -""" -order by max() on columns of table "pokemon_v2_itemname" -""" -input pokemon_v2_itemname_max_order_by { - id: order_by - item_id: order_by - language_id: order_by - name: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_itemname_min_fields { - id: Int - item_id: Int - language_id: Int - name: String -} - -""" -order by min() on columns of table "pokemon_v2_itemname" -""" -input pokemon_v2_itemname_min_order_by { - id: order_by - item_id: order_by - language_id: order_by - name: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_itemname".""" -input pokemon_v2_itemname_order_by { - id: order_by - item_id: order_by - language_id: order_by - name: order_by - pokemon_v2_item: pokemon_v2_item_order_by - pokemon_v2_language: pokemon_v2_language_order_by -} - -""" -select columns of table "pokemon_v2_itemname" -""" -enum pokemon_v2_itemname_select_column { - """column name""" - id - - """column name""" - item_id - - """column name""" - language_id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_itemname_stddev_fields { - id: Float - item_id: Float - language_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_itemname" -""" -input pokemon_v2_itemname_stddev_order_by { - id: order_by - item_id: order_by - language_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_itemname_stddev_pop_fields { - id: Float - item_id: Float - language_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_itemname" -""" -input pokemon_v2_itemname_stddev_pop_order_by { - id: order_by - item_id: order_by - language_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_itemname_stddev_samp_fields { - id: Float - item_id: Float - language_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_itemname" -""" -input pokemon_v2_itemname_stddev_samp_order_by { - id: order_by - item_id: order_by - language_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_itemname" -""" -input pokemon_v2_itemname_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_itemname_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_itemname_stream_cursor_value_input { - id: Int - item_id: Int - language_id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_itemname_sum_fields { - id: Int - item_id: Int - language_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_itemname" -""" -input pokemon_v2_itemname_sum_order_by { - id: order_by - item_id: order_by - language_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_itemname_var_pop_fields { - id: Float - item_id: Float - language_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_itemname" -""" -input pokemon_v2_itemname_var_pop_order_by { - id: order_by - item_id: order_by - language_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_itemname_var_samp_fields { - id: Float - item_id: Float - language_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_itemname" -""" -input pokemon_v2_itemname_var_samp_order_by { - id: order_by - item_id: order_by - language_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_itemname_variance_fields { - id: Float - item_id: Float - language_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_itemname" -""" -input pokemon_v2_itemname_variance_order_by { - id: order_by - item_id: order_by - language_id: order_by -} - -""" -columns and relationships of "pokemon_v2_itempocket" -""" -type pokemon_v2_itempocket { - id: Int! - name: String! - - """An array relationship""" - pokemon_v2_itemcategories( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemcategory_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemcategory_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemcategory_bool_exp - ): [pokemon_v2_itemcategory!]! - - """An aggregate relationship""" - pokemon_v2_itemcategories_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemcategory_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemcategory_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemcategory_bool_exp - ): pokemon_v2_itemcategory_aggregate! - - """An array relationship""" - pokemon_v2_itempocketnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_itempocketname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itempocketname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itempocketname_bool_exp - ): [pokemon_v2_itempocketname!]! - - """An aggregate relationship""" - pokemon_v2_itempocketnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itempocketname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itempocketname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itempocketname_bool_exp - ): pokemon_v2_itempocketname_aggregate! -} - -""" -aggregated selection of "pokemon_v2_itempocket" -""" -type pokemon_v2_itempocket_aggregate { - aggregate: pokemon_v2_itempocket_aggregate_fields - nodes: [pokemon_v2_itempocket!]! -} - -""" -aggregate fields of "pokemon_v2_itempocket" -""" -type pokemon_v2_itempocket_aggregate_fields { - avg: pokemon_v2_itempocket_avg_fields - count(columns: [pokemon_v2_itempocket_select_column!], distinct: Boolean): Int! - max: pokemon_v2_itempocket_max_fields - min: pokemon_v2_itempocket_min_fields - stddev: pokemon_v2_itempocket_stddev_fields - stddev_pop: pokemon_v2_itempocket_stddev_pop_fields - stddev_samp: pokemon_v2_itempocket_stddev_samp_fields - sum: pokemon_v2_itempocket_sum_fields - var_pop: pokemon_v2_itempocket_var_pop_fields - var_samp: pokemon_v2_itempocket_var_samp_fields - variance: pokemon_v2_itempocket_variance_fields -} - -"""aggregate avg on columns""" -type pokemon_v2_itempocket_avg_fields { - id: Float -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_itempocket". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_itempocket_bool_exp { - _and: [pokemon_v2_itempocket_bool_exp!] - _not: pokemon_v2_itempocket_bool_exp - _or: [pokemon_v2_itempocket_bool_exp!] - id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_itemcategories: pokemon_v2_itemcategory_bool_exp - pokemon_v2_itemcategories_aggregate: pokemon_v2_itemcategory_aggregate_bool_exp - pokemon_v2_itempocketnames: pokemon_v2_itempocketname_bool_exp - pokemon_v2_itempocketnames_aggregate: pokemon_v2_itempocketname_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_itempocket_max_fields { - id: Int - name: String -} - -"""aggregate min on columns""" -type pokemon_v2_itempocket_min_fields { - id: Int - name: String -} - -"""Ordering options when selecting data from "pokemon_v2_itempocket".""" -input pokemon_v2_itempocket_order_by { - id: order_by - name: order_by - pokemon_v2_itemcategories_aggregate: pokemon_v2_itemcategory_aggregate_order_by - pokemon_v2_itempocketnames_aggregate: pokemon_v2_itempocketname_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_itempocket" -""" -enum pokemon_v2_itempocket_select_column { - """column name""" - id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_itempocket_stddev_fields { - id: Float -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_itempocket_stddev_pop_fields { - id: Float -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_itempocket_stddev_samp_fields { - id: Float -} - -""" -Streaming cursor of the table "pokemon_v2_itempocket" -""" -input pokemon_v2_itempocket_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_itempocket_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_itempocket_stream_cursor_value_input { - id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_itempocket_sum_fields { - id: Int -} - -"""aggregate var_pop on columns""" -type pokemon_v2_itempocket_var_pop_fields { - id: Float -} - -"""aggregate var_samp on columns""" -type pokemon_v2_itempocket_var_samp_fields { - id: Float -} - -"""aggregate variance on columns""" -type pokemon_v2_itempocket_variance_fields { - id: Float -} - -""" -columns and relationships of "pokemon_v2_itempocketname" -""" -type pokemon_v2_itempocketname { - id: Int! - item_pocket_id: Int - language_id: Int - name: String! - - """An object relationship""" - pokemon_v2_itempocket: pokemon_v2_itempocket - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language -} - -""" -aggregated selection of "pokemon_v2_itempocketname" -""" -type pokemon_v2_itempocketname_aggregate { - aggregate: pokemon_v2_itempocketname_aggregate_fields - nodes: [pokemon_v2_itempocketname!]! -} - -input pokemon_v2_itempocketname_aggregate_bool_exp { - count: pokemon_v2_itempocketname_aggregate_bool_exp_count -} - -input pokemon_v2_itempocketname_aggregate_bool_exp_count { - arguments: [pokemon_v2_itempocketname_select_column!] - distinct: Boolean - filter: pokemon_v2_itempocketname_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_itempocketname" -""" -type pokemon_v2_itempocketname_aggregate_fields { - avg: pokemon_v2_itempocketname_avg_fields - count(columns: [pokemon_v2_itempocketname_select_column!], distinct: Boolean): Int! - max: pokemon_v2_itempocketname_max_fields - min: pokemon_v2_itempocketname_min_fields - stddev: pokemon_v2_itempocketname_stddev_fields - stddev_pop: pokemon_v2_itempocketname_stddev_pop_fields - stddev_samp: pokemon_v2_itempocketname_stddev_samp_fields - sum: pokemon_v2_itempocketname_sum_fields - var_pop: pokemon_v2_itempocketname_var_pop_fields - var_samp: pokemon_v2_itempocketname_var_samp_fields - variance: pokemon_v2_itempocketname_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_itempocketname" -""" -input pokemon_v2_itempocketname_aggregate_order_by { - avg: pokemon_v2_itempocketname_avg_order_by - count: order_by - max: pokemon_v2_itempocketname_max_order_by - min: pokemon_v2_itempocketname_min_order_by - stddev: pokemon_v2_itempocketname_stddev_order_by - stddev_pop: pokemon_v2_itempocketname_stddev_pop_order_by - stddev_samp: pokemon_v2_itempocketname_stddev_samp_order_by - sum: pokemon_v2_itempocketname_sum_order_by - var_pop: pokemon_v2_itempocketname_var_pop_order_by - var_samp: pokemon_v2_itempocketname_var_samp_order_by - variance: pokemon_v2_itempocketname_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_itempocketname_avg_fields { - id: Float - item_pocket_id: Float - language_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_itempocketname" -""" -input pokemon_v2_itempocketname_avg_order_by { - id: order_by - item_pocket_id: order_by - language_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_itempocketname". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_itempocketname_bool_exp { - _and: [pokemon_v2_itempocketname_bool_exp!] - _not: pokemon_v2_itempocketname_bool_exp - _or: [pokemon_v2_itempocketname_bool_exp!] - id: Int_comparison_exp - item_pocket_id: Int_comparison_exp - language_id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_itempocket: pokemon_v2_itempocket_bool_exp - pokemon_v2_language: pokemon_v2_language_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_itempocketname_max_fields { - id: Int - item_pocket_id: Int - language_id: Int - name: String -} - -""" -order by max() on columns of table "pokemon_v2_itempocketname" -""" -input pokemon_v2_itempocketname_max_order_by { - id: order_by - item_pocket_id: order_by - language_id: order_by - name: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_itempocketname_min_fields { - id: Int - item_pocket_id: Int - language_id: Int - name: String -} - -""" -order by min() on columns of table "pokemon_v2_itempocketname" -""" -input pokemon_v2_itempocketname_min_order_by { - id: order_by - item_pocket_id: order_by - language_id: order_by - name: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_itempocketname".""" -input pokemon_v2_itempocketname_order_by { - id: order_by - item_pocket_id: order_by - language_id: order_by - name: order_by - pokemon_v2_itempocket: pokemon_v2_itempocket_order_by - pokemon_v2_language: pokemon_v2_language_order_by -} - -""" -select columns of table "pokemon_v2_itempocketname" -""" -enum pokemon_v2_itempocketname_select_column { - """column name""" - id - - """column name""" - item_pocket_id - - """column name""" - language_id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_itempocketname_stddev_fields { - id: Float - item_pocket_id: Float - language_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_itempocketname" -""" -input pokemon_v2_itempocketname_stddev_order_by { - id: order_by - item_pocket_id: order_by - language_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_itempocketname_stddev_pop_fields { - id: Float - item_pocket_id: Float - language_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_itempocketname" -""" -input pokemon_v2_itempocketname_stddev_pop_order_by { - id: order_by - item_pocket_id: order_by - language_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_itempocketname_stddev_samp_fields { - id: Float - item_pocket_id: Float - language_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_itempocketname" -""" -input pokemon_v2_itempocketname_stddev_samp_order_by { - id: order_by - item_pocket_id: order_by - language_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_itempocketname" -""" -input pokemon_v2_itempocketname_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_itempocketname_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_itempocketname_stream_cursor_value_input { - id: Int - item_pocket_id: Int - language_id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_itempocketname_sum_fields { - id: Int - item_pocket_id: Int - language_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_itempocketname" -""" -input pokemon_v2_itempocketname_sum_order_by { - id: order_by - item_pocket_id: order_by - language_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_itempocketname_var_pop_fields { - id: Float - item_pocket_id: Float - language_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_itempocketname" -""" -input pokemon_v2_itempocketname_var_pop_order_by { - id: order_by - item_pocket_id: order_by - language_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_itempocketname_var_samp_fields { - id: Float - item_pocket_id: Float - language_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_itempocketname" -""" -input pokemon_v2_itempocketname_var_samp_order_by { - id: order_by - item_pocket_id: order_by - language_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_itempocketname_variance_fields { - id: Float - item_pocket_id: Float - language_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_itempocketname" -""" -input pokemon_v2_itempocketname_variance_order_by { - id: order_by - item_pocket_id: order_by - language_id: order_by -} - -""" -columns and relationships of "pokemon_v2_itemsprites" -""" -type pokemon_v2_itemsprites { - id: Int! - item_id: Int - - """An object relationship""" - pokemon_v2_item: pokemon_v2_item - sprites( - """JSON select path""" - path: String - ): jsonb! -} - -""" -aggregated selection of "pokemon_v2_itemsprites" -""" -type pokemon_v2_itemsprites_aggregate { - aggregate: pokemon_v2_itemsprites_aggregate_fields - nodes: [pokemon_v2_itemsprites!]! -} - -input pokemon_v2_itemsprites_aggregate_bool_exp { - count: pokemon_v2_itemsprites_aggregate_bool_exp_count -} - -input pokemon_v2_itemsprites_aggregate_bool_exp_count { - arguments: [pokemon_v2_itemsprites_select_column!] - distinct: Boolean - filter: pokemon_v2_itemsprites_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_itemsprites" -""" -type pokemon_v2_itemsprites_aggregate_fields { - avg: pokemon_v2_itemsprites_avg_fields - count(columns: [pokemon_v2_itemsprites_select_column!], distinct: Boolean): Int! - max: pokemon_v2_itemsprites_max_fields - min: pokemon_v2_itemsprites_min_fields - stddev: pokemon_v2_itemsprites_stddev_fields - stddev_pop: pokemon_v2_itemsprites_stddev_pop_fields - stddev_samp: pokemon_v2_itemsprites_stddev_samp_fields - sum: pokemon_v2_itemsprites_sum_fields - var_pop: pokemon_v2_itemsprites_var_pop_fields - var_samp: pokemon_v2_itemsprites_var_samp_fields - variance: pokemon_v2_itemsprites_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_itemsprites" -""" -input pokemon_v2_itemsprites_aggregate_order_by { - avg: pokemon_v2_itemsprites_avg_order_by - count: order_by - max: pokemon_v2_itemsprites_max_order_by - min: pokemon_v2_itemsprites_min_order_by - stddev: pokemon_v2_itemsprites_stddev_order_by - stddev_pop: pokemon_v2_itemsprites_stddev_pop_order_by - stddev_samp: pokemon_v2_itemsprites_stddev_samp_order_by - sum: pokemon_v2_itemsprites_sum_order_by - var_pop: pokemon_v2_itemsprites_var_pop_order_by - var_samp: pokemon_v2_itemsprites_var_samp_order_by - variance: pokemon_v2_itemsprites_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_itemsprites_avg_fields { - id: Float - item_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_itemsprites" -""" -input pokemon_v2_itemsprites_avg_order_by { - id: order_by - item_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_itemsprites". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_itemsprites_bool_exp { - _and: [pokemon_v2_itemsprites_bool_exp!] - _not: pokemon_v2_itemsprites_bool_exp - _or: [pokemon_v2_itemsprites_bool_exp!] - id: Int_comparison_exp - item_id: Int_comparison_exp - pokemon_v2_item: pokemon_v2_item_bool_exp - sprites: jsonb_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_itemsprites_max_fields { - id: Int - item_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_itemsprites" -""" -input pokemon_v2_itemsprites_max_order_by { - id: order_by - item_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_itemsprites_min_fields { - id: Int - item_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_itemsprites" -""" -input pokemon_v2_itemsprites_min_order_by { - id: order_by - item_id: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_itemsprites".""" -input pokemon_v2_itemsprites_order_by { - id: order_by - item_id: order_by - pokemon_v2_item: pokemon_v2_item_order_by - sprites: order_by -} - -""" -select columns of table "pokemon_v2_itemsprites" -""" -enum pokemon_v2_itemsprites_select_column { - """column name""" - id - - """column name""" - item_id - - """column name""" - sprites -} - -"""aggregate stddev on columns""" -type pokemon_v2_itemsprites_stddev_fields { - id: Float - item_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_itemsprites" -""" -input pokemon_v2_itemsprites_stddev_order_by { - id: order_by - item_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_itemsprites_stddev_pop_fields { - id: Float - item_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_itemsprites" -""" -input pokemon_v2_itemsprites_stddev_pop_order_by { - id: order_by - item_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_itemsprites_stddev_samp_fields { - id: Float - item_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_itemsprites" -""" -input pokemon_v2_itemsprites_stddev_samp_order_by { - id: order_by - item_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_itemsprites" -""" -input pokemon_v2_itemsprites_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_itemsprites_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_itemsprites_stream_cursor_value_input { - id: Int - item_id: Int - sprites: jsonb -} - -"""aggregate sum on columns""" -type pokemon_v2_itemsprites_sum_fields { - id: Int - item_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_itemsprites" -""" -input pokemon_v2_itemsprites_sum_order_by { - id: order_by - item_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_itemsprites_var_pop_fields { - id: Float - item_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_itemsprites" -""" -input pokemon_v2_itemsprites_var_pop_order_by { - id: order_by - item_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_itemsprites_var_samp_fields { - id: Float - item_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_itemsprites" -""" -input pokemon_v2_itemsprites_var_samp_order_by { - id: order_by - item_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_itemsprites_variance_fields { - id: Float - item_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_itemsprites" -""" -input pokemon_v2_itemsprites_variance_order_by { - id: order_by - item_id: order_by -} - -""" -columns and relationships of "pokemon_v2_language" -""" -type pokemon_v2_language { - id: Int! - iso3166: String! - iso639: String! - name: String! - official: Boolean! - order: Int - - """An array relationship""" - pokemonV2LanguagenamesByLocalLanguageId( - """distinct select on columns""" - distinct_on: [pokemon_v2_languagename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_languagename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_languagename_bool_exp - ): [pokemon_v2_languagename!]! - - """An aggregate relationship""" - pokemonV2LanguagenamesByLocalLanguageId_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_languagename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_languagename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_languagename_bool_exp - ): pokemon_v2_languagename_aggregate! - - """An array relationship""" - pokemon_v2_abilitychangeeffecttexts( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilitychangeeffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilitychangeeffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilitychangeeffecttext_bool_exp - ): [pokemon_v2_abilitychangeeffecttext!]! - - """An aggregate relationship""" - pokemon_v2_abilitychangeeffecttexts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilitychangeeffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilitychangeeffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilitychangeeffecttext_bool_exp - ): pokemon_v2_abilitychangeeffecttext_aggregate! - - """An array relationship""" - pokemon_v2_abilityeffecttexts( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilityeffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilityeffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilityeffecttext_bool_exp - ): [pokemon_v2_abilityeffecttext!]! - - """An aggregate relationship""" - pokemon_v2_abilityeffecttexts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilityeffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilityeffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilityeffecttext_bool_exp - ): pokemon_v2_abilityeffecttext_aggregate! - - """An array relationship""" - pokemon_v2_abilityflavortexts( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilityflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilityflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilityflavortext_bool_exp - ): [pokemon_v2_abilityflavortext!]! - - """An aggregate relationship""" - pokemon_v2_abilityflavortexts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilityflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilityflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilityflavortext_bool_exp - ): pokemon_v2_abilityflavortext_aggregate! - - """An array relationship""" - pokemon_v2_abilitynames( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilityname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilityname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilityname_bool_exp - ): [pokemon_v2_abilityname!]! - - """An aggregate relationship""" - pokemon_v2_abilitynames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilityname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilityname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilityname_bool_exp - ): pokemon_v2_abilityname_aggregate! - - """An array relationship""" - pokemon_v2_berryfirmnessnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_berryfirmnessname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berryfirmnessname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berryfirmnessname_bool_exp - ): [pokemon_v2_berryfirmnessname!]! - - """An aggregate relationship""" - pokemon_v2_berryfirmnessnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_berryfirmnessname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berryfirmnessname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berryfirmnessname_bool_exp - ): pokemon_v2_berryfirmnessname_aggregate! - - """An array relationship""" - pokemon_v2_berryflavornames( - """distinct select on columns""" - distinct_on: [pokemon_v2_berryflavorname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berryflavorname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berryflavorname_bool_exp - ): [pokemon_v2_berryflavorname!]! - - """An aggregate relationship""" - pokemon_v2_berryflavornames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_berryflavorname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berryflavorname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berryflavorname_bool_exp - ): pokemon_v2_berryflavorname_aggregate! - - """An array relationship""" - pokemon_v2_characteristicdescriptions( - """distinct select on columns""" - distinct_on: [pokemon_v2_characteristicdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_characteristicdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_characteristicdescription_bool_exp - ): [pokemon_v2_characteristicdescription!]! - - """An aggregate relationship""" - pokemon_v2_characteristicdescriptions_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_characteristicdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_characteristicdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_characteristicdescription_bool_exp - ): pokemon_v2_characteristicdescription_aggregate! - - """An array relationship""" - pokemon_v2_contesteffecteffecttexts( - """distinct select on columns""" - distinct_on: [pokemon_v2_contesteffecteffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contesteffecteffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contesteffecteffecttext_bool_exp - ): [pokemon_v2_contesteffecteffecttext!]! - - """An aggregate relationship""" - pokemon_v2_contesteffecteffecttexts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_contesteffecteffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contesteffecteffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contesteffecteffecttext_bool_exp - ): pokemon_v2_contesteffecteffecttext_aggregate! - - """An array relationship""" - pokemon_v2_contesteffectflavortexts( - """distinct select on columns""" - distinct_on: [pokemon_v2_contesteffectflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contesteffectflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contesteffectflavortext_bool_exp - ): [pokemon_v2_contesteffectflavortext!]! - - """An aggregate relationship""" - pokemon_v2_contesteffectflavortexts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_contesteffectflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contesteffectflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contesteffectflavortext_bool_exp - ): pokemon_v2_contesteffectflavortext_aggregate! - - """An array relationship""" - pokemon_v2_contesttypenames( - """distinct select on columns""" - distinct_on: [pokemon_v2_contesttypename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contesttypename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contesttypename_bool_exp - ): [pokemon_v2_contesttypename!]! - - """An aggregate relationship""" - pokemon_v2_contesttypenames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_contesttypename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contesttypename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contesttypename_bool_exp - ): pokemon_v2_contesttypename_aggregate! - - """An array relationship""" - pokemon_v2_egggroupnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_egggroupname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_egggroupname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_egggroupname_bool_exp - ): [pokemon_v2_egggroupname!]! - - """An aggregate relationship""" - pokemon_v2_egggroupnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_egggroupname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_egggroupname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_egggroupname_bool_exp - ): pokemon_v2_egggroupname_aggregate! - - """An array relationship""" - pokemon_v2_encounterconditionnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterconditionname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterconditionname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterconditionname_bool_exp - ): [pokemon_v2_encounterconditionname!]! - - """An aggregate relationship""" - pokemon_v2_encounterconditionnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterconditionname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterconditionname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterconditionname_bool_exp - ): pokemon_v2_encounterconditionname_aggregate! - - """An array relationship""" - pokemon_v2_encounterconditionvaluenames( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterconditionvaluename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterconditionvaluename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterconditionvaluename_bool_exp - ): [pokemon_v2_encounterconditionvaluename!]! - - """An aggregate relationship""" - pokemon_v2_encounterconditionvaluenames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterconditionvaluename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterconditionvaluename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterconditionvaluename_bool_exp - ): pokemon_v2_encounterconditionvaluename_aggregate! - - """An array relationship""" - pokemon_v2_encountermethodnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_encountermethodname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encountermethodname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encountermethodname_bool_exp - ): [pokemon_v2_encountermethodname!]! - - """An aggregate relationship""" - pokemon_v2_encountermethodnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_encountermethodname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encountermethodname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encountermethodname_bool_exp - ): pokemon_v2_encountermethodname_aggregate! - - """An array relationship""" - pokemon_v2_evolutiontriggernames( - """distinct select on columns""" - distinct_on: [pokemon_v2_evolutiontriggername_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_evolutiontriggername_order_by!] - - """filter the rows returned""" - where: pokemon_v2_evolutiontriggername_bool_exp - ): [pokemon_v2_evolutiontriggername!]! - - """An aggregate relationship""" - pokemon_v2_evolutiontriggernames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_evolutiontriggername_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_evolutiontriggername_order_by!] - - """filter the rows returned""" - where: pokemon_v2_evolutiontriggername_bool_exp - ): pokemon_v2_evolutiontriggername_aggregate! - - """An array relationship""" - pokemon_v2_generationnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_generationname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_generationname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_generationname_bool_exp - ): [pokemon_v2_generationname!]! - - """An aggregate relationship""" - pokemon_v2_generationnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_generationname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_generationname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_generationname_bool_exp - ): pokemon_v2_generationname_aggregate! - - """An array relationship""" - pokemon_v2_growthratedescriptions( - """distinct select on columns""" - distinct_on: [pokemon_v2_growthratedescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_growthratedescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_growthratedescription_bool_exp - ): [pokemon_v2_growthratedescription!]! - - """An aggregate relationship""" - pokemon_v2_growthratedescriptions_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_growthratedescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_growthratedescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_growthratedescription_bool_exp - ): pokemon_v2_growthratedescription_aggregate! - - """An array relationship""" - pokemon_v2_itemattributedescriptions( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemattributedescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemattributedescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemattributedescription_bool_exp - ): [pokemon_v2_itemattributedescription!]! - - """An aggregate relationship""" - pokemon_v2_itemattributedescriptions_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemattributedescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemattributedescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemattributedescription_bool_exp - ): pokemon_v2_itemattributedescription_aggregate! - - """An array relationship""" - pokemon_v2_itemattributenames( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemattributename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemattributename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemattributename_bool_exp - ): [pokemon_v2_itemattributename!]! - - """An aggregate relationship""" - pokemon_v2_itemattributenames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemattributename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemattributename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemattributename_bool_exp - ): pokemon_v2_itemattributename_aggregate! - - """An array relationship""" - pokemon_v2_itemcategorynames( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemcategoryname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemcategoryname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemcategoryname_bool_exp - ): [pokemon_v2_itemcategoryname!]! - - """An aggregate relationship""" - pokemon_v2_itemcategorynames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemcategoryname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemcategoryname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemcategoryname_bool_exp - ): pokemon_v2_itemcategoryname_aggregate! - - """An array relationship""" - pokemon_v2_itemeffecttexts( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemeffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemeffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemeffecttext_bool_exp - ): [pokemon_v2_itemeffecttext!]! - - """An aggregate relationship""" - pokemon_v2_itemeffecttexts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemeffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemeffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemeffecttext_bool_exp - ): pokemon_v2_itemeffecttext_aggregate! - - """An array relationship""" - pokemon_v2_itemflavortexts( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemflavortext_bool_exp - ): [pokemon_v2_itemflavortext!]! - - """An aggregate relationship""" - pokemon_v2_itemflavortexts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemflavortext_bool_exp - ): pokemon_v2_itemflavortext_aggregate! - - """An array relationship""" - pokemon_v2_itemflingeffecteffecttexts( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemflingeffecteffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemflingeffecteffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemflingeffecteffecttext_bool_exp - ): [pokemon_v2_itemflingeffecteffecttext!]! - - """An aggregate relationship""" - pokemon_v2_itemflingeffecteffecttexts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemflingeffecteffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemflingeffecteffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemflingeffecteffecttext_bool_exp - ): pokemon_v2_itemflingeffecteffecttext_aggregate! - - """An array relationship""" - pokemon_v2_itemnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemname_bool_exp - ): [pokemon_v2_itemname!]! - - """An aggregate relationship""" - pokemon_v2_itemnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemname_bool_exp - ): pokemon_v2_itemname_aggregate! - - """An array relationship""" - pokemon_v2_itempocketnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_itempocketname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itempocketname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itempocketname_bool_exp - ): [pokemon_v2_itempocketname!]! - - """An aggregate relationship""" - pokemon_v2_itempocketnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itempocketname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itempocketname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itempocketname_bool_exp - ): pokemon_v2_itempocketname_aggregate! - - """An array relationship""" - pokemon_v2_languagenames( - """distinct select on columns""" - distinct_on: [pokemon_v2_languagename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_languagename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_languagename_bool_exp - ): [pokemon_v2_languagename!]! - - """An aggregate relationship""" - pokemon_v2_languagenames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_languagename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_languagename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_languagename_bool_exp - ): pokemon_v2_languagename_aggregate! - - """An array relationship""" - pokemon_v2_locationareanames( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationareaname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationareaname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationareaname_bool_exp - ): [pokemon_v2_locationareaname!]! - - """An aggregate relationship""" - pokemon_v2_locationareanames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationareaname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationareaname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationareaname_bool_exp - ): pokemon_v2_locationareaname_aggregate! - - """An array relationship""" - pokemon_v2_locationnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationname_bool_exp - ): [pokemon_v2_locationname!]! - - """An aggregate relationship""" - pokemon_v2_locationnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationname_bool_exp - ): pokemon_v2_locationname_aggregate! - - """An array relationship""" - pokemon_v2_moveattributedescriptions( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveattributedescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveattributedescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveattributedescription_bool_exp - ): [pokemon_v2_moveattributedescription!]! - - """An aggregate relationship""" - pokemon_v2_moveattributedescriptions_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveattributedescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveattributedescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveattributedescription_bool_exp - ): pokemon_v2_moveattributedescription_aggregate! - - """An array relationship""" - pokemon_v2_moveattributenames( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveattributename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveattributename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveattributename_bool_exp - ): [pokemon_v2_moveattributename!]! - - """An aggregate relationship""" - pokemon_v2_moveattributenames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveattributename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveattributename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveattributename_bool_exp - ): pokemon_v2_moveattributename_aggregate! - - """An array relationship""" - pokemon_v2_movebattlestylenames( - """distinct select on columns""" - distinct_on: [pokemon_v2_movebattlestylename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movebattlestylename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movebattlestylename_bool_exp - ): [pokemon_v2_movebattlestylename!]! - - """An aggregate relationship""" - pokemon_v2_movebattlestylenames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movebattlestylename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movebattlestylename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movebattlestylename_bool_exp - ): pokemon_v2_movebattlestylename_aggregate! - - """An array relationship""" - pokemon_v2_movedamageclassdescriptions( - """distinct select on columns""" - distinct_on: [pokemon_v2_movedamageclassdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movedamageclassdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movedamageclassdescription_bool_exp - ): [pokemon_v2_movedamageclassdescription!]! - - """An aggregate relationship""" - pokemon_v2_movedamageclassdescriptions_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movedamageclassdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movedamageclassdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movedamageclassdescription_bool_exp - ): pokemon_v2_movedamageclassdescription_aggregate! - - """An array relationship""" - pokemon_v2_movedamageclassnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_movedamageclassname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movedamageclassname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movedamageclassname_bool_exp - ): [pokemon_v2_movedamageclassname!]! - - """An aggregate relationship""" - pokemon_v2_movedamageclassnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movedamageclassname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movedamageclassname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movedamageclassname_bool_exp - ): pokemon_v2_movedamageclassname_aggregate! - - """An array relationship""" - pokemon_v2_moveeffectchangeeffecttexts( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveeffectchangeeffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveeffectchangeeffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveeffectchangeeffecttext_bool_exp - ): [pokemon_v2_moveeffectchangeeffecttext!]! - - """An aggregate relationship""" - pokemon_v2_moveeffectchangeeffecttexts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveeffectchangeeffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveeffectchangeeffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveeffectchangeeffecttext_bool_exp - ): pokemon_v2_moveeffectchangeeffecttext_aggregate! - - """An array relationship""" - pokemon_v2_moveeffecteffecttexts( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveeffecteffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveeffecteffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveeffecteffecttext_bool_exp - ): [pokemon_v2_moveeffecteffecttext!]! - - """An aggregate relationship""" - pokemon_v2_moveeffecteffecttexts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveeffecteffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveeffecteffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveeffecteffecttext_bool_exp - ): pokemon_v2_moveeffecteffecttext_aggregate! - - """An array relationship""" - pokemon_v2_moveflavortexts( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveflavortext_bool_exp - ): [pokemon_v2_moveflavortext!]! - - """An aggregate relationship""" - pokemon_v2_moveflavortexts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveflavortext_bool_exp - ): pokemon_v2_moveflavortext_aggregate! - - """An array relationship""" - pokemon_v2_movelearnmethoddescriptions( - """distinct select on columns""" - distinct_on: [pokemon_v2_movelearnmethoddescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movelearnmethoddescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movelearnmethoddescription_bool_exp - ): [pokemon_v2_movelearnmethoddescription!]! - - """An aggregate relationship""" - pokemon_v2_movelearnmethoddescriptions_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movelearnmethoddescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movelearnmethoddescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movelearnmethoddescription_bool_exp - ): pokemon_v2_movelearnmethoddescription_aggregate! - - """An array relationship""" - pokemon_v2_movelearnmethodnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_movelearnmethodname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movelearnmethodname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movelearnmethodname_bool_exp - ): [pokemon_v2_movelearnmethodname!]! - - """An aggregate relationship""" - pokemon_v2_movelearnmethodnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movelearnmethodname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movelearnmethodname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movelearnmethodname_bool_exp - ): pokemon_v2_movelearnmethodname_aggregate! - - """An array relationship""" - pokemon_v2_movemetaailmentnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemetaailmentname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemetaailmentname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemetaailmentname_bool_exp - ): [pokemon_v2_movemetaailmentname!]! - - """An aggregate relationship""" - pokemon_v2_movemetaailmentnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemetaailmentname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemetaailmentname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemetaailmentname_bool_exp - ): pokemon_v2_movemetaailmentname_aggregate! - - """An array relationship""" - pokemon_v2_movemetacategorydescriptions( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemetacategorydescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemetacategorydescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemetacategorydescription_bool_exp - ): [pokemon_v2_movemetacategorydescription!]! - - """An aggregate relationship""" - pokemon_v2_movemetacategorydescriptions_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemetacategorydescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemetacategorydescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemetacategorydescription_bool_exp - ): pokemon_v2_movemetacategorydescription_aggregate! - - """An array relationship""" - pokemon_v2_movenames( - """distinct select on columns""" - distinct_on: [pokemon_v2_movename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movename_bool_exp - ): [pokemon_v2_movename!]! - - """An aggregate relationship""" - pokemon_v2_movenames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movename_bool_exp - ): pokemon_v2_movename_aggregate! - - """An array relationship""" - pokemon_v2_movetargetdescriptions( - """distinct select on columns""" - distinct_on: [pokemon_v2_movetargetdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movetargetdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movetargetdescription_bool_exp - ): [pokemon_v2_movetargetdescription!]! - - """An aggregate relationship""" - pokemon_v2_movetargetdescriptions_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movetargetdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movetargetdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movetargetdescription_bool_exp - ): pokemon_v2_movetargetdescription_aggregate! - - """An array relationship""" - pokemon_v2_movetargetnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_movetargetname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movetargetname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movetargetname_bool_exp - ): [pokemon_v2_movetargetname!]! - - """An aggregate relationship""" - pokemon_v2_movetargetnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movetargetname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movetargetname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movetargetname_bool_exp - ): pokemon_v2_movetargetname_aggregate! - - """An array relationship""" - pokemon_v2_naturenames( - """distinct select on columns""" - distinct_on: [pokemon_v2_naturename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_naturename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_naturename_bool_exp - ): [pokemon_v2_naturename!]! - - """An aggregate relationship""" - pokemon_v2_naturenames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_naturename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_naturename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_naturename_bool_exp - ): pokemon_v2_naturename_aggregate! - - """An array relationship""" - pokemon_v2_palparkareanames( - """distinct select on columns""" - distinct_on: [pokemon_v2_palparkareaname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_palparkareaname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_palparkareaname_bool_exp - ): [pokemon_v2_palparkareaname!]! - - """An aggregate relationship""" - pokemon_v2_palparkareanames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_palparkareaname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_palparkareaname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_palparkareaname_bool_exp - ): pokemon_v2_palparkareaname_aggregate! - - """An array relationship""" - pokemon_v2_pokeathlonstatnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokeathlonstatname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokeathlonstatname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokeathlonstatname_bool_exp - ): [pokemon_v2_pokeathlonstatname!]! - - """An aggregate relationship""" - pokemon_v2_pokeathlonstatnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokeathlonstatname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokeathlonstatname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokeathlonstatname_bool_exp - ): pokemon_v2_pokeathlonstatname_aggregate! - - """An array relationship""" - pokemon_v2_pokedexdescriptions( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokedexdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokedexdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokedexdescription_bool_exp - ): [pokemon_v2_pokedexdescription!]! - - """An aggregate relationship""" - pokemon_v2_pokedexdescriptions_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokedexdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokedexdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokedexdescription_bool_exp - ): pokemon_v2_pokedexdescription_aggregate! - - """An array relationship""" - pokemon_v2_pokedexnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokedexname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokedexname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokedexname_bool_exp - ): [pokemon_v2_pokedexname!]! - - """An aggregate relationship""" - pokemon_v2_pokedexnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokedexname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokedexname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokedexname_bool_exp - ): pokemon_v2_pokedexname_aggregate! - - """An array relationship""" - pokemon_v2_pokemoncolornames( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemoncolorname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemoncolorname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemoncolorname_bool_exp - ): [pokemon_v2_pokemoncolorname!]! - - """An aggregate relationship""" - pokemon_v2_pokemoncolornames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemoncolorname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemoncolorname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemoncolorname_bool_exp - ): pokemon_v2_pokemoncolorname_aggregate! - - """An array relationship""" - pokemon_v2_pokemonformnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonformname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonformname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonformname_bool_exp - ): [pokemon_v2_pokemonformname!]! - - """An aggregate relationship""" - pokemon_v2_pokemonformnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonformname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonformname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonformname_bool_exp - ): pokemon_v2_pokemonformname_aggregate! - - """An array relationship""" - pokemon_v2_pokemonhabitatnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonhabitatname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonhabitatname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonhabitatname_bool_exp - ): [pokemon_v2_pokemonhabitatname!]! - - """An aggregate relationship""" - pokemon_v2_pokemonhabitatnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonhabitatname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonhabitatname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonhabitatname_bool_exp - ): pokemon_v2_pokemonhabitatname_aggregate! - - """An array relationship""" - pokemon_v2_pokemonshapenames( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonshapename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonshapename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonshapename_bool_exp - ): [pokemon_v2_pokemonshapename!]! - - """An aggregate relationship""" - pokemon_v2_pokemonshapenames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonshapename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonshapename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonshapename_bool_exp - ): pokemon_v2_pokemonshapename_aggregate! - - """An array relationship""" - pokemon_v2_pokemonspeciesdescriptions( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspeciesdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspeciesdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspeciesdescription_bool_exp - ): [pokemon_v2_pokemonspeciesdescription!]! - - """An aggregate relationship""" - pokemon_v2_pokemonspeciesdescriptions_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspeciesdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspeciesdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspeciesdescription_bool_exp - ): pokemon_v2_pokemonspeciesdescription_aggregate! - - """An array relationship""" - pokemon_v2_pokemonspeciesflavortexts( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspeciesflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspeciesflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspeciesflavortext_bool_exp - ): [pokemon_v2_pokemonspeciesflavortext!]! - - """An aggregate relationship""" - pokemon_v2_pokemonspeciesflavortexts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspeciesflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspeciesflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspeciesflavortext_bool_exp - ): pokemon_v2_pokemonspeciesflavortext_aggregate! - - """An array relationship""" - pokemon_v2_pokemonspeciesnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspeciesname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspeciesname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspeciesname_bool_exp - ): [pokemon_v2_pokemonspeciesname!]! - - """An aggregate relationship""" - pokemon_v2_pokemonspeciesnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspeciesname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspeciesname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspeciesname_bool_exp - ): pokemon_v2_pokemonspeciesname_aggregate! - - """An array relationship""" - pokemon_v2_regionnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_regionname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_regionname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_regionname_bool_exp - ): [pokemon_v2_regionname!]! - - """An aggregate relationship""" - pokemon_v2_regionnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_regionname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_regionname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_regionname_bool_exp - ): pokemon_v2_regionname_aggregate! - - """An array relationship""" - pokemon_v2_statnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_statname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_statname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_statname_bool_exp - ): [pokemon_v2_statname!]! - - """An aggregate relationship""" - pokemon_v2_statnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_statname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_statname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_statname_bool_exp - ): pokemon_v2_statname_aggregate! - - """An array relationship""" - pokemon_v2_supercontesteffectflavortexts( - """distinct select on columns""" - distinct_on: [pokemon_v2_supercontesteffectflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_supercontesteffectflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_supercontesteffectflavortext_bool_exp - ): [pokemon_v2_supercontesteffectflavortext!]! - - """An aggregate relationship""" - pokemon_v2_supercontesteffectflavortexts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_supercontesteffectflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_supercontesteffectflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_supercontesteffectflavortext_bool_exp - ): pokemon_v2_supercontesteffectflavortext_aggregate! - - """An array relationship""" - pokemon_v2_typenames( - """distinct select on columns""" - distinct_on: [pokemon_v2_typename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_typename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_typename_bool_exp - ): [pokemon_v2_typename!]! - - """An aggregate relationship""" - pokemon_v2_typenames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_typename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_typename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_typename_bool_exp - ): pokemon_v2_typename_aggregate! - - """An array relationship""" - pokemon_v2_versionnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_versionname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_versionname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_versionname_bool_exp - ): [pokemon_v2_versionname!]! - - """An aggregate relationship""" - pokemon_v2_versionnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_versionname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_versionname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_versionname_bool_exp - ): pokemon_v2_versionname_aggregate! -} - -""" -aggregated selection of "pokemon_v2_language" -""" -type pokemon_v2_language_aggregate { - aggregate: pokemon_v2_language_aggregate_fields - nodes: [pokemon_v2_language!]! -} - -""" -aggregate fields of "pokemon_v2_language" -""" -type pokemon_v2_language_aggregate_fields { - avg: pokemon_v2_language_avg_fields - count(columns: [pokemon_v2_language_select_column!], distinct: Boolean): Int! - max: pokemon_v2_language_max_fields - min: pokemon_v2_language_min_fields - stddev: pokemon_v2_language_stddev_fields - stddev_pop: pokemon_v2_language_stddev_pop_fields - stddev_samp: pokemon_v2_language_stddev_samp_fields - sum: pokemon_v2_language_sum_fields - var_pop: pokemon_v2_language_var_pop_fields - var_samp: pokemon_v2_language_var_samp_fields - variance: pokemon_v2_language_variance_fields -} - -"""aggregate avg on columns""" -type pokemon_v2_language_avg_fields { - id: Float - order: Float -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_language". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_language_bool_exp { - _and: [pokemon_v2_language_bool_exp!] - _not: pokemon_v2_language_bool_exp - _or: [pokemon_v2_language_bool_exp!] - id: Int_comparison_exp - iso3166: String_comparison_exp - iso639: String_comparison_exp - name: String_comparison_exp - official: Boolean_comparison_exp - order: Int_comparison_exp - pokemonV2LanguagenamesByLocalLanguageId: pokemon_v2_languagename_bool_exp - pokemonV2LanguagenamesByLocalLanguageId_aggregate: pokemon_v2_languagename_aggregate_bool_exp - pokemon_v2_abilitychangeeffecttexts: pokemon_v2_abilitychangeeffecttext_bool_exp - pokemon_v2_abilitychangeeffecttexts_aggregate: pokemon_v2_abilitychangeeffecttext_aggregate_bool_exp - pokemon_v2_abilityeffecttexts: pokemon_v2_abilityeffecttext_bool_exp - pokemon_v2_abilityeffecttexts_aggregate: pokemon_v2_abilityeffecttext_aggregate_bool_exp - pokemon_v2_abilityflavortexts: pokemon_v2_abilityflavortext_bool_exp - pokemon_v2_abilityflavortexts_aggregate: pokemon_v2_abilityflavortext_aggregate_bool_exp - pokemon_v2_abilitynames: pokemon_v2_abilityname_bool_exp - pokemon_v2_abilitynames_aggregate: pokemon_v2_abilityname_aggregate_bool_exp - pokemon_v2_berryfirmnessnames: pokemon_v2_berryfirmnessname_bool_exp - pokemon_v2_berryfirmnessnames_aggregate: pokemon_v2_berryfirmnessname_aggregate_bool_exp - pokemon_v2_berryflavornames: pokemon_v2_berryflavorname_bool_exp - pokemon_v2_berryflavornames_aggregate: pokemon_v2_berryflavorname_aggregate_bool_exp - pokemon_v2_characteristicdescriptions: pokemon_v2_characteristicdescription_bool_exp - pokemon_v2_characteristicdescriptions_aggregate: pokemon_v2_characteristicdescription_aggregate_bool_exp - pokemon_v2_contesteffecteffecttexts: pokemon_v2_contesteffecteffecttext_bool_exp - pokemon_v2_contesteffecteffecttexts_aggregate: pokemon_v2_contesteffecteffecttext_aggregate_bool_exp - pokemon_v2_contesteffectflavortexts: pokemon_v2_contesteffectflavortext_bool_exp - pokemon_v2_contesteffectflavortexts_aggregate: pokemon_v2_contesteffectflavortext_aggregate_bool_exp - pokemon_v2_contesttypenames: pokemon_v2_contesttypename_bool_exp - pokemon_v2_contesttypenames_aggregate: pokemon_v2_contesttypename_aggregate_bool_exp - pokemon_v2_egggroupnames: pokemon_v2_egggroupname_bool_exp - pokemon_v2_egggroupnames_aggregate: pokemon_v2_egggroupname_aggregate_bool_exp - pokemon_v2_encounterconditionnames: pokemon_v2_encounterconditionname_bool_exp - pokemon_v2_encounterconditionnames_aggregate: pokemon_v2_encounterconditionname_aggregate_bool_exp - pokemon_v2_encounterconditionvaluenames: pokemon_v2_encounterconditionvaluename_bool_exp - pokemon_v2_encounterconditionvaluenames_aggregate: pokemon_v2_encounterconditionvaluename_aggregate_bool_exp - pokemon_v2_encountermethodnames: pokemon_v2_encountermethodname_bool_exp - pokemon_v2_encountermethodnames_aggregate: pokemon_v2_encountermethodname_aggregate_bool_exp - pokemon_v2_evolutiontriggernames: pokemon_v2_evolutiontriggername_bool_exp - pokemon_v2_evolutiontriggernames_aggregate: pokemon_v2_evolutiontriggername_aggregate_bool_exp - pokemon_v2_generationnames: pokemon_v2_generationname_bool_exp - pokemon_v2_generationnames_aggregate: pokemon_v2_generationname_aggregate_bool_exp - pokemon_v2_growthratedescriptions: pokemon_v2_growthratedescription_bool_exp - pokemon_v2_growthratedescriptions_aggregate: pokemon_v2_growthratedescription_aggregate_bool_exp - pokemon_v2_itemattributedescriptions: pokemon_v2_itemattributedescription_bool_exp - pokemon_v2_itemattributedescriptions_aggregate: pokemon_v2_itemattributedescription_aggregate_bool_exp - pokemon_v2_itemattributenames: pokemon_v2_itemattributename_bool_exp - pokemon_v2_itemattributenames_aggregate: pokemon_v2_itemattributename_aggregate_bool_exp - pokemon_v2_itemcategorynames: pokemon_v2_itemcategoryname_bool_exp - pokemon_v2_itemcategorynames_aggregate: pokemon_v2_itemcategoryname_aggregate_bool_exp - pokemon_v2_itemeffecttexts: pokemon_v2_itemeffecttext_bool_exp - pokemon_v2_itemeffecttexts_aggregate: pokemon_v2_itemeffecttext_aggregate_bool_exp - pokemon_v2_itemflavortexts: pokemon_v2_itemflavortext_bool_exp - pokemon_v2_itemflavortexts_aggregate: pokemon_v2_itemflavortext_aggregate_bool_exp - pokemon_v2_itemflingeffecteffecttexts: pokemon_v2_itemflingeffecteffecttext_bool_exp - pokemon_v2_itemflingeffecteffecttexts_aggregate: pokemon_v2_itemflingeffecteffecttext_aggregate_bool_exp - pokemon_v2_itemnames: pokemon_v2_itemname_bool_exp - pokemon_v2_itemnames_aggregate: pokemon_v2_itemname_aggregate_bool_exp - pokemon_v2_itempocketnames: pokemon_v2_itempocketname_bool_exp - pokemon_v2_itempocketnames_aggregate: pokemon_v2_itempocketname_aggregate_bool_exp - pokemon_v2_languagenames: pokemon_v2_languagename_bool_exp - pokemon_v2_languagenames_aggregate: pokemon_v2_languagename_aggregate_bool_exp - pokemon_v2_locationareanames: pokemon_v2_locationareaname_bool_exp - pokemon_v2_locationareanames_aggregate: pokemon_v2_locationareaname_aggregate_bool_exp - pokemon_v2_locationnames: pokemon_v2_locationname_bool_exp - pokemon_v2_locationnames_aggregate: pokemon_v2_locationname_aggregate_bool_exp - pokemon_v2_moveattributedescriptions: pokemon_v2_moveattributedescription_bool_exp - pokemon_v2_moveattributedescriptions_aggregate: pokemon_v2_moveattributedescription_aggregate_bool_exp - pokemon_v2_moveattributenames: pokemon_v2_moveattributename_bool_exp - pokemon_v2_moveattributenames_aggregate: pokemon_v2_moveattributename_aggregate_bool_exp - pokemon_v2_movebattlestylenames: pokemon_v2_movebattlestylename_bool_exp - pokemon_v2_movebattlestylenames_aggregate: pokemon_v2_movebattlestylename_aggregate_bool_exp - pokemon_v2_movedamageclassdescriptions: pokemon_v2_movedamageclassdescription_bool_exp - pokemon_v2_movedamageclassdescriptions_aggregate: pokemon_v2_movedamageclassdescription_aggregate_bool_exp - pokemon_v2_movedamageclassnames: pokemon_v2_movedamageclassname_bool_exp - pokemon_v2_movedamageclassnames_aggregate: pokemon_v2_movedamageclassname_aggregate_bool_exp - pokemon_v2_moveeffectchangeeffecttexts: pokemon_v2_moveeffectchangeeffecttext_bool_exp - pokemon_v2_moveeffectchangeeffecttexts_aggregate: pokemon_v2_moveeffectchangeeffecttext_aggregate_bool_exp - pokemon_v2_moveeffecteffecttexts: pokemon_v2_moveeffecteffecttext_bool_exp - pokemon_v2_moveeffecteffecttexts_aggregate: pokemon_v2_moveeffecteffecttext_aggregate_bool_exp - pokemon_v2_moveflavortexts: pokemon_v2_moveflavortext_bool_exp - pokemon_v2_moveflavortexts_aggregate: pokemon_v2_moveflavortext_aggregate_bool_exp - pokemon_v2_movelearnmethoddescriptions: pokemon_v2_movelearnmethoddescription_bool_exp - pokemon_v2_movelearnmethoddescriptions_aggregate: pokemon_v2_movelearnmethoddescription_aggregate_bool_exp - pokemon_v2_movelearnmethodnames: pokemon_v2_movelearnmethodname_bool_exp - pokemon_v2_movelearnmethodnames_aggregate: pokemon_v2_movelearnmethodname_aggregate_bool_exp - pokemon_v2_movemetaailmentnames: pokemon_v2_movemetaailmentname_bool_exp - pokemon_v2_movemetaailmentnames_aggregate: pokemon_v2_movemetaailmentname_aggregate_bool_exp - pokemon_v2_movemetacategorydescriptions: pokemon_v2_movemetacategorydescription_bool_exp - pokemon_v2_movemetacategorydescriptions_aggregate: pokemon_v2_movemetacategorydescription_aggregate_bool_exp - pokemon_v2_movenames: pokemon_v2_movename_bool_exp - pokemon_v2_movenames_aggregate: pokemon_v2_movename_aggregate_bool_exp - pokemon_v2_movetargetdescriptions: pokemon_v2_movetargetdescription_bool_exp - pokemon_v2_movetargetdescriptions_aggregate: pokemon_v2_movetargetdescription_aggregate_bool_exp - pokemon_v2_movetargetnames: pokemon_v2_movetargetname_bool_exp - pokemon_v2_movetargetnames_aggregate: pokemon_v2_movetargetname_aggregate_bool_exp - pokemon_v2_naturenames: pokemon_v2_naturename_bool_exp - pokemon_v2_naturenames_aggregate: pokemon_v2_naturename_aggregate_bool_exp - pokemon_v2_palparkareanames: pokemon_v2_palparkareaname_bool_exp - pokemon_v2_palparkareanames_aggregate: pokemon_v2_palparkareaname_aggregate_bool_exp - pokemon_v2_pokeathlonstatnames: pokemon_v2_pokeathlonstatname_bool_exp - pokemon_v2_pokeathlonstatnames_aggregate: pokemon_v2_pokeathlonstatname_aggregate_bool_exp - pokemon_v2_pokedexdescriptions: pokemon_v2_pokedexdescription_bool_exp - pokemon_v2_pokedexdescriptions_aggregate: pokemon_v2_pokedexdescription_aggregate_bool_exp - pokemon_v2_pokedexnames: pokemon_v2_pokedexname_bool_exp - pokemon_v2_pokedexnames_aggregate: pokemon_v2_pokedexname_aggregate_bool_exp - pokemon_v2_pokemoncolornames: pokemon_v2_pokemoncolorname_bool_exp - pokemon_v2_pokemoncolornames_aggregate: pokemon_v2_pokemoncolorname_aggregate_bool_exp - pokemon_v2_pokemonformnames: pokemon_v2_pokemonformname_bool_exp - pokemon_v2_pokemonformnames_aggregate: pokemon_v2_pokemonformname_aggregate_bool_exp - pokemon_v2_pokemonhabitatnames: pokemon_v2_pokemonhabitatname_bool_exp - pokemon_v2_pokemonhabitatnames_aggregate: pokemon_v2_pokemonhabitatname_aggregate_bool_exp - pokemon_v2_pokemonshapenames: pokemon_v2_pokemonshapename_bool_exp - pokemon_v2_pokemonshapenames_aggregate: pokemon_v2_pokemonshapename_aggregate_bool_exp - pokemon_v2_pokemonspeciesdescriptions: pokemon_v2_pokemonspeciesdescription_bool_exp - pokemon_v2_pokemonspeciesdescriptions_aggregate: pokemon_v2_pokemonspeciesdescription_aggregate_bool_exp - pokemon_v2_pokemonspeciesflavortexts: pokemon_v2_pokemonspeciesflavortext_bool_exp - pokemon_v2_pokemonspeciesflavortexts_aggregate: pokemon_v2_pokemonspeciesflavortext_aggregate_bool_exp - pokemon_v2_pokemonspeciesnames: pokemon_v2_pokemonspeciesname_bool_exp - pokemon_v2_pokemonspeciesnames_aggregate: pokemon_v2_pokemonspeciesname_aggregate_bool_exp - pokemon_v2_regionnames: pokemon_v2_regionname_bool_exp - pokemon_v2_regionnames_aggregate: pokemon_v2_regionname_aggregate_bool_exp - pokemon_v2_statnames: pokemon_v2_statname_bool_exp - pokemon_v2_statnames_aggregate: pokemon_v2_statname_aggregate_bool_exp - pokemon_v2_supercontesteffectflavortexts: pokemon_v2_supercontesteffectflavortext_bool_exp - pokemon_v2_supercontesteffectflavortexts_aggregate: pokemon_v2_supercontesteffectflavortext_aggregate_bool_exp - pokemon_v2_typenames: pokemon_v2_typename_bool_exp - pokemon_v2_typenames_aggregate: pokemon_v2_typename_aggregate_bool_exp - pokemon_v2_versionnames: pokemon_v2_versionname_bool_exp - pokemon_v2_versionnames_aggregate: pokemon_v2_versionname_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_language_max_fields { - id: Int - iso3166: String - iso639: String - name: String - order: Int -} - -"""aggregate min on columns""" -type pokemon_v2_language_min_fields { - id: Int - iso3166: String - iso639: String - name: String - order: Int -} - -"""Ordering options when selecting data from "pokemon_v2_language".""" -input pokemon_v2_language_order_by { - id: order_by - iso3166: order_by - iso639: order_by - name: order_by - official: order_by - order: order_by - pokemonV2LanguagenamesByLocalLanguageId_aggregate: pokemon_v2_languagename_aggregate_order_by - pokemon_v2_abilitychangeeffecttexts_aggregate: pokemon_v2_abilitychangeeffecttext_aggregate_order_by - pokemon_v2_abilityeffecttexts_aggregate: pokemon_v2_abilityeffecttext_aggregate_order_by - pokemon_v2_abilityflavortexts_aggregate: pokemon_v2_abilityflavortext_aggregate_order_by - pokemon_v2_abilitynames_aggregate: pokemon_v2_abilityname_aggregate_order_by - pokemon_v2_berryfirmnessnames_aggregate: pokemon_v2_berryfirmnessname_aggregate_order_by - pokemon_v2_berryflavornames_aggregate: pokemon_v2_berryflavorname_aggregate_order_by - pokemon_v2_characteristicdescriptions_aggregate: pokemon_v2_characteristicdescription_aggregate_order_by - pokemon_v2_contesteffecteffecttexts_aggregate: pokemon_v2_contesteffecteffecttext_aggregate_order_by - pokemon_v2_contesteffectflavortexts_aggregate: pokemon_v2_contesteffectflavortext_aggregate_order_by - pokemon_v2_contesttypenames_aggregate: pokemon_v2_contesttypename_aggregate_order_by - pokemon_v2_egggroupnames_aggregate: pokemon_v2_egggroupname_aggregate_order_by - pokemon_v2_encounterconditionnames_aggregate: pokemon_v2_encounterconditionname_aggregate_order_by - pokemon_v2_encounterconditionvaluenames_aggregate: pokemon_v2_encounterconditionvaluename_aggregate_order_by - pokemon_v2_encountermethodnames_aggregate: pokemon_v2_encountermethodname_aggregate_order_by - pokemon_v2_evolutiontriggernames_aggregate: pokemon_v2_evolutiontriggername_aggregate_order_by - pokemon_v2_generationnames_aggregate: pokemon_v2_generationname_aggregate_order_by - pokemon_v2_growthratedescriptions_aggregate: pokemon_v2_growthratedescription_aggregate_order_by - pokemon_v2_itemattributedescriptions_aggregate: pokemon_v2_itemattributedescription_aggregate_order_by - pokemon_v2_itemattributenames_aggregate: pokemon_v2_itemattributename_aggregate_order_by - pokemon_v2_itemcategorynames_aggregate: pokemon_v2_itemcategoryname_aggregate_order_by - pokemon_v2_itemeffecttexts_aggregate: pokemon_v2_itemeffecttext_aggregate_order_by - pokemon_v2_itemflavortexts_aggregate: pokemon_v2_itemflavortext_aggregate_order_by - pokemon_v2_itemflingeffecteffecttexts_aggregate: pokemon_v2_itemflingeffecteffecttext_aggregate_order_by - pokemon_v2_itemnames_aggregate: pokemon_v2_itemname_aggregate_order_by - pokemon_v2_itempocketnames_aggregate: pokemon_v2_itempocketname_aggregate_order_by - pokemon_v2_languagenames_aggregate: pokemon_v2_languagename_aggregate_order_by - pokemon_v2_locationareanames_aggregate: pokemon_v2_locationareaname_aggregate_order_by - pokemon_v2_locationnames_aggregate: pokemon_v2_locationname_aggregate_order_by - pokemon_v2_moveattributedescriptions_aggregate: pokemon_v2_moveattributedescription_aggregate_order_by - pokemon_v2_moveattributenames_aggregate: pokemon_v2_moveattributename_aggregate_order_by - pokemon_v2_movebattlestylenames_aggregate: pokemon_v2_movebattlestylename_aggregate_order_by - pokemon_v2_movedamageclassdescriptions_aggregate: pokemon_v2_movedamageclassdescription_aggregate_order_by - pokemon_v2_movedamageclassnames_aggregate: pokemon_v2_movedamageclassname_aggregate_order_by - pokemon_v2_moveeffectchangeeffecttexts_aggregate: pokemon_v2_moveeffectchangeeffecttext_aggregate_order_by - pokemon_v2_moveeffecteffecttexts_aggregate: pokemon_v2_moveeffecteffecttext_aggregate_order_by - pokemon_v2_moveflavortexts_aggregate: pokemon_v2_moveflavortext_aggregate_order_by - pokemon_v2_movelearnmethoddescriptions_aggregate: pokemon_v2_movelearnmethoddescription_aggregate_order_by - pokemon_v2_movelearnmethodnames_aggregate: pokemon_v2_movelearnmethodname_aggregate_order_by - pokemon_v2_movemetaailmentnames_aggregate: pokemon_v2_movemetaailmentname_aggregate_order_by - pokemon_v2_movemetacategorydescriptions_aggregate: pokemon_v2_movemetacategorydescription_aggregate_order_by - pokemon_v2_movenames_aggregate: pokemon_v2_movename_aggregate_order_by - pokemon_v2_movetargetdescriptions_aggregate: pokemon_v2_movetargetdescription_aggregate_order_by - pokemon_v2_movetargetnames_aggregate: pokemon_v2_movetargetname_aggregate_order_by - pokemon_v2_naturenames_aggregate: pokemon_v2_naturename_aggregate_order_by - pokemon_v2_palparkareanames_aggregate: pokemon_v2_palparkareaname_aggregate_order_by - pokemon_v2_pokeathlonstatnames_aggregate: pokemon_v2_pokeathlonstatname_aggregate_order_by - pokemon_v2_pokedexdescriptions_aggregate: pokemon_v2_pokedexdescription_aggregate_order_by - pokemon_v2_pokedexnames_aggregate: pokemon_v2_pokedexname_aggregate_order_by - pokemon_v2_pokemoncolornames_aggregate: pokemon_v2_pokemoncolorname_aggregate_order_by - pokemon_v2_pokemonformnames_aggregate: pokemon_v2_pokemonformname_aggregate_order_by - pokemon_v2_pokemonhabitatnames_aggregate: pokemon_v2_pokemonhabitatname_aggregate_order_by - pokemon_v2_pokemonshapenames_aggregate: pokemon_v2_pokemonshapename_aggregate_order_by - pokemon_v2_pokemonspeciesdescriptions_aggregate: pokemon_v2_pokemonspeciesdescription_aggregate_order_by - pokemon_v2_pokemonspeciesflavortexts_aggregate: pokemon_v2_pokemonspeciesflavortext_aggregate_order_by - pokemon_v2_pokemonspeciesnames_aggregate: pokemon_v2_pokemonspeciesname_aggregate_order_by - pokemon_v2_regionnames_aggregate: pokemon_v2_regionname_aggregate_order_by - pokemon_v2_statnames_aggregate: pokemon_v2_statname_aggregate_order_by - pokemon_v2_supercontesteffectflavortexts_aggregate: pokemon_v2_supercontesteffectflavortext_aggregate_order_by - pokemon_v2_typenames_aggregate: pokemon_v2_typename_aggregate_order_by - pokemon_v2_versionnames_aggregate: pokemon_v2_versionname_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_language" -""" -enum pokemon_v2_language_select_column { - """column name""" - id - - """column name""" - iso3166 - - """column name""" - iso639 - - """column name""" - name - - """column name""" - official - - """column name""" - order -} - -"""aggregate stddev on columns""" -type pokemon_v2_language_stddev_fields { - id: Float - order: Float -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_language_stddev_pop_fields { - id: Float - order: Float -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_language_stddev_samp_fields { - id: Float - order: Float -} - -""" -Streaming cursor of the table "pokemon_v2_language" -""" -input pokemon_v2_language_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_language_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_language_stream_cursor_value_input { - id: Int - iso3166: String - iso639: String - name: String - official: Boolean - order: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_language_sum_fields { - id: Int - order: Int -} - -"""aggregate var_pop on columns""" -type pokemon_v2_language_var_pop_fields { - id: Float - order: Float -} - -"""aggregate var_samp on columns""" -type pokemon_v2_language_var_samp_fields { - id: Float - order: Float -} - -"""aggregate variance on columns""" -type pokemon_v2_language_variance_fields { - id: Float - order: Float -} - -""" -columns and relationships of "pokemon_v2_languagename" -""" -type pokemon_v2_languagename { - id: Int! - language_id: Int - local_language_id: Int - name: String! - - """An object relationship""" - pokemonV2LanguageByLocalLanguageId: pokemon_v2_language - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language -} - -""" -aggregated selection of "pokemon_v2_languagename" -""" -type pokemon_v2_languagename_aggregate { - aggregate: pokemon_v2_languagename_aggregate_fields - nodes: [pokemon_v2_languagename!]! -} - -input pokemon_v2_languagename_aggregate_bool_exp { - count: pokemon_v2_languagename_aggregate_bool_exp_count -} - -input pokemon_v2_languagename_aggregate_bool_exp_count { - arguments: [pokemon_v2_languagename_select_column!] - distinct: Boolean - filter: pokemon_v2_languagename_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_languagename" -""" -type pokemon_v2_languagename_aggregate_fields { - avg: pokemon_v2_languagename_avg_fields - count(columns: [pokemon_v2_languagename_select_column!], distinct: Boolean): Int! - max: pokemon_v2_languagename_max_fields - min: pokemon_v2_languagename_min_fields - stddev: pokemon_v2_languagename_stddev_fields - stddev_pop: pokemon_v2_languagename_stddev_pop_fields - stddev_samp: pokemon_v2_languagename_stddev_samp_fields - sum: pokemon_v2_languagename_sum_fields - var_pop: pokemon_v2_languagename_var_pop_fields - var_samp: pokemon_v2_languagename_var_samp_fields - variance: pokemon_v2_languagename_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_languagename" -""" -input pokemon_v2_languagename_aggregate_order_by { - avg: pokemon_v2_languagename_avg_order_by - count: order_by - max: pokemon_v2_languagename_max_order_by - min: pokemon_v2_languagename_min_order_by - stddev: pokemon_v2_languagename_stddev_order_by - stddev_pop: pokemon_v2_languagename_stddev_pop_order_by - stddev_samp: pokemon_v2_languagename_stddev_samp_order_by - sum: pokemon_v2_languagename_sum_order_by - var_pop: pokemon_v2_languagename_var_pop_order_by - var_samp: pokemon_v2_languagename_var_samp_order_by - variance: pokemon_v2_languagename_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_languagename_avg_fields { - id: Float - language_id: Float - local_language_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_languagename" -""" -input pokemon_v2_languagename_avg_order_by { - id: order_by - language_id: order_by - local_language_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_languagename". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_languagename_bool_exp { - _and: [pokemon_v2_languagename_bool_exp!] - _not: pokemon_v2_languagename_bool_exp - _or: [pokemon_v2_languagename_bool_exp!] - id: Int_comparison_exp - language_id: Int_comparison_exp - local_language_id: Int_comparison_exp - name: String_comparison_exp - pokemonV2LanguageByLocalLanguageId: pokemon_v2_language_bool_exp - pokemon_v2_language: pokemon_v2_language_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_languagename_max_fields { - id: Int - language_id: Int - local_language_id: Int - name: String -} - -""" -order by max() on columns of table "pokemon_v2_languagename" -""" -input pokemon_v2_languagename_max_order_by { - id: order_by - language_id: order_by - local_language_id: order_by - name: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_languagename_min_fields { - id: Int - language_id: Int - local_language_id: Int - name: String -} - -""" -order by min() on columns of table "pokemon_v2_languagename" -""" -input pokemon_v2_languagename_min_order_by { - id: order_by - language_id: order_by - local_language_id: order_by - name: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_languagename".""" -input pokemon_v2_languagename_order_by { - id: order_by - language_id: order_by - local_language_id: order_by - name: order_by - pokemonV2LanguageByLocalLanguageId: pokemon_v2_language_order_by - pokemon_v2_language: pokemon_v2_language_order_by -} - -""" -select columns of table "pokemon_v2_languagename" -""" -enum pokemon_v2_languagename_select_column { - """column name""" - id - - """column name""" - language_id - - """column name""" - local_language_id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_languagename_stddev_fields { - id: Float - language_id: Float - local_language_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_languagename" -""" -input pokemon_v2_languagename_stddev_order_by { - id: order_by - language_id: order_by - local_language_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_languagename_stddev_pop_fields { - id: Float - language_id: Float - local_language_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_languagename" -""" -input pokemon_v2_languagename_stddev_pop_order_by { - id: order_by - language_id: order_by - local_language_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_languagename_stddev_samp_fields { - id: Float - language_id: Float - local_language_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_languagename" -""" -input pokemon_v2_languagename_stddev_samp_order_by { - id: order_by - language_id: order_by - local_language_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_languagename" -""" -input pokemon_v2_languagename_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_languagename_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_languagename_stream_cursor_value_input { - id: Int - language_id: Int - local_language_id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_languagename_sum_fields { - id: Int - language_id: Int - local_language_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_languagename" -""" -input pokemon_v2_languagename_sum_order_by { - id: order_by - language_id: order_by - local_language_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_languagename_var_pop_fields { - id: Float - language_id: Float - local_language_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_languagename" -""" -input pokemon_v2_languagename_var_pop_order_by { - id: order_by - language_id: order_by - local_language_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_languagename_var_samp_fields { - id: Float - language_id: Float - local_language_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_languagename" -""" -input pokemon_v2_languagename_var_samp_order_by { - id: order_by - language_id: order_by - local_language_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_languagename_variance_fields { - id: Float - language_id: Float - local_language_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_languagename" -""" -input pokemon_v2_languagename_variance_order_by { - id: order_by - language_id: order_by - local_language_id: order_by -} - -""" -columns and relationships of "pokemon_v2_location" -""" -type pokemon_v2_location { - id: Int! - name: String! - - """An array relationship""" - pokemon_v2_locationareas( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationarea_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationarea_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationarea_bool_exp - ): [pokemon_v2_locationarea!]! - - """An aggregate relationship""" - pokemon_v2_locationareas_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationarea_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationarea_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationarea_bool_exp - ): pokemon_v2_locationarea_aggregate! - - """An array relationship""" - pokemon_v2_locationgameindices( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationgameindex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationgameindex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationgameindex_bool_exp - ): [pokemon_v2_locationgameindex!]! - - """An aggregate relationship""" - pokemon_v2_locationgameindices_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationgameindex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationgameindex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationgameindex_bool_exp - ): pokemon_v2_locationgameindex_aggregate! - - """An array relationship""" - pokemon_v2_locationnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationname_bool_exp - ): [pokemon_v2_locationname!]! - - """An aggregate relationship""" - pokemon_v2_locationnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationname_bool_exp - ): pokemon_v2_locationname_aggregate! - - """An array relationship""" - pokemon_v2_pokemonevolutions( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonevolution_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonevolution_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonevolution_bool_exp - ): [pokemon_v2_pokemonevolution!]! - - """An aggregate relationship""" - pokemon_v2_pokemonevolutions_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonevolution_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonevolution_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonevolution_bool_exp - ): pokemon_v2_pokemonevolution_aggregate! - - """An object relationship""" - pokemon_v2_region: pokemon_v2_region - region_id: Int -} - -""" -aggregated selection of "pokemon_v2_location" -""" -type pokemon_v2_location_aggregate { - aggregate: pokemon_v2_location_aggregate_fields - nodes: [pokemon_v2_location!]! -} - -input pokemon_v2_location_aggregate_bool_exp { - count: pokemon_v2_location_aggregate_bool_exp_count -} - -input pokemon_v2_location_aggregate_bool_exp_count { - arguments: [pokemon_v2_location_select_column!] - distinct: Boolean - filter: pokemon_v2_location_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_location" -""" -type pokemon_v2_location_aggregate_fields { - avg: pokemon_v2_location_avg_fields - count(columns: [pokemon_v2_location_select_column!], distinct: Boolean): Int! - max: pokemon_v2_location_max_fields - min: pokemon_v2_location_min_fields - stddev: pokemon_v2_location_stddev_fields - stddev_pop: pokemon_v2_location_stddev_pop_fields - stddev_samp: pokemon_v2_location_stddev_samp_fields - sum: pokemon_v2_location_sum_fields - var_pop: pokemon_v2_location_var_pop_fields - var_samp: pokemon_v2_location_var_samp_fields - variance: pokemon_v2_location_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_location" -""" -input pokemon_v2_location_aggregate_order_by { - avg: pokemon_v2_location_avg_order_by - count: order_by - max: pokemon_v2_location_max_order_by - min: pokemon_v2_location_min_order_by - stddev: pokemon_v2_location_stddev_order_by - stddev_pop: pokemon_v2_location_stddev_pop_order_by - stddev_samp: pokemon_v2_location_stddev_samp_order_by - sum: pokemon_v2_location_sum_order_by - var_pop: pokemon_v2_location_var_pop_order_by - var_samp: pokemon_v2_location_var_samp_order_by - variance: pokemon_v2_location_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_location_avg_fields { - id: Float - region_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_location" -""" -input pokemon_v2_location_avg_order_by { - id: order_by - region_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_location". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_location_bool_exp { - _and: [pokemon_v2_location_bool_exp!] - _not: pokemon_v2_location_bool_exp - _or: [pokemon_v2_location_bool_exp!] - id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_locationareas: pokemon_v2_locationarea_bool_exp - pokemon_v2_locationareas_aggregate: pokemon_v2_locationarea_aggregate_bool_exp - pokemon_v2_locationgameindices: pokemon_v2_locationgameindex_bool_exp - pokemon_v2_locationgameindices_aggregate: pokemon_v2_locationgameindex_aggregate_bool_exp - pokemon_v2_locationnames: pokemon_v2_locationname_bool_exp - pokemon_v2_locationnames_aggregate: pokemon_v2_locationname_aggregate_bool_exp - pokemon_v2_pokemonevolutions: pokemon_v2_pokemonevolution_bool_exp - pokemon_v2_pokemonevolutions_aggregate: pokemon_v2_pokemonevolution_aggregate_bool_exp - pokemon_v2_region: pokemon_v2_region_bool_exp - region_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_location_max_fields { - id: Int - name: String - region_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_location" -""" -input pokemon_v2_location_max_order_by { - id: order_by - name: order_by - region_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_location_min_fields { - id: Int - name: String - region_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_location" -""" -input pokemon_v2_location_min_order_by { - id: order_by - name: order_by - region_id: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_location".""" -input pokemon_v2_location_order_by { - id: order_by - name: order_by - pokemon_v2_locationareas_aggregate: pokemon_v2_locationarea_aggregate_order_by - pokemon_v2_locationgameindices_aggregate: pokemon_v2_locationgameindex_aggregate_order_by - pokemon_v2_locationnames_aggregate: pokemon_v2_locationname_aggregate_order_by - pokemon_v2_pokemonevolutions_aggregate: pokemon_v2_pokemonevolution_aggregate_order_by - pokemon_v2_region: pokemon_v2_region_order_by - region_id: order_by -} - -""" -select columns of table "pokemon_v2_location" -""" -enum pokemon_v2_location_select_column { - """column name""" - id - - """column name""" - name - - """column name""" - region_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_location_stddev_fields { - id: Float - region_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_location" -""" -input pokemon_v2_location_stddev_order_by { - id: order_by - region_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_location_stddev_pop_fields { - id: Float - region_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_location" -""" -input pokemon_v2_location_stddev_pop_order_by { - id: order_by - region_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_location_stddev_samp_fields { - id: Float - region_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_location" -""" -input pokemon_v2_location_stddev_samp_order_by { - id: order_by - region_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_location" -""" -input pokemon_v2_location_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_location_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_location_stream_cursor_value_input { - id: Int - name: String - region_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_location_sum_fields { - id: Int - region_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_location" -""" -input pokemon_v2_location_sum_order_by { - id: order_by - region_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_location_var_pop_fields { - id: Float - region_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_location" -""" -input pokemon_v2_location_var_pop_order_by { - id: order_by - region_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_location_var_samp_fields { - id: Float - region_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_location" -""" -input pokemon_v2_location_var_samp_order_by { - id: order_by - region_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_location_variance_fields { - id: Float - region_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_location" -""" -input pokemon_v2_location_variance_order_by { - id: order_by - region_id: order_by -} - -""" -columns and relationships of "pokemon_v2_locationarea" -""" -type pokemon_v2_locationarea { - game_index: Int! - id: Int! - location_id: Int - name: String! - - """An array relationship""" - pokemon_v2_encounters( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounter_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounter_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounter_bool_exp - ): [pokemon_v2_encounter!]! - - """An aggregate relationship""" - pokemon_v2_encounters_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounter_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounter_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounter_bool_exp - ): pokemon_v2_encounter_aggregate! - - """An object relationship""" - pokemon_v2_location: pokemon_v2_location - - """An array relationship""" - pokemon_v2_locationareaencounterrates( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationareaencounterrate_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationareaencounterrate_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationareaencounterrate_bool_exp - ): [pokemon_v2_locationareaencounterrate!]! - - """An aggregate relationship""" - pokemon_v2_locationareaencounterrates_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationareaencounterrate_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationareaencounterrate_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationareaencounterrate_bool_exp - ): pokemon_v2_locationareaencounterrate_aggregate! - - """An array relationship""" - pokemon_v2_locationareanames( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationareaname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationareaname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationareaname_bool_exp - ): [pokemon_v2_locationareaname!]! - - """An aggregate relationship""" - pokemon_v2_locationareanames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationareaname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationareaname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationareaname_bool_exp - ): pokemon_v2_locationareaname_aggregate! -} - -""" -aggregated selection of "pokemon_v2_locationarea" -""" -type pokemon_v2_locationarea_aggregate { - aggregate: pokemon_v2_locationarea_aggregate_fields - nodes: [pokemon_v2_locationarea!]! -} - -input pokemon_v2_locationarea_aggregate_bool_exp { - count: pokemon_v2_locationarea_aggregate_bool_exp_count -} - -input pokemon_v2_locationarea_aggregate_bool_exp_count { - arguments: [pokemon_v2_locationarea_select_column!] - distinct: Boolean - filter: pokemon_v2_locationarea_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_locationarea" -""" -type pokemon_v2_locationarea_aggregate_fields { - avg: pokemon_v2_locationarea_avg_fields - count(columns: [pokemon_v2_locationarea_select_column!], distinct: Boolean): Int! - max: pokemon_v2_locationarea_max_fields - min: pokemon_v2_locationarea_min_fields - stddev: pokemon_v2_locationarea_stddev_fields - stddev_pop: pokemon_v2_locationarea_stddev_pop_fields - stddev_samp: pokemon_v2_locationarea_stddev_samp_fields - sum: pokemon_v2_locationarea_sum_fields - var_pop: pokemon_v2_locationarea_var_pop_fields - var_samp: pokemon_v2_locationarea_var_samp_fields - variance: pokemon_v2_locationarea_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_locationarea" -""" -input pokemon_v2_locationarea_aggregate_order_by { - avg: pokemon_v2_locationarea_avg_order_by - count: order_by - max: pokemon_v2_locationarea_max_order_by - min: pokemon_v2_locationarea_min_order_by - stddev: pokemon_v2_locationarea_stddev_order_by - stddev_pop: pokemon_v2_locationarea_stddev_pop_order_by - stddev_samp: pokemon_v2_locationarea_stddev_samp_order_by - sum: pokemon_v2_locationarea_sum_order_by - var_pop: pokemon_v2_locationarea_var_pop_order_by - var_samp: pokemon_v2_locationarea_var_samp_order_by - variance: pokemon_v2_locationarea_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_locationarea_avg_fields { - game_index: Float - id: Float - location_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_locationarea" -""" -input pokemon_v2_locationarea_avg_order_by { - game_index: order_by - id: order_by - location_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_locationarea". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_locationarea_bool_exp { - _and: [pokemon_v2_locationarea_bool_exp!] - _not: pokemon_v2_locationarea_bool_exp - _or: [pokemon_v2_locationarea_bool_exp!] - game_index: Int_comparison_exp - id: Int_comparison_exp - location_id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_encounters: pokemon_v2_encounter_bool_exp - pokemon_v2_encounters_aggregate: pokemon_v2_encounter_aggregate_bool_exp - pokemon_v2_location: pokemon_v2_location_bool_exp - pokemon_v2_locationareaencounterrates: pokemon_v2_locationareaencounterrate_bool_exp - pokemon_v2_locationareaencounterrates_aggregate: pokemon_v2_locationareaencounterrate_aggregate_bool_exp - pokemon_v2_locationareanames: pokemon_v2_locationareaname_bool_exp - pokemon_v2_locationareanames_aggregate: pokemon_v2_locationareaname_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_locationarea_max_fields { - game_index: Int - id: Int - location_id: Int - name: String -} - -""" -order by max() on columns of table "pokemon_v2_locationarea" -""" -input pokemon_v2_locationarea_max_order_by { - game_index: order_by - id: order_by - location_id: order_by - name: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_locationarea_min_fields { - game_index: Int - id: Int - location_id: Int - name: String -} - -""" -order by min() on columns of table "pokemon_v2_locationarea" -""" -input pokemon_v2_locationarea_min_order_by { - game_index: order_by - id: order_by - location_id: order_by - name: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_locationarea".""" -input pokemon_v2_locationarea_order_by { - game_index: order_by - id: order_by - location_id: order_by - name: order_by - pokemon_v2_encounters_aggregate: pokemon_v2_encounter_aggregate_order_by - pokemon_v2_location: pokemon_v2_location_order_by - pokemon_v2_locationareaencounterrates_aggregate: pokemon_v2_locationareaencounterrate_aggregate_order_by - pokemon_v2_locationareanames_aggregate: pokemon_v2_locationareaname_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_locationarea" -""" -enum pokemon_v2_locationarea_select_column { - """column name""" - game_index - - """column name""" - id - - """column name""" - location_id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_locationarea_stddev_fields { - game_index: Float - id: Float - location_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_locationarea" -""" -input pokemon_v2_locationarea_stddev_order_by { - game_index: order_by - id: order_by - location_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_locationarea_stddev_pop_fields { - game_index: Float - id: Float - location_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_locationarea" -""" -input pokemon_v2_locationarea_stddev_pop_order_by { - game_index: order_by - id: order_by - location_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_locationarea_stddev_samp_fields { - game_index: Float - id: Float - location_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_locationarea" -""" -input pokemon_v2_locationarea_stddev_samp_order_by { - game_index: order_by - id: order_by - location_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_locationarea" -""" -input pokemon_v2_locationarea_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_locationarea_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_locationarea_stream_cursor_value_input { - game_index: Int - id: Int - location_id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_locationarea_sum_fields { - game_index: Int - id: Int - location_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_locationarea" -""" -input pokemon_v2_locationarea_sum_order_by { - game_index: order_by - id: order_by - location_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_locationarea_var_pop_fields { - game_index: Float - id: Float - location_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_locationarea" -""" -input pokemon_v2_locationarea_var_pop_order_by { - game_index: order_by - id: order_by - location_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_locationarea_var_samp_fields { - game_index: Float - id: Float - location_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_locationarea" -""" -input pokemon_v2_locationarea_var_samp_order_by { - game_index: order_by - id: order_by - location_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_locationarea_variance_fields { - game_index: Float - id: Float - location_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_locationarea" -""" -input pokemon_v2_locationarea_variance_order_by { - game_index: order_by - id: order_by - location_id: order_by -} - -""" -columns and relationships of "pokemon_v2_locationareaencounterrate" -""" -type pokemon_v2_locationareaencounterrate { - encounter_method_id: Int - id: Int! - location_area_id: Int - - """An object relationship""" - pokemon_v2_encountermethod: pokemon_v2_encountermethod - - """An object relationship""" - pokemon_v2_locationarea: pokemon_v2_locationarea - - """An object relationship""" - pokemon_v2_version: pokemon_v2_version - rate: Int! - version_id: Int -} - -""" -aggregated selection of "pokemon_v2_locationareaencounterrate" -""" -type pokemon_v2_locationareaencounterrate_aggregate { - aggregate: pokemon_v2_locationareaencounterrate_aggregate_fields - nodes: [pokemon_v2_locationareaencounterrate!]! -} - -input pokemon_v2_locationareaencounterrate_aggregate_bool_exp { - count: pokemon_v2_locationareaencounterrate_aggregate_bool_exp_count -} - -input pokemon_v2_locationareaencounterrate_aggregate_bool_exp_count { - arguments: [pokemon_v2_locationareaencounterrate_select_column!] - distinct: Boolean - filter: pokemon_v2_locationareaencounterrate_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_locationareaencounterrate" -""" -type pokemon_v2_locationareaencounterrate_aggregate_fields { - avg: pokemon_v2_locationareaencounterrate_avg_fields - count(columns: [pokemon_v2_locationareaencounterrate_select_column!], distinct: Boolean): Int! - max: pokemon_v2_locationareaencounterrate_max_fields - min: pokemon_v2_locationareaencounterrate_min_fields - stddev: pokemon_v2_locationareaencounterrate_stddev_fields - stddev_pop: pokemon_v2_locationareaencounterrate_stddev_pop_fields - stddev_samp: pokemon_v2_locationareaencounterrate_stddev_samp_fields - sum: pokemon_v2_locationareaencounterrate_sum_fields - var_pop: pokemon_v2_locationareaencounterrate_var_pop_fields - var_samp: pokemon_v2_locationareaencounterrate_var_samp_fields - variance: pokemon_v2_locationareaencounterrate_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_locationareaencounterrate" -""" -input pokemon_v2_locationareaencounterrate_aggregate_order_by { - avg: pokemon_v2_locationareaencounterrate_avg_order_by - count: order_by - max: pokemon_v2_locationareaencounterrate_max_order_by - min: pokemon_v2_locationareaencounterrate_min_order_by - stddev: pokemon_v2_locationareaencounterrate_stddev_order_by - stddev_pop: pokemon_v2_locationareaencounterrate_stddev_pop_order_by - stddev_samp: pokemon_v2_locationareaencounterrate_stddev_samp_order_by - sum: pokemon_v2_locationareaencounterrate_sum_order_by - var_pop: pokemon_v2_locationareaencounterrate_var_pop_order_by - var_samp: pokemon_v2_locationareaencounterrate_var_samp_order_by - variance: pokemon_v2_locationareaencounterrate_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_locationareaencounterrate_avg_fields { - encounter_method_id: Float - id: Float - location_area_id: Float - rate: Float - version_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_locationareaencounterrate" -""" -input pokemon_v2_locationareaencounterrate_avg_order_by { - encounter_method_id: order_by - id: order_by - location_area_id: order_by - rate: order_by - version_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_locationareaencounterrate". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_locationareaencounterrate_bool_exp { - _and: [pokemon_v2_locationareaencounterrate_bool_exp!] - _not: pokemon_v2_locationareaencounterrate_bool_exp - _or: [pokemon_v2_locationareaencounterrate_bool_exp!] - encounter_method_id: Int_comparison_exp - id: Int_comparison_exp - location_area_id: Int_comparison_exp - pokemon_v2_encountermethod: pokemon_v2_encountermethod_bool_exp - pokemon_v2_locationarea: pokemon_v2_locationarea_bool_exp - pokemon_v2_version: pokemon_v2_version_bool_exp - rate: Int_comparison_exp - version_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_locationareaencounterrate_max_fields { - encounter_method_id: Int - id: Int - location_area_id: Int - rate: Int - version_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_locationareaencounterrate" -""" -input pokemon_v2_locationareaencounterrate_max_order_by { - encounter_method_id: order_by - id: order_by - location_area_id: order_by - rate: order_by - version_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_locationareaencounterrate_min_fields { - encounter_method_id: Int - id: Int - location_area_id: Int - rate: Int - version_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_locationareaencounterrate" -""" -input pokemon_v2_locationareaencounterrate_min_order_by { - encounter_method_id: order_by - id: order_by - location_area_id: order_by - rate: order_by - version_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_locationareaencounterrate". -""" -input pokemon_v2_locationareaencounterrate_order_by { - encounter_method_id: order_by - id: order_by - location_area_id: order_by - pokemon_v2_encountermethod: pokemon_v2_encountermethod_order_by - pokemon_v2_locationarea: pokemon_v2_locationarea_order_by - pokemon_v2_version: pokemon_v2_version_order_by - rate: order_by - version_id: order_by -} - -""" -select columns of table "pokemon_v2_locationareaencounterrate" -""" -enum pokemon_v2_locationareaencounterrate_select_column { - """column name""" - encounter_method_id - - """column name""" - id - - """column name""" - location_area_id - - """column name""" - rate - - """column name""" - version_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_locationareaencounterrate_stddev_fields { - encounter_method_id: Float - id: Float - location_area_id: Float - rate: Float - version_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_locationareaencounterrate" -""" -input pokemon_v2_locationareaencounterrate_stddev_order_by { - encounter_method_id: order_by - id: order_by - location_area_id: order_by - rate: order_by - version_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_locationareaencounterrate_stddev_pop_fields { - encounter_method_id: Float - id: Float - location_area_id: Float - rate: Float - version_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_locationareaencounterrate" -""" -input pokemon_v2_locationareaencounterrate_stddev_pop_order_by { - encounter_method_id: order_by - id: order_by - location_area_id: order_by - rate: order_by - version_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_locationareaencounterrate_stddev_samp_fields { - encounter_method_id: Float - id: Float - location_area_id: Float - rate: Float - version_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_locationareaencounterrate" -""" -input pokemon_v2_locationareaencounterrate_stddev_samp_order_by { - encounter_method_id: order_by - id: order_by - location_area_id: order_by - rate: order_by - version_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_locationareaencounterrate" -""" -input pokemon_v2_locationareaencounterrate_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_locationareaencounterrate_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_locationareaencounterrate_stream_cursor_value_input { - encounter_method_id: Int - id: Int - location_area_id: Int - rate: Int - version_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_locationareaencounterrate_sum_fields { - encounter_method_id: Int - id: Int - location_area_id: Int - rate: Int - version_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_locationareaencounterrate" -""" -input pokemon_v2_locationareaencounterrate_sum_order_by { - encounter_method_id: order_by - id: order_by - location_area_id: order_by - rate: order_by - version_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_locationareaencounterrate_var_pop_fields { - encounter_method_id: Float - id: Float - location_area_id: Float - rate: Float - version_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_locationareaencounterrate" -""" -input pokemon_v2_locationareaencounterrate_var_pop_order_by { - encounter_method_id: order_by - id: order_by - location_area_id: order_by - rate: order_by - version_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_locationareaencounterrate_var_samp_fields { - encounter_method_id: Float - id: Float - location_area_id: Float - rate: Float - version_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_locationareaencounterrate" -""" -input pokemon_v2_locationareaencounterrate_var_samp_order_by { - encounter_method_id: order_by - id: order_by - location_area_id: order_by - rate: order_by - version_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_locationareaencounterrate_variance_fields { - encounter_method_id: Float - id: Float - location_area_id: Float - rate: Float - version_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_locationareaencounterrate" -""" -input pokemon_v2_locationareaencounterrate_variance_order_by { - encounter_method_id: order_by - id: order_by - location_area_id: order_by - rate: order_by - version_id: order_by -} - -""" -columns and relationships of "pokemon_v2_locationareaname" -""" -type pokemon_v2_locationareaname { - id: Int! - language_id: Int - location_area_id: Int - name: String! - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_locationarea: pokemon_v2_locationarea -} - -""" -aggregated selection of "pokemon_v2_locationareaname" -""" -type pokemon_v2_locationareaname_aggregate { - aggregate: pokemon_v2_locationareaname_aggregate_fields - nodes: [pokemon_v2_locationareaname!]! -} - -input pokemon_v2_locationareaname_aggregate_bool_exp { - count: pokemon_v2_locationareaname_aggregate_bool_exp_count -} - -input pokemon_v2_locationareaname_aggregate_bool_exp_count { - arguments: [pokemon_v2_locationareaname_select_column!] - distinct: Boolean - filter: pokemon_v2_locationareaname_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_locationareaname" -""" -type pokemon_v2_locationareaname_aggregate_fields { - avg: pokemon_v2_locationareaname_avg_fields - count(columns: [pokemon_v2_locationareaname_select_column!], distinct: Boolean): Int! - max: pokemon_v2_locationareaname_max_fields - min: pokemon_v2_locationareaname_min_fields - stddev: pokemon_v2_locationareaname_stddev_fields - stddev_pop: pokemon_v2_locationareaname_stddev_pop_fields - stddev_samp: pokemon_v2_locationareaname_stddev_samp_fields - sum: pokemon_v2_locationareaname_sum_fields - var_pop: pokemon_v2_locationareaname_var_pop_fields - var_samp: pokemon_v2_locationareaname_var_samp_fields - variance: pokemon_v2_locationareaname_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_locationareaname" -""" -input pokemon_v2_locationareaname_aggregate_order_by { - avg: pokemon_v2_locationareaname_avg_order_by - count: order_by - max: pokemon_v2_locationareaname_max_order_by - min: pokemon_v2_locationareaname_min_order_by - stddev: pokemon_v2_locationareaname_stddev_order_by - stddev_pop: pokemon_v2_locationareaname_stddev_pop_order_by - stddev_samp: pokemon_v2_locationareaname_stddev_samp_order_by - sum: pokemon_v2_locationareaname_sum_order_by - var_pop: pokemon_v2_locationareaname_var_pop_order_by - var_samp: pokemon_v2_locationareaname_var_samp_order_by - variance: pokemon_v2_locationareaname_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_locationareaname_avg_fields { - id: Float - language_id: Float - location_area_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_locationareaname" -""" -input pokemon_v2_locationareaname_avg_order_by { - id: order_by - language_id: order_by - location_area_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_locationareaname". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_locationareaname_bool_exp { - _and: [pokemon_v2_locationareaname_bool_exp!] - _not: pokemon_v2_locationareaname_bool_exp - _or: [pokemon_v2_locationareaname_bool_exp!] - id: Int_comparison_exp - language_id: Int_comparison_exp - location_area_id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_locationarea: pokemon_v2_locationarea_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_locationareaname_max_fields { - id: Int - language_id: Int - location_area_id: Int - name: String -} - -""" -order by max() on columns of table "pokemon_v2_locationareaname" -""" -input pokemon_v2_locationareaname_max_order_by { - id: order_by - language_id: order_by - location_area_id: order_by - name: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_locationareaname_min_fields { - id: Int - language_id: Int - location_area_id: Int - name: String -} - -""" -order by min() on columns of table "pokemon_v2_locationareaname" -""" -input pokemon_v2_locationareaname_min_order_by { - id: order_by - language_id: order_by - location_area_id: order_by - name: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_locationareaname". -""" -input pokemon_v2_locationareaname_order_by { - id: order_by - language_id: order_by - location_area_id: order_by - name: order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_locationarea: pokemon_v2_locationarea_order_by -} - -""" -select columns of table "pokemon_v2_locationareaname" -""" -enum pokemon_v2_locationareaname_select_column { - """column name""" - id - - """column name""" - language_id - - """column name""" - location_area_id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_locationareaname_stddev_fields { - id: Float - language_id: Float - location_area_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_locationareaname" -""" -input pokemon_v2_locationareaname_stddev_order_by { - id: order_by - language_id: order_by - location_area_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_locationareaname_stddev_pop_fields { - id: Float - language_id: Float - location_area_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_locationareaname" -""" -input pokemon_v2_locationareaname_stddev_pop_order_by { - id: order_by - language_id: order_by - location_area_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_locationareaname_stddev_samp_fields { - id: Float - language_id: Float - location_area_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_locationareaname" -""" -input pokemon_v2_locationareaname_stddev_samp_order_by { - id: order_by - language_id: order_by - location_area_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_locationareaname" -""" -input pokemon_v2_locationareaname_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_locationareaname_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_locationareaname_stream_cursor_value_input { - id: Int - language_id: Int - location_area_id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_locationareaname_sum_fields { - id: Int - language_id: Int - location_area_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_locationareaname" -""" -input pokemon_v2_locationareaname_sum_order_by { - id: order_by - language_id: order_by - location_area_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_locationareaname_var_pop_fields { - id: Float - language_id: Float - location_area_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_locationareaname" -""" -input pokemon_v2_locationareaname_var_pop_order_by { - id: order_by - language_id: order_by - location_area_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_locationareaname_var_samp_fields { - id: Float - language_id: Float - location_area_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_locationareaname" -""" -input pokemon_v2_locationareaname_var_samp_order_by { - id: order_by - language_id: order_by - location_area_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_locationareaname_variance_fields { - id: Float - language_id: Float - location_area_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_locationareaname" -""" -input pokemon_v2_locationareaname_variance_order_by { - id: order_by - language_id: order_by - location_area_id: order_by -} - -""" -columns and relationships of "pokemon_v2_locationgameindex" -""" -type pokemon_v2_locationgameindex { - game_index: Int! - generation_id: Int - id: Int! - location_id: Int - - """An object relationship""" - pokemon_v2_generation: pokemon_v2_generation - - """An object relationship""" - pokemon_v2_location: pokemon_v2_location -} - -""" -aggregated selection of "pokemon_v2_locationgameindex" -""" -type pokemon_v2_locationgameindex_aggregate { - aggregate: pokemon_v2_locationgameindex_aggregate_fields - nodes: [pokemon_v2_locationgameindex!]! -} - -input pokemon_v2_locationgameindex_aggregate_bool_exp { - count: pokemon_v2_locationgameindex_aggregate_bool_exp_count -} - -input pokemon_v2_locationgameindex_aggregate_bool_exp_count { - arguments: [pokemon_v2_locationgameindex_select_column!] - distinct: Boolean - filter: pokemon_v2_locationgameindex_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_locationgameindex" -""" -type pokemon_v2_locationgameindex_aggregate_fields { - avg: pokemon_v2_locationgameindex_avg_fields - count(columns: [pokemon_v2_locationgameindex_select_column!], distinct: Boolean): Int! - max: pokemon_v2_locationgameindex_max_fields - min: pokemon_v2_locationgameindex_min_fields - stddev: pokemon_v2_locationgameindex_stddev_fields - stddev_pop: pokemon_v2_locationgameindex_stddev_pop_fields - stddev_samp: pokemon_v2_locationgameindex_stddev_samp_fields - sum: pokemon_v2_locationgameindex_sum_fields - var_pop: pokemon_v2_locationgameindex_var_pop_fields - var_samp: pokemon_v2_locationgameindex_var_samp_fields - variance: pokemon_v2_locationgameindex_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_locationgameindex" -""" -input pokemon_v2_locationgameindex_aggregate_order_by { - avg: pokemon_v2_locationgameindex_avg_order_by - count: order_by - max: pokemon_v2_locationgameindex_max_order_by - min: pokemon_v2_locationgameindex_min_order_by - stddev: pokemon_v2_locationgameindex_stddev_order_by - stddev_pop: pokemon_v2_locationgameindex_stddev_pop_order_by - stddev_samp: pokemon_v2_locationgameindex_stddev_samp_order_by - sum: pokemon_v2_locationgameindex_sum_order_by - var_pop: pokemon_v2_locationgameindex_var_pop_order_by - var_samp: pokemon_v2_locationgameindex_var_samp_order_by - variance: pokemon_v2_locationgameindex_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_locationgameindex_avg_fields { - game_index: Float - generation_id: Float - id: Float - location_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_locationgameindex" -""" -input pokemon_v2_locationgameindex_avg_order_by { - game_index: order_by - generation_id: order_by - id: order_by - location_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_locationgameindex". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_locationgameindex_bool_exp { - _and: [pokemon_v2_locationgameindex_bool_exp!] - _not: pokemon_v2_locationgameindex_bool_exp - _or: [pokemon_v2_locationgameindex_bool_exp!] - game_index: Int_comparison_exp - generation_id: Int_comparison_exp - id: Int_comparison_exp - location_id: Int_comparison_exp - pokemon_v2_generation: pokemon_v2_generation_bool_exp - pokemon_v2_location: pokemon_v2_location_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_locationgameindex_max_fields { - game_index: Int - generation_id: Int - id: Int - location_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_locationgameindex" -""" -input pokemon_v2_locationgameindex_max_order_by { - game_index: order_by - generation_id: order_by - id: order_by - location_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_locationgameindex_min_fields { - game_index: Int - generation_id: Int - id: Int - location_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_locationgameindex" -""" -input pokemon_v2_locationgameindex_min_order_by { - game_index: order_by - generation_id: order_by - id: order_by - location_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_locationgameindex". -""" -input pokemon_v2_locationgameindex_order_by { - game_index: order_by - generation_id: order_by - id: order_by - location_id: order_by - pokemon_v2_generation: pokemon_v2_generation_order_by - pokemon_v2_location: pokemon_v2_location_order_by -} - -""" -select columns of table "pokemon_v2_locationgameindex" -""" -enum pokemon_v2_locationgameindex_select_column { - """column name""" - game_index - - """column name""" - generation_id - - """column name""" - id - - """column name""" - location_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_locationgameindex_stddev_fields { - game_index: Float - generation_id: Float - id: Float - location_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_locationgameindex" -""" -input pokemon_v2_locationgameindex_stddev_order_by { - game_index: order_by - generation_id: order_by - id: order_by - location_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_locationgameindex_stddev_pop_fields { - game_index: Float - generation_id: Float - id: Float - location_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_locationgameindex" -""" -input pokemon_v2_locationgameindex_stddev_pop_order_by { - game_index: order_by - generation_id: order_by - id: order_by - location_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_locationgameindex_stddev_samp_fields { - game_index: Float - generation_id: Float - id: Float - location_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_locationgameindex" -""" -input pokemon_v2_locationgameindex_stddev_samp_order_by { - game_index: order_by - generation_id: order_by - id: order_by - location_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_locationgameindex" -""" -input pokemon_v2_locationgameindex_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_locationgameindex_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_locationgameindex_stream_cursor_value_input { - game_index: Int - generation_id: Int - id: Int - location_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_locationgameindex_sum_fields { - game_index: Int - generation_id: Int - id: Int - location_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_locationgameindex" -""" -input pokemon_v2_locationgameindex_sum_order_by { - game_index: order_by - generation_id: order_by - id: order_by - location_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_locationgameindex_var_pop_fields { - game_index: Float - generation_id: Float - id: Float - location_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_locationgameindex" -""" -input pokemon_v2_locationgameindex_var_pop_order_by { - game_index: order_by - generation_id: order_by - id: order_by - location_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_locationgameindex_var_samp_fields { - game_index: Float - generation_id: Float - id: Float - location_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_locationgameindex" -""" -input pokemon_v2_locationgameindex_var_samp_order_by { - game_index: order_by - generation_id: order_by - id: order_by - location_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_locationgameindex_variance_fields { - game_index: Float - generation_id: Float - id: Float - location_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_locationgameindex" -""" -input pokemon_v2_locationgameindex_variance_order_by { - game_index: order_by - generation_id: order_by - id: order_by - location_id: order_by -} - -""" -columns and relationships of "pokemon_v2_locationname" -""" -type pokemon_v2_locationname { - id: Int! - language_id: Int - location_id: Int - name: String! - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_location: pokemon_v2_location -} - -""" -aggregated selection of "pokemon_v2_locationname" -""" -type pokemon_v2_locationname_aggregate { - aggregate: pokemon_v2_locationname_aggregate_fields - nodes: [pokemon_v2_locationname!]! -} - -input pokemon_v2_locationname_aggregate_bool_exp { - count: pokemon_v2_locationname_aggregate_bool_exp_count -} - -input pokemon_v2_locationname_aggregate_bool_exp_count { - arguments: [pokemon_v2_locationname_select_column!] - distinct: Boolean - filter: pokemon_v2_locationname_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_locationname" -""" -type pokemon_v2_locationname_aggregate_fields { - avg: pokemon_v2_locationname_avg_fields - count(columns: [pokemon_v2_locationname_select_column!], distinct: Boolean): Int! - max: pokemon_v2_locationname_max_fields - min: pokemon_v2_locationname_min_fields - stddev: pokemon_v2_locationname_stddev_fields - stddev_pop: pokemon_v2_locationname_stddev_pop_fields - stddev_samp: pokemon_v2_locationname_stddev_samp_fields - sum: pokemon_v2_locationname_sum_fields - var_pop: pokemon_v2_locationname_var_pop_fields - var_samp: pokemon_v2_locationname_var_samp_fields - variance: pokemon_v2_locationname_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_locationname" -""" -input pokemon_v2_locationname_aggregate_order_by { - avg: pokemon_v2_locationname_avg_order_by - count: order_by - max: pokemon_v2_locationname_max_order_by - min: pokemon_v2_locationname_min_order_by - stddev: pokemon_v2_locationname_stddev_order_by - stddev_pop: pokemon_v2_locationname_stddev_pop_order_by - stddev_samp: pokemon_v2_locationname_stddev_samp_order_by - sum: pokemon_v2_locationname_sum_order_by - var_pop: pokemon_v2_locationname_var_pop_order_by - var_samp: pokemon_v2_locationname_var_samp_order_by - variance: pokemon_v2_locationname_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_locationname_avg_fields { - id: Float - language_id: Float - location_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_locationname" -""" -input pokemon_v2_locationname_avg_order_by { - id: order_by - language_id: order_by - location_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_locationname". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_locationname_bool_exp { - _and: [pokemon_v2_locationname_bool_exp!] - _not: pokemon_v2_locationname_bool_exp - _or: [pokemon_v2_locationname_bool_exp!] - id: Int_comparison_exp - language_id: Int_comparison_exp - location_id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_location: pokemon_v2_location_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_locationname_max_fields { - id: Int - language_id: Int - location_id: Int - name: String -} - -""" -order by max() on columns of table "pokemon_v2_locationname" -""" -input pokemon_v2_locationname_max_order_by { - id: order_by - language_id: order_by - location_id: order_by - name: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_locationname_min_fields { - id: Int - language_id: Int - location_id: Int - name: String -} - -""" -order by min() on columns of table "pokemon_v2_locationname" -""" -input pokemon_v2_locationname_min_order_by { - id: order_by - language_id: order_by - location_id: order_by - name: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_locationname".""" -input pokemon_v2_locationname_order_by { - id: order_by - language_id: order_by - location_id: order_by - name: order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_location: pokemon_v2_location_order_by -} - -""" -select columns of table "pokemon_v2_locationname" -""" -enum pokemon_v2_locationname_select_column { - """column name""" - id - - """column name""" - language_id - - """column name""" - location_id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_locationname_stddev_fields { - id: Float - language_id: Float - location_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_locationname" -""" -input pokemon_v2_locationname_stddev_order_by { - id: order_by - language_id: order_by - location_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_locationname_stddev_pop_fields { - id: Float - language_id: Float - location_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_locationname" -""" -input pokemon_v2_locationname_stddev_pop_order_by { - id: order_by - language_id: order_by - location_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_locationname_stddev_samp_fields { - id: Float - language_id: Float - location_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_locationname" -""" -input pokemon_v2_locationname_stddev_samp_order_by { - id: order_by - language_id: order_by - location_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_locationname" -""" -input pokemon_v2_locationname_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_locationname_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_locationname_stream_cursor_value_input { - id: Int - language_id: Int - location_id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_locationname_sum_fields { - id: Int - language_id: Int - location_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_locationname" -""" -input pokemon_v2_locationname_sum_order_by { - id: order_by - language_id: order_by - location_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_locationname_var_pop_fields { - id: Float - language_id: Float - location_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_locationname" -""" -input pokemon_v2_locationname_var_pop_order_by { - id: order_by - language_id: order_by - location_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_locationname_var_samp_fields { - id: Float - language_id: Float - location_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_locationname" -""" -input pokemon_v2_locationname_var_samp_order_by { - id: order_by - language_id: order_by - location_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_locationname_variance_fields { - id: Float - language_id: Float - location_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_locationname" -""" -input pokemon_v2_locationname_variance_order_by { - id: order_by - language_id: order_by - location_id: order_by -} - -""" -columns and relationships of "pokemon_v2_machine" -""" -type pokemon_v2_machine { - growth_rate_id: Int - id: Int! - item_id: Int - machine_number: Int! - move_id: Int - - """An object relationship""" - pokemon_v2_growthrate: pokemon_v2_growthrate - - """An object relationship""" - pokemon_v2_item: pokemon_v2_item - - """An object relationship""" - pokemon_v2_move: pokemon_v2_move - - """An object relationship""" - pokemon_v2_versiongroup: pokemon_v2_versiongroup - version_group_id: Int -} - -""" -aggregated selection of "pokemon_v2_machine" -""" -type pokemon_v2_machine_aggregate { - aggregate: pokemon_v2_machine_aggregate_fields - nodes: [pokemon_v2_machine!]! -} - -input pokemon_v2_machine_aggregate_bool_exp { - count: pokemon_v2_machine_aggregate_bool_exp_count -} - -input pokemon_v2_machine_aggregate_bool_exp_count { - arguments: [pokemon_v2_machine_select_column!] - distinct: Boolean - filter: pokemon_v2_machine_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_machine" -""" -type pokemon_v2_machine_aggregate_fields { - avg: pokemon_v2_machine_avg_fields - count(columns: [pokemon_v2_machine_select_column!], distinct: Boolean): Int! - max: pokemon_v2_machine_max_fields - min: pokemon_v2_machine_min_fields - stddev: pokemon_v2_machine_stddev_fields - stddev_pop: pokemon_v2_machine_stddev_pop_fields - stddev_samp: pokemon_v2_machine_stddev_samp_fields - sum: pokemon_v2_machine_sum_fields - var_pop: pokemon_v2_machine_var_pop_fields - var_samp: pokemon_v2_machine_var_samp_fields - variance: pokemon_v2_machine_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_machine" -""" -input pokemon_v2_machine_aggregate_order_by { - avg: pokemon_v2_machine_avg_order_by - count: order_by - max: pokemon_v2_machine_max_order_by - min: pokemon_v2_machine_min_order_by - stddev: pokemon_v2_machine_stddev_order_by - stddev_pop: pokemon_v2_machine_stddev_pop_order_by - stddev_samp: pokemon_v2_machine_stddev_samp_order_by - sum: pokemon_v2_machine_sum_order_by - var_pop: pokemon_v2_machine_var_pop_order_by - var_samp: pokemon_v2_machine_var_samp_order_by - variance: pokemon_v2_machine_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_machine_avg_fields { - growth_rate_id: Float - id: Float - item_id: Float - machine_number: Float - move_id: Float - version_group_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_machine" -""" -input pokemon_v2_machine_avg_order_by { - growth_rate_id: order_by - id: order_by - item_id: order_by - machine_number: order_by - move_id: order_by - version_group_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_machine". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_machine_bool_exp { - _and: [pokemon_v2_machine_bool_exp!] - _not: pokemon_v2_machine_bool_exp - _or: [pokemon_v2_machine_bool_exp!] - growth_rate_id: Int_comparison_exp - id: Int_comparison_exp - item_id: Int_comparison_exp - machine_number: Int_comparison_exp - move_id: Int_comparison_exp - pokemon_v2_growthrate: pokemon_v2_growthrate_bool_exp - pokemon_v2_item: pokemon_v2_item_bool_exp - pokemon_v2_move: pokemon_v2_move_bool_exp - pokemon_v2_versiongroup: pokemon_v2_versiongroup_bool_exp - version_group_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_machine_max_fields { - growth_rate_id: Int - id: Int - item_id: Int - machine_number: Int - move_id: Int - version_group_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_machine" -""" -input pokemon_v2_machine_max_order_by { - growth_rate_id: order_by - id: order_by - item_id: order_by - machine_number: order_by - move_id: order_by - version_group_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_machine_min_fields { - growth_rate_id: Int - id: Int - item_id: Int - machine_number: Int - move_id: Int - version_group_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_machine" -""" -input pokemon_v2_machine_min_order_by { - growth_rate_id: order_by - id: order_by - item_id: order_by - machine_number: order_by - move_id: order_by - version_group_id: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_machine".""" -input pokemon_v2_machine_order_by { - growth_rate_id: order_by - id: order_by - item_id: order_by - machine_number: order_by - move_id: order_by - pokemon_v2_growthrate: pokemon_v2_growthrate_order_by - pokemon_v2_item: pokemon_v2_item_order_by - pokemon_v2_move: pokemon_v2_move_order_by - pokemon_v2_versiongroup: pokemon_v2_versiongroup_order_by - version_group_id: order_by -} - -""" -select columns of table "pokemon_v2_machine" -""" -enum pokemon_v2_machine_select_column { - """column name""" - growth_rate_id - - """column name""" - id - - """column name""" - item_id - - """column name""" - machine_number - - """column name""" - move_id - - """column name""" - version_group_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_machine_stddev_fields { - growth_rate_id: Float - id: Float - item_id: Float - machine_number: Float - move_id: Float - version_group_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_machine" -""" -input pokemon_v2_machine_stddev_order_by { - growth_rate_id: order_by - id: order_by - item_id: order_by - machine_number: order_by - move_id: order_by - version_group_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_machine_stddev_pop_fields { - growth_rate_id: Float - id: Float - item_id: Float - machine_number: Float - move_id: Float - version_group_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_machine" -""" -input pokemon_v2_machine_stddev_pop_order_by { - growth_rate_id: order_by - id: order_by - item_id: order_by - machine_number: order_by - move_id: order_by - version_group_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_machine_stddev_samp_fields { - growth_rate_id: Float - id: Float - item_id: Float - machine_number: Float - move_id: Float - version_group_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_machine" -""" -input pokemon_v2_machine_stddev_samp_order_by { - growth_rate_id: order_by - id: order_by - item_id: order_by - machine_number: order_by - move_id: order_by - version_group_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_machine" -""" -input pokemon_v2_machine_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_machine_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_machine_stream_cursor_value_input { - growth_rate_id: Int - id: Int - item_id: Int - machine_number: Int - move_id: Int - version_group_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_machine_sum_fields { - growth_rate_id: Int - id: Int - item_id: Int - machine_number: Int - move_id: Int - version_group_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_machine" -""" -input pokemon_v2_machine_sum_order_by { - growth_rate_id: order_by - id: order_by - item_id: order_by - machine_number: order_by - move_id: order_by - version_group_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_machine_var_pop_fields { - growth_rate_id: Float - id: Float - item_id: Float - machine_number: Float - move_id: Float - version_group_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_machine" -""" -input pokemon_v2_machine_var_pop_order_by { - growth_rate_id: order_by - id: order_by - item_id: order_by - machine_number: order_by - move_id: order_by - version_group_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_machine_var_samp_fields { - growth_rate_id: Float - id: Float - item_id: Float - machine_number: Float - move_id: Float - version_group_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_machine" -""" -input pokemon_v2_machine_var_samp_order_by { - growth_rate_id: order_by - id: order_by - item_id: order_by - machine_number: order_by - move_id: order_by - version_group_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_machine_variance_fields { - growth_rate_id: Float - id: Float - item_id: Float - machine_number: Float - move_id: Float - version_group_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_machine" -""" -input pokemon_v2_machine_variance_order_by { - growth_rate_id: order_by - id: order_by - item_id: order_by - machine_number: order_by - move_id: order_by - version_group_id: order_by -} - -""" -columns and relationships of "pokemon_v2_move" -""" -type pokemon_v2_move { - accuracy: Int - contest_effect_id: Int - contest_type_id: Int - generation_id: Int - id: Int! - move_damage_class_id: Int - move_effect_chance: Int - move_effect_id: Int - move_target_id: Int - name: String! - - """An array relationship""" - pokemonV2ContestcombosBySecondMoveId( - """distinct select on columns""" - distinct_on: [pokemon_v2_contestcombo_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contestcombo_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contestcombo_bool_exp - ): [pokemon_v2_contestcombo!]! - - """An aggregate relationship""" - pokemonV2ContestcombosBySecondMoveId_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_contestcombo_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contestcombo_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contestcombo_bool_exp - ): pokemon_v2_contestcombo_aggregate! - - """An array relationship""" - pokemonV2SupercontestcombosBySecondMoveId( - """distinct select on columns""" - distinct_on: [pokemon_v2_supercontestcombo_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_supercontestcombo_order_by!] - - """filter the rows returned""" - where: pokemon_v2_supercontestcombo_bool_exp - ): [pokemon_v2_supercontestcombo!]! - - """An aggregate relationship""" - pokemonV2SupercontestcombosBySecondMoveId_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_supercontestcombo_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_supercontestcombo_order_by!] - - """filter the rows returned""" - where: pokemon_v2_supercontestcombo_bool_exp - ): pokemon_v2_supercontestcombo_aggregate! - - """An array relationship""" - pokemon_v2_contestcombos( - """distinct select on columns""" - distinct_on: [pokemon_v2_contestcombo_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contestcombo_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contestcombo_bool_exp - ): [pokemon_v2_contestcombo!]! - - """An aggregate relationship""" - pokemon_v2_contestcombos_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_contestcombo_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contestcombo_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contestcombo_bool_exp - ): pokemon_v2_contestcombo_aggregate! - - """An object relationship""" - pokemon_v2_contesteffect: pokemon_v2_contesteffect - - """An object relationship""" - pokemon_v2_contesttype: pokemon_v2_contesttype - - """An object relationship""" - pokemon_v2_generation: pokemon_v2_generation - - """An array relationship""" - pokemon_v2_machines( - """distinct select on columns""" - distinct_on: [pokemon_v2_machine_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_machine_order_by!] - - """filter the rows returned""" - where: pokemon_v2_machine_bool_exp - ): [pokemon_v2_machine!]! - - """An aggregate relationship""" - pokemon_v2_machines_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_machine_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_machine_order_by!] - - """filter the rows returned""" - where: pokemon_v2_machine_bool_exp - ): pokemon_v2_machine_aggregate! - - """An array relationship""" - pokemon_v2_moveattributemaps( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveattributemap_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveattributemap_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveattributemap_bool_exp - ): [pokemon_v2_moveattributemap!]! - - """An aggregate relationship""" - pokemon_v2_moveattributemaps_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveattributemap_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveattributemap_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveattributemap_bool_exp - ): pokemon_v2_moveattributemap_aggregate! - - """An array relationship""" - pokemon_v2_movechanges( - """distinct select on columns""" - distinct_on: [pokemon_v2_movechange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movechange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movechange_bool_exp - ): [pokemon_v2_movechange!]! - - """An aggregate relationship""" - pokemon_v2_movechanges_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movechange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movechange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movechange_bool_exp - ): pokemon_v2_movechange_aggregate! - - """An object relationship""" - pokemon_v2_movedamageclass: pokemon_v2_movedamageclass - - """An object relationship""" - pokemon_v2_moveeffect: pokemon_v2_moveeffect - - """An array relationship""" - pokemon_v2_moveflavortexts( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveflavortext_bool_exp - ): [pokemon_v2_moveflavortext!]! - - """An aggregate relationship""" - pokemon_v2_moveflavortexts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveflavortext_bool_exp - ): pokemon_v2_moveflavortext_aggregate! - - """An array relationship""" - pokemon_v2_movemeta( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemeta_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemeta_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemeta_bool_exp - ): [pokemon_v2_movemeta!]! - - """An aggregate relationship""" - pokemon_v2_movemeta_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemeta_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemeta_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemeta_bool_exp - ): pokemon_v2_movemeta_aggregate! - - """An array relationship""" - pokemon_v2_movemetastatchanges( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemetastatchange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemetastatchange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemetastatchange_bool_exp - ): [pokemon_v2_movemetastatchange!]! - - """An aggregate relationship""" - pokemon_v2_movemetastatchanges_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemetastatchange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemetastatchange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemetastatchange_bool_exp - ): pokemon_v2_movemetastatchange_aggregate! - - """An object relationship""" - pokemon_v2_movemetum: pokemon_v2_movemeta - - """An array relationship""" - pokemon_v2_movenames( - """distinct select on columns""" - distinct_on: [pokemon_v2_movename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movename_bool_exp - ): [pokemon_v2_movename!]! - - """An aggregate relationship""" - pokemon_v2_movenames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movename_bool_exp - ): pokemon_v2_movename_aggregate! - - """An object relationship""" - pokemon_v2_movetarget: pokemon_v2_movetarget - - """An array relationship""" - pokemon_v2_pokemonevolutions( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonevolution_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonevolution_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonevolution_bool_exp - ): [pokemon_v2_pokemonevolution!]! - - """An aggregate relationship""" - pokemon_v2_pokemonevolutions_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonevolution_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonevolution_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonevolution_bool_exp - ): pokemon_v2_pokemonevolution_aggregate! - - """An array relationship""" - pokemon_v2_pokemonmoves( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonmove_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonmove_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonmove_bool_exp - ): [pokemon_v2_pokemonmove!]! - - """An aggregate relationship""" - pokemon_v2_pokemonmoves_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonmove_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonmove_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonmove_bool_exp - ): pokemon_v2_pokemonmove_aggregate! - - """An array relationship""" - pokemon_v2_supercontestcombos( - """distinct select on columns""" - distinct_on: [pokemon_v2_supercontestcombo_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_supercontestcombo_order_by!] - - """filter the rows returned""" - where: pokemon_v2_supercontestcombo_bool_exp - ): [pokemon_v2_supercontestcombo!]! - - """An aggregate relationship""" - pokemon_v2_supercontestcombos_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_supercontestcombo_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_supercontestcombo_order_by!] - - """filter the rows returned""" - where: pokemon_v2_supercontestcombo_bool_exp - ): pokemon_v2_supercontestcombo_aggregate! - - """An object relationship""" - pokemon_v2_supercontesteffect: pokemon_v2_supercontesteffect - - """An object relationship""" - pokemon_v2_type: pokemon_v2_type - power: Int - pp: Int - priority: Int - super_contest_effect_id: Int - type_id: Int -} - -""" -aggregated selection of "pokemon_v2_move" -""" -type pokemon_v2_move_aggregate { - aggregate: pokemon_v2_move_aggregate_fields - nodes: [pokemon_v2_move!]! -} - -input pokemon_v2_move_aggregate_bool_exp { - count: pokemon_v2_move_aggregate_bool_exp_count -} - -input pokemon_v2_move_aggregate_bool_exp_count { - arguments: [pokemon_v2_move_select_column!] - distinct: Boolean - filter: pokemon_v2_move_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_move" -""" -type pokemon_v2_move_aggregate_fields { - avg: pokemon_v2_move_avg_fields - count(columns: [pokemon_v2_move_select_column!], distinct: Boolean): Int! - max: pokemon_v2_move_max_fields - min: pokemon_v2_move_min_fields - stddev: pokemon_v2_move_stddev_fields - stddev_pop: pokemon_v2_move_stddev_pop_fields - stddev_samp: pokemon_v2_move_stddev_samp_fields - sum: pokemon_v2_move_sum_fields - var_pop: pokemon_v2_move_var_pop_fields - var_samp: pokemon_v2_move_var_samp_fields - variance: pokemon_v2_move_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_move" -""" -input pokemon_v2_move_aggregate_order_by { - avg: pokemon_v2_move_avg_order_by - count: order_by - max: pokemon_v2_move_max_order_by - min: pokemon_v2_move_min_order_by - stddev: pokemon_v2_move_stddev_order_by - stddev_pop: pokemon_v2_move_stddev_pop_order_by - stddev_samp: pokemon_v2_move_stddev_samp_order_by - sum: pokemon_v2_move_sum_order_by - var_pop: pokemon_v2_move_var_pop_order_by - var_samp: pokemon_v2_move_var_samp_order_by - variance: pokemon_v2_move_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_move_avg_fields { - accuracy: Float - contest_effect_id: Float - contest_type_id: Float - generation_id: Float - id: Float - move_damage_class_id: Float - move_effect_chance: Float - move_effect_id: Float - move_target_id: Float - power: Float - pp: Float - priority: Float - super_contest_effect_id: Float - type_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_move" -""" -input pokemon_v2_move_avg_order_by { - accuracy: order_by - contest_effect_id: order_by - contest_type_id: order_by - generation_id: order_by - id: order_by - move_damage_class_id: order_by - move_effect_chance: order_by - move_effect_id: order_by - move_target_id: order_by - power: order_by - pp: order_by - priority: order_by - super_contest_effect_id: order_by - type_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_move". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_move_bool_exp { - _and: [pokemon_v2_move_bool_exp!] - _not: pokemon_v2_move_bool_exp - _or: [pokemon_v2_move_bool_exp!] - accuracy: Int_comparison_exp - contest_effect_id: Int_comparison_exp - contest_type_id: Int_comparison_exp - generation_id: Int_comparison_exp - id: Int_comparison_exp - move_damage_class_id: Int_comparison_exp - move_effect_chance: Int_comparison_exp - move_effect_id: Int_comparison_exp - move_target_id: Int_comparison_exp - name: String_comparison_exp - pokemonV2ContestcombosBySecondMoveId: pokemon_v2_contestcombo_bool_exp - pokemonV2ContestcombosBySecondMoveId_aggregate: pokemon_v2_contestcombo_aggregate_bool_exp - pokemonV2SupercontestcombosBySecondMoveId: pokemon_v2_supercontestcombo_bool_exp - pokemonV2SupercontestcombosBySecondMoveId_aggregate: pokemon_v2_supercontestcombo_aggregate_bool_exp - pokemon_v2_contestcombos: pokemon_v2_contestcombo_bool_exp - pokemon_v2_contestcombos_aggregate: pokemon_v2_contestcombo_aggregate_bool_exp - pokemon_v2_contesteffect: pokemon_v2_contesteffect_bool_exp - pokemon_v2_contesttype: pokemon_v2_contesttype_bool_exp - pokemon_v2_generation: pokemon_v2_generation_bool_exp - pokemon_v2_machines: pokemon_v2_machine_bool_exp - pokemon_v2_machines_aggregate: pokemon_v2_machine_aggregate_bool_exp - pokemon_v2_moveattributemaps: pokemon_v2_moveattributemap_bool_exp - pokemon_v2_moveattributemaps_aggregate: pokemon_v2_moveattributemap_aggregate_bool_exp - pokemon_v2_movechanges: pokemon_v2_movechange_bool_exp - pokemon_v2_movechanges_aggregate: pokemon_v2_movechange_aggregate_bool_exp - pokemon_v2_movedamageclass: pokemon_v2_movedamageclass_bool_exp - pokemon_v2_moveeffect: pokemon_v2_moveeffect_bool_exp - pokemon_v2_moveflavortexts: pokemon_v2_moveflavortext_bool_exp - pokemon_v2_moveflavortexts_aggregate: pokemon_v2_moveflavortext_aggregate_bool_exp - pokemon_v2_movemeta: pokemon_v2_movemeta_bool_exp - pokemon_v2_movemeta_aggregate: pokemon_v2_movemeta_aggregate_bool_exp - pokemon_v2_movemetastatchanges: pokemon_v2_movemetastatchange_bool_exp - pokemon_v2_movemetastatchanges_aggregate: pokemon_v2_movemetastatchange_aggregate_bool_exp - pokemon_v2_movemetum: pokemon_v2_movemeta_bool_exp - pokemon_v2_movenames: pokemon_v2_movename_bool_exp - pokemon_v2_movenames_aggregate: pokemon_v2_movename_aggregate_bool_exp - pokemon_v2_movetarget: pokemon_v2_movetarget_bool_exp - pokemon_v2_pokemonevolutions: pokemon_v2_pokemonevolution_bool_exp - pokemon_v2_pokemonevolutions_aggregate: pokemon_v2_pokemonevolution_aggregate_bool_exp - pokemon_v2_pokemonmoves: pokemon_v2_pokemonmove_bool_exp - pokemon_v2_pokemonmoves_aggregate: pokemon_v2_pokemonmove_aggregate_bool_exp - pokemon_v2_supercontestcombos: pokemon_v2_supercontestcombo_bool_exp - pokemon_v2_supercontestcombos_aggregate: pokemon_v2_supercontestcombo_aggregate_bool_exp - pokemon_v2_supercontesteffect: pokemon_v2_supercontesteffect_bool_exp - pokemon_v2_type: pokemon_v2_type_bool_exp - power: Int_comparison_exp - pp: Int_comparison_exp - priority: Int_comparison_exp - super_contest_effect_id: Int_comparison_exp - type_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_move_max_fields { - accuracy: Int - contest_effect_id: Int - contest_type_id: Int - generation_id: Int - id: Int - move_damage_class_id: Int - move_effect_chance: Int - move_effect_id: Int - move_target_id: Int - name: String - power: Int - pp: Int - priority: Int - super_contest_effect_id: Int - type_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_move" -""" -input pokemon_v2_move_max_order_by { - accuracy: order_by - contest_effect_id: order_by - contest_type_id: order_by - generation_id: order_by - id: order_by - move_damage_class_id: order_by - move_effect_chance: order_by - move_effect_id: order_by - move_target_id: order_by - name: order_by - power: order_by - pp: order_by - priority: order_by - super_contest_effect_id: order_by - type_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_move_min_fields { - accuracy: Int - contest_effect_id: Int - contest_type_id: Int - generation_id: Int - id: Int - move_damage_class_id: Int - move_effect_chance: Int - move_effect_id: Int - move_target_id: Int - name: String - power: Int - pp: Int - priority: Int - super_contest_effect_id: Int - type_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_move" -""" -input pokemon_v2_move_min_order_by { - accuracy: order_by - contest_effect_id: order_by - contest_type_id: order_by - generation_id: order_by - id: order_by - move_damage_class_id: order_by - move_effect_chance: order_by - move_effect_id: order_by - move_target_id: order_by - name: order_by - power: order_by - pp: order_by - priority: order_by - super_contest_effect_id: order_by - type_id: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_move".""" -input pokemon_v2_move_order_by { - accuracy: order_by - contest_effect_id: order_by - contest_type_id: order_by - generation_id: order_by - id: order_by - move_damage_class_id: order_by - move_effect_chance: order_by - move_effect_id: order_by - move_target_id: order_by - name: order_by - pokemonV2ContestcombosBySecondMoveId_aggregate: pokemon_v2_contestcombo_aggregate_order_by - pokemonV2SupercontestcombosBySecondMoveId_aggregate: pokemon_v2_supercontestcombo_aggregate_order_by - pokemon_v2_contestcombos_aggregate: pokemon_v2_contestcombo_aggregate_order_by - pokemon_v2_contesteffect: pokemon_v2_contesteffect_order_by - pokemon_v2_contesttype: pokemon_v2_contesttype_order_by - pokemon_v2_generation: pokemon_v2_generation_order_by - pokemon_v2_machines_aggregate: pokemon_v2_machine_aggregate_order_by - pokemon_v2_moveattributemaps_aggregate: pokemon_v2_moveattributemap_aggregate_order_by - pokemon_v2_movechanges_aggregate: pokemon_v2_movechange_aggregate_order_by - pokemon_v2_movedamageclass: pokemon_v2_movedamageclass_order_by - pokemon_v2_moveeffect: pokemon_v2_moveeffect_order_by - pokemon_v2_moveflavortexts_aggregate: pokemon_v2_moveflavortext_aggregate_order_by - pokemon_v2_movemeta_aggregate: pokemon_v2_movemeta_aggregate_order_by - pokemon_v2_movemetastatchanges_aggregate: pokemon_v2_movemetastatchange_aggregate_order_by - pokemon_v2_movemetum: pokemon_v2_movemeta_order_by - pokemon_v2_movenames_aggregate: pokemon_v2_movename_aggregate_order_by - pokemon_v2_movetarget: pokemon_v2_movetarget_order_by - pokemon_v2_pokemonevolutions_aggregate: pokemon_v2_pokemonevolution_aggregate_order_by - pokemon_v2_pokemonmoves_aggregate: pokemon_v2_pokemonmove_aggregate_order_by - pokemon_v2_supercontestcombos_aggregate: pokemon_v2_supercontestcombo_aggregate_order_by - pokemon_v2_supercontesteffect: pokemon_v2_supercontesteffect_order_by - pokemon_v2_type: pokemon_v2_type_order_by - power: order_by - pp: order_by - priority: order_by - super_contest_effect_id: order_by - type_id: order_by -} - -""" -select columns of table "pokemon_v2_move" -""" -enum pokemon_v2_move_select_column { - """column name""" - accuracy - - """column name""" - contest_effect_id - - """column name""" - contest_type_id - - """column name""" - generation_id - - """column name""" - id - - """column name""" - move_damage_class_id - - """column name""" - move_effect_chance - - """column name""" - move_effect_id - - """column name""" - move_target_id - - """column name""" - name - - """column name""" - power - - """column name""" - pp - - """column name""" - priority - - """column name""" - super_contest_effect_id - - """column name""" - type_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_move_stddev_fields { - accuracy: Float - contest_effect_id: Float - contest_type_id: Float - generation_id: Float - id: Float - move_damage_class_id: Float - move_effect_chance: Float - move_effect_id: Float - move_target_id: Float - power: Float - pp: Float - priority: Float - super_contest_effect_id: Float - type_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_move" -""" -input pokemon_v2_move_stddev_order_by { - accuracy: order_by - contest_effect_id: order_by - contest_type_id: order_by - generation_id: order_by - id: order_by - move_damage_class_id: order_by - move_effect_chance: order_by - move_effect_id: order_by - move_target_id: order_by - power: order_by - pp: order_by - priority: order_by - super_contest_effect_id: order_by - type_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_move_stddev_pop_fields { - accuracy: Float - contest_effect_id: Float - contest_type_id: Float - generation_id: Float - id: Float - move_damage_class_id: Float - move_effect_chance: Float - move_effect_id: Float - move_target_id: Float - power: Float - pp: Float - priority: Float - super_contest_effect_id: Float - type_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_move" -""" -input pokemon_v2_move_stddev_pop_order_by { - accuracy: order_by - contest_effect_id: order_by - contest_type_id: order_by - generation_id: order_by - id: order_by - move_damage_class_id: order_by - move_effect_chance: order_by - move_effect_id: order_by - move_target_id: order_by - power: order_by - pp: order_by - priority: order_by - super_contest_effect_id: order_by - type_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_move_stddev_samp_fields { - accuracy: Float - contest_effect_id: Float - contest_type_id: Float - generation_id: Float - id: Float - move_damage_class_id: Float - move_effect_chance: Float - move_effect_id: Float - move_target_id: Float - power: Float - pp: Float - priority: Float - super_contest_effect_id: Float - type_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_move" -""" -input pokemon_v2_move_stddev_samp_order_by { - accuracy: order_by - contest_effect_id: order_by - contest_type_id: order_by - generation_id: order_by - id: order_by - move_damage_class_id: order_by - move_effect_chance: order_by - move_effect_id: order_by - move_target_id: order_by - power: order_by - pp: order_by - priority: order_by - super_contest_effect_id: order_by - type_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_move" -""" -input pokemon_v2_move_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_move_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_move_stream_cursor_value_input { - accuracy: Int - contest_effect_id: Int - contest_type_id: Int - generation_id: Int - id: Int - move_damage_class_id: Int - move_effect_chance: Int - move_effect_id: Int - move_target_id: Int - name: String - power: Int - pp: Int - priority: Int - super_contest_effect_id: Int - type_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_move_sum_fields { - accuracy: Int - contest_effect_id: Int - contest_type_id: Int - generation_id: Int - id: Int - move_damage_class_id: Int - move_effect_chance: Int - move_effect_id: Int - move_target_id: Int - power: Int - pp: Int - priority: Int - super_contest_effect_id: Int - type_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_move" -""" -input pokemon_v2_move_sum_order_by { - accuracy: order_by - contest_effect_id: order_by - contest_type_id: order_by - generation_id: order_by - id: order_by - move_damage_class_id: order_by - move_effect_chance: order_by - move_effect_id: order_by - move_target_id: order_by - power: order_by - pp: order_by - priority: order_by - super_contest_effect_id: order_by - type_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_move_var_pop_fields { - accuracy: Float - contest_effect_id: Float - contest_type_id: Float - generation_id: Float - id: Float - move_damage_class_id: Float - move_effect_chance: Float - move_effect_id: Float - move_target_id: Float - power: Float - pp: Float - priority: Float - super_contest_effect_id: Float - type_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_move" -""" -input pokemon_v2_move_var_pop_order_by { - accuracy: order_by - contest_effect_id: order_by - contest_type_id: order_by - generation_id: order_by - id: order_by - move_damage_class_id: order_by - move_effect_chance: order_by - move_effect_id: order_by - move_target_id: order_by - power: order_by - pp: order_by - priority: order_by - super_contest_effect_id: order_by - type_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_move_var_samp_fields { - accuracy: Float - contest_effect_id: Float - contest_type_id: Float - generation_id: Float - id: Float - move_damage_class_id: Float - move_effect_chance: Float - move_effect_id: Float - move_target_id: Float - power: Float - pp: Float - priority: Float - super_contest_effect_id: Float - type_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_move" -""" -input pokemon_v2_move_var_samp_order_by { - accuracy: order_by - contest_effect_id: order_by - contest_type_id: order_by - generation_id: order_by - id: order_by - move_damage_class_id: order_by - move_effect_chance: order_by - move_effect_id: order_by - move_target_id: order_by - power: order_by - pp: order_by - priority: order_by - super_contest_effect_id: order_by - type_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_move_variance_fields { - accuracy: Float - contest_effect_id: Float - contest_type_id: Float - generation_id: Float - id: Float - move_damage_class_id: Float - move_effect_chance: Float - move_effect_id: Float - move_target_id: Float - power: Float - pp: Float - priority: Float - super_contest_effect_id: Float - type_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_move" -""" -input pokemon_v2_move_variance_order_by { - accuracy: order_by - contest_effect_id: order_by - contest_type_id: order_by - generation_id: order_by - id: order_by - move_damage_class_id: order_by - move_effect_chance: order_by - move_effect_id: order_by - move_target_id: order_by - power: order_by - pp: order_by - priority: order_by - super_contest_effect_id: order_by - type_id: order_by -} - -""" -columns and relationships of "pokemon_v2_moveattribute" -""" -type pokemon_v2_moveattribute { - id: Int! - name: String! - - """An array relationship""" - pokemon_v2_moveattributedescriptions( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveattributedescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveattributedescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveattributedescription_bool_exp - ): [pokemon_v2_moveattributedescription!]! - - """An aggregate relationship""" - pokemon_v2_moveattributedescriptions_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveattributedescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveattributedescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveattributedescription_bool_exp - ): pokemon_v2_moveattributedescription_aggregate! - - """An array relationship""" - pokemon_v2_moveattributemaps( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveattributemap_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveattributemap_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveattributemap_bool_exp - ): [pokemon_v2_moveattributemap!]! - - """An aggregate relationship""" - pokemon_v2_moveattributemaps_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveattributemap_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveattributemap_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveattributemap_bool_exp - ): pokemon_v2_moveattributemap_aggregate! - - """An array relationship""" - pokemon_v2_moveattributenames( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveattributename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveattributename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveattributename_bool_exp - ): [pokemon_v2_moveattributename!]! - - """An aggregate relationship""" - pokemon_v2_moveattributenames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveattributename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveattributename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveattributename_bool_exp - ): pokemon_v2_moveattributename_aggregate! -} - -""" -aggregated selection of "pokemon_v2_moveattribute" -""" -type pokemon_v2_moveattribute_aggregate { - aggregate: pokemon_v2_moveattribute_aggregate_fields - nodes: [pokemon_v2_moveattribute!]! -} - -""" -aggregate fields of "pokemon_v2_moveattribute" -""" -type pokemon_v2_moveattribute_aggregate_fields { - avg: pokemon_v2_moveattribute_avg_fields - count(columns: [pokemon_v2_moveattribute_select_column!], distinct: Boolean): Int! - max: pokemon_v2_moveattribute_max_fields - min: pokemon_v2_moveattribute_min_fields - stddev: pokemon_v2_moveattribute_stddev_fields - stddev_pop: pokemon_v2_moveattribute_stddev_pop_fields - stddev_samp: pokemon_v2_moveattribute_stddev_samp_fields - sum: pokemon_v2_moveattribute_sum_fields - var_pop: pokemon_v2_moveattribute_var_pop_fields - var_samp: pokemon_v2_moveattribute_var_samp_fields - variance: pokemon_v2_moveattribute_variance_fields -} - -"""aggregate avg on columns""" -type pokemon_v2_moveattribute_avg_fields { - id: Float -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_moveattribute". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_moveattribute_bool_exp { - _and: [pokemon_v2_moveattribute_bool_exp!] - _not: pokemon_v2_moveattribute_bool_exp - _or: [pokemon_v2_moveattribute_bool_exp!] - id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_moveattributedescriptions: pokemon_v2_moveattributedescription_bool_exp - pokemon_v2_moveattributedescriptions_aggregate: pokemon_v2_moveattributedescription_aggregate_bool_exp - pokemon_v2_moveattributemaps: pokemon_v2_moveattributemap_bool_exp - pokemon_v2_moveattributemaps_aggregate: pokemon_v2_moveattributemap_aggregate_bool_exp - pokemon_v2_moveattributenames: pokemon_v2_moveattributename_bool_exp - pokemon_v2_moveattributenames_aggregate: pokemon_v2_moveattributename_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_moveattribute_max_fields { - id: Int - name: String -} - -"""aggregate min on columns""" -type pokemon_v2_moveattribute_min_fields { - id: Int - name: String -} - -"""Ordering options when selecting data from "pokemon_v2_moveattribute".""" -input pokemon_v2_moveattribute_order_by { - id: order_by - name: order_by - pokemon_v2_moveattributedescriptions_aggregate: pokemon_v2_moveattributedescription_aggregate_order_by - pokemon_v2_moveattributemaps_aggregate: pokemon_v2_moveattributemap_aggregate_order_by - pokemon_v2_moveattributenames_aggregate: pokemon_v2_moveattributename_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_moveattribute" -""" -enum pokemon_v2_moveattribute_select_column { - """column name""" - id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_moveattribute_stddev_fields { - id: Float -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_moveattribute_stddev_pop_fields { - id: Float -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_moveattribute_stddev_samp_fields { - id: Float -} - -""" -Streaming cursor of the table "pokemon_v2_moveattribute" -""" -input pokemon_v2_moveattribute_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_moveattribute_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_moveattribute_stream_cursor_value_input { - id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_moveattribute_sum_fields { - id: Int -} - -"""aggregate var_pop on columns""" -type pokemon_v2_moveattribute_var_pop_fields { - id: Float -} - -"""aggregate var_samp on columns""" -type pokemon_v2_moveattribute_var_samp_fields { - id: Float -} - -"""aggregate variance on columns""" -type pokemon_v2_moveattribute_variance_fields { - id: Float -} - -""" -columns and relationships of "pokemon_v2_moveattributedescription" -""" -type pokemon_v2_moveattributedescription { - description: String! - id: Int! - language_id: Int - move_attribute_id: Int - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_moveattribute: pokemon_v2_moveattribute -} - -""" -aggregated selection of "pokemon_v2_moveattributedescription" -""" -type pokemon_v2_moveattributedescription_aggregate { - aggregate: pokemon_v2_moveattributedescription_aggregate_fields - nodes: [pokemon_v2_moveattributedescription!]! -} - -input pokemon_v2_moveattributedescription_aggregate_bool_exp { - count: pokemon_v2_moveattributedescription_aggregate_bool_exp_count -} - -input pokemon_v2_moveattributedescription_aggregate_bool_exp_count { - arguments: [pokemon_v2_moveattributedescription_select_column!] - distinct: Boolean - filter: pokemon_v2_moveattributedescription_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_moveattributedescription" -""" -type pokemon_v2_moveattributedescription_aggregate_fields { - avg: pokemon_v2_moveattributedescription_avg_fields - count(columns: [pokemon_v2_moveattributedescription_select_column!], distinct: Boolean): Int! - max: pokemon_v2_moveattributedescription_max_fields - min: pokemon_v2_moveattributedescription_min_fields - stddev: pokemon_v2_moveattributedescription_stddev_fields - stddev_pop: pokemon_v2_moveattributedescription_stddev_pop_fields - stddev_samp: pokemon_v2_moveattributedescription_stddev_samp_fields - sum: pokemon_v2_moveattributedescription_sum_fields - var_pop: pokemon_v2_moveattributedescription_var_pop_fields - var_samp: pokemon_v2_moveattributedescription_var_samp_fields - variance: pokemon_v2_moveattributedescription_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_moveattributedescription" -""" -input pokemon_v2_moveattributedescription_aggregate_order_by { - avg: pokemon_v2_moveattributedescription_avg_order_by - count: order_by - max: pokemon_v2_moveattributedescription_max_order_by - min: pokemon_v2_moveattributedescription_min_order_by - stddev: pokemon_v2_moveattributedescription_stddev_order_by - stddev_pop: pokemon_v2_moveattributedescription_stddev_pop_order_by - stddev_samp: pokemon_v2_moveattributedescription_stddev_samp_order_by - sum: pokemon_v2_moveattributedescription_sum_order_by - var_pop: pokemon_v2_moveattributedescription_var_pop_order_by - var_samp: pokemon_v2_moveattributedescription_var_samp_order_by - variance: pokemon_v2_moveattributedescription_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_moveattributedescription_avg_fields { - id: Float - language_id: Float - move_attribute_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_moveattributedescription" -""" -input pokemon_v2_moveattributedescription_avg_order_by { - id: order_by - language_id: order_by - move_attribute_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_moveattributedescription". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_moveattributedescription_bool_exp { - _and: [pokemon_v2_moveattributedescription_bool_exp!] - _not: pokemon_v2_moveattributedescription_bool_exp - _or: [pokemon_v2_moveattributedescription_bool_exp!] - description: String_comparison_exp - id: Int_comparison_exp - language_id: Int_comparison_exp - move_attribute_id: Int_comparison_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_moveattribute: pokemon_v2_moveattribute_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_moveattributedescription_max_fields { - description: String - id: Int - language_id: Int - move_attribute_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_moveattributedescription" -""" -input pokemon_v2_moveattributedescription_max_order_by { - description: order_by - id: order_by - language_id: order_by - move_attribute_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_moveattributedescription_min_fields { - description: String - id: Int - language_id: Int - move_attribute_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_moveattributedescription" -""" -input pokemon_v2_moveattributedescription_min_order_by { - description: order_by - id: order_by - language_id: order_by - move_attribute_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_moveattributedescription". -""" -input pokemon_v2_moveattributedescription_order_by { - description: order_by - id: order_by - language_id: order_by - move_attribute_id: order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_moveattribute: pokemon_v2_moveattribute_order_by -} - -""" -select columns of table "pokemon_v2_moveattributedescription" -""" -enum pokemon_v2_moveattributedescription_select_column { - """column name""" - description - - """column name""" - id - - """column name""" - language_id - - """column name""" - move_attribute_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_moveattributedescription_stddev_fields { - id: Float - language_id: Float - move_attribute_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_moveattributedescription" -""" -input pokemon_v2_moveattributedescription_stddev_order_by { - id: order_by - language_id: order_by - move_attribute_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_moveattributedescription_stddev_pop_fields { - id: Float - language_id: Float - move_attribute_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_moveattributedescription" -""" -input pokemon_v2_moveattributedescription_stddev_pop_order_by { - id: order_by - language_id: order_by - move_attribute_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_moveattributedescription_stddev_samp_fields { - id: Float - language_id: Float - move_attribute_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_moveattributedescription" -""" -input pokemon_v2_moveattributedescription_stddev_samp_order_by { - id: order_by - language_id: order_by - move_attribute_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_moveattributedescription" -""" -input pokemon_v2_moveattributedescription_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_moveattributedescription_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_moveattributedescription_stream_cursor_value_input { - description: String - id: Int - language_id: Int - move_attribute_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_moveattributedescription_sum_fields { - id: Int - language_id: Int - move_attribute_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_moveattributedescription" -""" -input pokemon_v2_moveattributedescription_sum_order_by { - id: order_by - language_id: order_by - move_attribute_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_moveattributedescription_var_pop_fields { - id: Float - language_id: Float - move_attribute_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_moveattributedescription" -""" -input pokemon_v2_moveattributedescription_var_pop_order_by { - id: order_by - language_id: order_by - move_attribute_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_moveattributedescription_var_samp_fields { - id: Float - language_id: Float - move_attribute_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_moveattributedescription" -""" -input pokemon_v2_moveattributedescription_var_samp_order_by { - id: order_by - language_id: order_by - move_attribute_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_moveattributedescription_variance_fields { - id: Float - language_id: Float - move_attribute_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_moveattributedescription" -""" -input pokemon_v2_moveattributedescription_variance_order_by { - id: order_by - language_id: order_by - move_attribute_id: order_by -} - -""" -columns and relationships of "pokemon_v2_moveattributemap" -""" -type pokemon_v2_moveattributemap { - id: Int! - move_attribute_id: Int - move_id: Int - - """An object relationship""" - pokemon_v2_move: pokemon_v2_move - - """An object relationship""" - pokemon_v2_moveattribute: pokemon_v2_moveattribute -} - -""" -aggregated selection of "pokemon_v2_moveattributemap" -""" -type pokemon_v2_moveattributemap_aggregate { - aggregate: pokemon_v2_moveattributemap_aggregate_fields - nodes: [pokemon_v2_moveattributemap!]! -} - -input pokemon_v2_moveattributemap_aggregate_bool_exp { - count: pokemon_v2_moveattributemap_aggregate_bool_exp_count -} - -input pokemon_v2_moveattributemap_aggregate_bool_exp_count { - arguments: [pokemon_v2_moveattributemap_select_column!] - distinct: Boolean - filter: pokemon_v2_moveattributemap_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_moveattributemap" -""" -type pokemon_v2_moveattributemap_aggregate_fields { - avg: pokemon_v2_moveattributemap_avg_fields - count(columns: [pokemon_v2_moveattributemap_select_column!], distinct: Boolean): Int! - max: pokemon_v2_moveattributemap_max_fields - min: pokemon_v2_moveattributemap_min_fields - stddev: pokemon_v2_moveattributemap_stddev_fields - stddev_pop: pokemon_v2_moveattributemap_stddev_pop_fields - stddev_samp: pokemon_v2_moveattributemap_stddev_samp_fields - sum: pokemon_v2_moveattributemap_sum_fields - var_pop: pokemon_v2_moveattributemap_var_pop_fields - var_samp: pokemon_v2_moveattributemap_var_samp_fields - variance: pokemon_v2_moveattributemap_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_moveattributemap" -""" -input pokemon_v2_moveattributemap_aggregate_order_by { - avg: pokemon_v2_moveattributemap_avg_order_by - count: order_by - max: pokemon_v2_moveattributemap_max_order_by - min: pokemon_v2_moveattributemap_min_order_by - stddev: pokemon_v2_moveattributemap_stddev_order_by - stddev_pop: pokemon_v2_moveattributemap_stddev_pop_order_by - stddev_samp: pokemon_v2_moveattributemap_stddev_samp_order_by - sum: pokemon_v2_moveattributemap_sum_order_by - var_pop: pokemon_v2_moveattributemap_var_pop_order_by - var_samp: pokemon_v2_moveattributemap_var_samp_order_by - variance: pokemon_v2_moveattributemap_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_moveattributemap_avg_fields { - id: Float - move_attribute_id: Float - move_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_moveattributemap" -""" -input pokemon_v2_moveattributemap_avg_order_by { - id: order_by - move_attribute_id: order_by - move_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_moveattributemap". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_moveattributemap_bool_exp { - _and: [pokemon_v2_moveattributemap_bool_exp!] - _not: pokemon_v2_moveattributemap_bool_exp - _or: [pokemon_v2_moveattributemap_bool_exp!] - id: Int_comparison_exp - move_attribute_id: Int_comparison_exp - move_id: Int_comparison_exp - pokemon_v2_move: pokemon_v2_move_bool_exp - pokemon_v2_moveattribute: pokemon_v2_moveattribute_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_moveattributemap_max_fields { - id: Int - move_attribute_id: Int - move_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_moveattributemap" -""" -input pokemon_v2_moveattributemap_max_order_by { - id: order_by - move_attribute_id: order_by - move_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_moveattributemap_min_fields { - id: Int - move_attribute_id: Int - move_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_moveattributemap" -""" -input pokemon_v2_moveattributemap_min_order_by { - id: order_by - move_attribute_id: order_by - move_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_moveattributemap". -""" -input pokemon_v2_moveattributemap_order_by { - id: order_by - move_attribute_id: order_by - move_id: order_by - pokemon_v2_move: pokemon_v2_move_order_by - pokemon_v2_moveattribute: pokemon_v2_moveattribute_order_by -} - -""" -select columns of table "pokemon_v2_moveattributemap" -""" -enum pokemon_v2_moveattributemap_select_column { - """column name""" - id - - """column name""" - move_attribute_id - - """column name""" - move_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_moveattributemap_stddev_fields { - id: Float - move_attribute_id: Float - move_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_moveattributemap" -""" -input pokemon_v2_moveattributemap_stddev_order_by { - id: order_by - move_attribute_id: order_by - move_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_moveattributemap_stddev_pop_fields { - id: Float - move_attribute_id: Float - move_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_moveattributemap" -""" -input pokemon_v2_moveattributemap_stddev_pop_order_by { - id: order_by - move_attribute_id: order_by - move_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_moveattributemap_stddev_samp_fields { - id: Float - move_attribute_id: Float - move_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_moveattributemap" -""" -input pokemon_v2_moveattributemap_stddev_samp_order_by { - id: order_by - move_attribute_id: order_by - move_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_moveattributemap" -""" -input pokemon_v2_moveattributemap_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_moveattributemap_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_moveattributemap_stream_cursor_value_input { - id: Int - move_attribute_id: Int - move_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_moveattributemap_sum_fields { - id: Int - move_attribute_id: Int - move_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_moveattributemap" -""" -input pokemon_v2_moveattributemap_sum_order_by { - id: order_by - move_attribute_id: order_by - move_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_moveattributemap_var_pop_fields { - id: Float - move_attribute_id: Float - move_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_moveattributemap" -""" -input pokemon_v2_moveattributemap_var_pop_order_by { - id: order_by - move_attribute_id: order_by - move_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_moveattributemap_var_samp_fields { - id: Float - move_attribute_id: Float - move_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_moveattributemap" -""" -input pokemon_v2_moveattributemap_var_samp_order_by { - id: order_by - move_attribute_id: order_by - move_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_moveattributemap_variance_fields { - id: Float - move_attribute_id: Float - move_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_moveattributemap" -""" -input pokemon_v2_moveattributemap_variance_order_by { - id: order_by - move_attribute_id: order_by - move_id: order_by -} - -""" -columns and relationships of "pokemon_v2_moveattributename" -""" -type pokemon_v2_moveattributename { - id: Int! - language_id: Int - move_attribute_id: Int - name: String! - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_moveattribute: pokemon_v2_moveattribute -} - -""" -aggregated selection of "pokemon_v2_moveattributename" -""" -type pokemon_v2_moveattributename_aggregate { - aggregate: pokemon_v2_moveattributename_aggregate_fields - nodes: [pokemon_v2_moveattributename!]! -} - -input pokemon_v2_moveattributename_aggregate_bool_exp { - count: pokemon_v2_moveattributename_aggregate_bool_exp_count -} - -input pokemon_v2_moveattributename_aggregate_bool_exp_count { - arguments: [pokemon_v2_moveattributename_select_column!] - distinct: Boolean - filter: pokemon_v2_moveattributename_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_moveattributename" -""" -type pokemon_v2_moveattributename_aggregate_fields { - avg: pokemon_v2_moveattributename_avg_fields - count(columns: [pokemon_v2_moveattributename_select_column!], distinct: Boolean): Int! - max: pokemon_v2_moveattributename_max_fields - min: pokemon_v2_moveattributename_min_fields - stddev: pokemon_v2_moveattributename_stddev_fields - stddev_pop: pokemon_v2_moveattributename_stddev_pop_fields - stddev_samp: pokemon_v2_moveattributename_stddev_samp_fields - sum: pokemon_v2_moveattributename_sum_fields - var_pop: pokemon_v2_moveattributename_var_pop_fields - var_samp: pokemon_v2_moveattributename_var_samp_fields - variance: pokemon_v2_moveattributename_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_moveattributename" -""" -input pokemon_v2_moveattributename_aggregate_order_by { - avg: pokemon_v2_moveattributename_avg_order_by - count: order_by - max: pokemon_v2_moveattributename_max_order_by - min: pokemon_v2_moveattributename_min_order_by - stddev: pokemon_v2_moveattributename_stddev_order_by - stddev_pop: pokemon_v2_moveattributename_stddev_pop_order_by - stddev_samp: pokemon_v2_moveattributename_stddev_samp_order_by - sum: pokemon_v2_moveattributename_sum_order_by - var_pop: pokemon_v2_moveattributename_var_pop_order_by - var_samp: pokemon_v2_moveattributename_var_samp_order_by - variance: pokemon_v2_moveattributename_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_moveattributename_avg_fields { - id: Float - language_id: Float - move_attribute_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_moveattributename" -""" -input pokemon_v2_moveattributename_avg_order_by { - id: order_by - language_id: order_by - move_attribute_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_moveattributename". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_moveattributename_bool_exp { - _and: [pokemon_v2_moveattributename_bool_exp!] - _not: pokemon_v2_moveattributename_bool_exp - _or: [pokemon_v2_moveattributename_bool_exp!] - id: Int_comparison_exp - language_id: Int_comparison_exp - move_attribute_id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_moveattribute: pokemon_v2_moveattribute_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_moveattributename_max_fields { - id: Int - language_id: Int - move_attribute_id: Int - name: String -} - -""" -order by max() on columns of table "pokemon_v2_moveattributename" -""" -input pokemon_v2_moveattributename_max_order_by { - id: order_by - language_id: order_by - move_attribute_id: order_by - name: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_moveattributename_min_fields { - id: Int - language_id: Int - move_attribute_id: Int - name: String -} - -""" -order by min() on columns of table "pokemon_v2_moveattributename" -""" -input pokemon_v2_moveattributename_min_order_by { - id: order_by - language_id: order_by - move_attribute_id: order_by - name: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_moveattributename". -""" -input pokemon_v2_moveattributename_order_by { - id: order_by - language_id: order_by - move_attribute_id: order_by - name: order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_moveattribute: pokemon_v2_moveattribute_order_by -} - -""" -select columns of table "pokemon_v2_moveattributename" -""" -enum pokemon_v2_moveattributename_select_column { - """column name""" - id - - """column name""" - language_id - - """column name""" - move_attribute_id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_moveattributename_stddev_fields { - id: Float - language_id: Float - move_attribute_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_moveattributename" -""" -input pokemon_v2_moveattributename_stddev_order_by { - id: order_by - language_id: order_by - move_attribute_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_moveattributename_stddev_pop_fields { - id: Float - language_id: Float - move_attribute_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_moveattributename" -""" -input pokemon_v2_moveattributename_stddev_pop_order_by { - id: order_by - language_id: order_by - move_attribute_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_moveattributename_stddev_samp_fields { - id: Float - language_id: Float - move_attribute_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_moveattributename" -""" -input pokemon_v2_moveattributename_stddev_samp_order_by { - id: order_by - language_id: order_by - move_attribute_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_moveattributename" -""" -input pokemon_v2_moveattributename_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_moveattributename_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_moveattributename_stream_cursor_value_input { - id: Int - language_id: Int - move_attribute_id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_moveattributename_sum_fields { - id: Int - language_id: Int - move_attribute_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_moveattributename" -""" -input pokemon_v2_moveattributename_sum_order_by { - id: order_by - language_id: order_by - move_attribute_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_moveattributename_var_pop_fields { - id: Float - language_id: Float - move_attribute_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_moveattributename" -""" -input pokemon_v2_moveattributename_var_pop_order_by { - id: order_by - language_id: order_by - move_attribute_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_moveattributename_var_samp_fields { - id: Float - language_id: Float - move_attribute_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_moveattributename" -""" -input pokemon_v2_moveattributename_var_samp_order_by { - id: order_by - language_id: order_by - move_attribute_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_moveattributename_variance_fields { - id: Float - language_id: Float - move_attribute_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_moveattributename" -""" -input pokemon_v2_moveattributename_variance_order_by { - id: order_by - language_id: order_by - move_attribute_id: order_by -} - -""" -columns and relationships of "pokemon_v2_movebattlestyle" -""" -type pokemon_v2_movebattlestyle { - id: Int! - name: String! - - """An array relationship""" - pokemon_v2_movebattlestylenames( - """distinct select on columns""" - distinct_on: [pokemon_v2_movebattlestylename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movebattlestylename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movebattlestylename_bool_exp - ): [pokemon_v2_movebattlestylename!]! - - """An aggregate relationship""" - pokemon_v2_movebattlestylenames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movebattlestylename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movebattlestylename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movebattlestylename_bool_exp - ): pokemon_v2_movebattlestylename_aggregate! - - """An array relationship""" - pokemon_v2_naturebattlestylepreferences( - """distinct select on columns""" - distinct_on: [pokemon_v2_naturebattlestylepreference_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_naturebattlestylepreference_order_by!] - - """filter the rows returned""" - where: pokemon_v2_naturebattlestylepreference_bool_exp - ): [pokemon_v2_naturebattlestylepreference!]! - - """An aggregate relationship""" - pokemon_v2_naturebattlestylepreferences_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_naturebattlestylepreference_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_naturebattlestylepreference_order_by!] - - """filter the rows returned""" - where: pokemon_v2_naturebattlestylepreference_bool_exp - ): pokemon_v2_naturebattlestylepreference_aggregate! -} - -""" -aggregated selection of "pokemon_v2_movebattlestyle" -""" -type pokemon_v2_movebattlestyle_aggregate { - aggregate: pokemon_v2_movebattlestyle_aggregate_fields - nodes: [pokemon_v2_movebattlestyle!]! -} - -""" -aggregate fields of "pokemon_v2_movebattlestyle" -""" -type pokemon_v2_movebattlestyle_aggregate_fields { - avg: pokemon_v2_movebattlestyle_avg_fields - count(columns: [pokemon_v2_movebattlestyle_select_column!], distinct: Boolean): Int! - max: pokemon_v2_movebattlestyle_max_fields - min: pokemon_v2_movebattlestyle_min_fields - stddev: pokemon_v2_movebattlestyle_stddev_fields - stddev_pop: pokemon_v2_movebattlestyle_stddev_pop_fields - stddev_samp: pokemon_v2_movebattlestyle_stddev_samp_fields - sum: pokemon_v2_movebattlestyle_sum_fields - var_pop: pokemon_v2_movebattlestyle_var_pop_fields - var_samp: pokemon_v2_movebattlestyle_var_samp_fields - variance: pokemon_v2_movebattlestyle_variance_fields -} - -"""aggregate avg on columns""" -type pokemon_v2_movebattlestyle_avg_fields { - id: Float -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_movebattlestyle". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_movebattlestyle_bool_exp { - _and: [pokemon_v2_movebattlestyle_bool_exp!] - _not: pokemon_v2_movebattlestyle_bool_exp - _or: [pokemon_v2_movebattlestyle_bool_exp!] - id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_movebattlestylenames: pokemon_v2_movebattlestylename_bool_exp - pokemon_v2_movebattlestylenames_aggregate: pokemon_v2_movebattlestylename_aggregate_bool_exp - pokemon_v2_naturebattlestylepreferences: pokemon_v2_naturebattlestylepreference_bool_exp - pokemon_v2_naturebattlestylepreferences_aggregate: pokemon_v2_naturebattlestylepreference_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_movebattlestyle_max_fields { - id: Int - name: String -} - -"""aggregate min on columns""" -type pokemon_v2_movebattlestyle_min_fields { - id: Int - name: String -} - -""" -Ordering options when selecting data from "pokemon_v2_movebattlestyle". -""" -input pokemon_v2_movebattlestyle_order_by { - id: order_by - name: order_by - pokemon_v2_movebattlestylenames_aggregate: pokemon_v2_movebattlestylename_aggregate_order_by - pokemon_v2_naturebattlestylepreferences_aggregate: pokemon_v2_naturebattlestylepreference_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_movebattlestyle" -""" -enum pokemon_v2_movebattlestyle_select_column { - """column name""" - id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_movebattlestyle_stddev_fields { - id: Float -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_movebattlestyle_stddev_pop_fields { - id: Float -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_movebattlestyle_stddev_samp_fields { - id: Float -} - -""" -Streaming cursor of the table "pokemon_v2_movebattlestyle" -""" -input pokemon_v2_movebattlestyle_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_movebattlestyle_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_movebattlestyle_stream_cursor_value_input { - id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_movebattlestyle_sum_fields { - id: Int -} - -"""aggregate var_pop on columns""" -type pokemon_v2_movebattlestyle_var_pop_fields { - id: Float -} - -"""aggregate var_samp on columns""" -type pokemon_v2_movebattlestyle_var_samp_fields { - id: Float -} - -"""aggregate variance on columns""" -type pokemon_v2_movebattlestyle_variance_fields { - id: Float -} - -""" -columns and relationships of "pokemon_v2_movebattlestylename" -""" -type pokemon_v2_movebattlestylename { - id: Int! - language_id: Int - move_battle_style_id: Int - name: String! - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_movebattlestyle: pokemon_v2_movebattlestyle -} - -""" -aggregated selection of "pokemon_v2_movebattlestylename" -""" -type pokemon_v2_movebattlestylename_aggregate { - aggregate: pokemon_v2_movebattlestylename_aggregate_fields - nodes: [pokemon_v2_movebattlestylename!]! -} - -input pokemon_v2_movebattlestylename_aggregate_bool_exp { - count: pokemon_v2_movebattlestylename_aggregate_bool_exp_count -} - -input pokemon_v2_movebattlestylename_aggregate_bool_exp_count { - arguments: [pokemon_v2_movebattlestylename_select_column!] - distinct: Boolean - filter: pokemon_v2_movebattlestylename_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_movebattlestylename" -""" -type pokemon_v2_movebattlestylename_aggregate_fields { - avg: pokemon_v2_movebattlestylename_avg_fields - count(columns: [pokemon_v2_movebattlestylename_select_column!], distinct: Boolean): Int! - max: pokemon_v2_movebattlestylename_max_fields - min: pokemon_v2_movebattlestylename_min_fields - stddev: pokemon_v2_movebattlestylename_stddev_fields - stddev_pop: pokemon_v2_movebattlestylename_stddev_pop_fields - stddev_samp: pokemon_v2_movebattlestylename_stddev_samp_fields - sum: pokemon_v2_movebattlestylename_sum_fields - var_pop: pokemon_v2_movebattlestylename_var_pop_fields - var_samp: pokemon_v2_movebattlestylename_var_samp_fields - variance: pokemon_v2_movebattlestylename_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_movebattlestylename" -""" -input pokemon_v2_movebattlestylename_aggregate_order_by { - avg: pokemon_v2_movebattlestylename_avg_order_by - count: order_by - max: pokemon_v2_movebattlestylename_max_order_by - min: pokemon_v2_movebattlestylename_min_order_by - stddev: pokemon_v2_movebattlestylename_stddev_order_by - stddev_pop: pokemon_v2_movebattlestylename_stddev_pop_order_by - stddev_samp: pokemon_v2_movebattlestylename_stddev_samp_order_by - sum: pokemon_v2_movebattlestylename_sum_order_by - var_pop: pokemon_v2_movebattlestylename_var_pop_order_by - var_samp: pokemon_v2_movebattlestylename_var_samp_order_by - variance: pokemon_v2_movebattlestylename_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_movebattlestylename_avg_fields { - id: Float - language_id: Float - move_battle_style_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_movebattlestylename" -""" -input pokemon_v2_movebattlestylename_avg_order_by { - id: order_by - language_id: order_by - move_battle_style_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_movebattlestylename". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_movebattlestylename_bool_exp { - _and: [pokemon_v2_movebattlestylename_bool_exp!] - _not: pokemon_v2_movebattlestylename_bool_exp - _or: [pokemon_v2_movebattlestylename_bool_exp!] - id: Int_comparison_exp - language_id: Int_comparison_exp - move_battle_style_id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_movebattlestyle: pokemon_v2_movebattlestyle_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_movebattlestylename_max_fields { - id: Int - language_id: Int - move_battle_style_id: Int - name: String -} - -""" -order by max() on columns of table "pokemon_v2_movebattlestylename" -""" -input pokemon_v2_movebattlestylename_max_order_by { - id: order_by - language_id: order_by - move_battle_style_id: order_by - name: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_movebattlestylename_min_fields { - id: Int - language_id: Int - move_battle_style_id: Int - name: String -} - -""" -order by min() on columns of table "pokemon_v2_movebattlestylename" -""" -input pokemon_v2_movebattlestylename_min_order_by { - id: order_by - language_id: order_by - move_battle_style_id: order_by - name: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_movebattlestylename". -""" -input pokemon_v2_movebattlestylename_order_by { - id: order_by - language_id: order_by - move_battle_style_id: order_by - name: order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_movebattlestyle: pokemon_v2_movebattlestyle_order_by -} - -""" -select columns of table "pokemon_v2_movebattlestylename" -""" -enum pokemon_v2_movebattlestylename_select_column { - """column name""" - id - - """column name""" - language_id - - """column name""" - move_battle_style_id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_movebattlestylename_stddev_fields { - id: Float - language_id: Float - move_battle_style_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_movebattlestylename" -""" -input pokemon_v2_movebattlestylename_stddev_order_by { - id: order_by - language_id: order_by - move_battle_style_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_movebattlestylename_stddev_pop_fields { - id: Float - language_id: Float - move_battle_style_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_movebattlestylename" -""" -input pokemon_v2_movebattlestylename_stddev_pop_order_by { - id: order_by - language_id: order_by - move_battle_style_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_movebattlestylename_stddev_samp_fields { - id: Float - language_id: Float - move_battle_style_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_movebattlestylename" -""" -input pokemon_v2_movebattlestylename_stddev_samp_order_by { - id: order_by - language_id: order_by - move_battle_style_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_movebattlestylename" -""" -input pokemon_v2_movebattlestylename_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_movebattlestylename_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_movebattlestylename_stream_cursor_value_input { - id: Int - language_id: Int - move_battle_style_id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_movebattlestylename_sum_fields { - id: Int - language_id: Int - move_battle_style_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_movebattlestylename" -""" -input pokemon_v2_movebattlestylename_sum_order_by { - id: order_by - language_id: order_by - move_battle_style_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_movebattlestylename_var_pop_fields { - id: Float - language_id: Float - move_battle_style_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_movebattlestylename" -""" -input pokemon_v2_movebattlestylename_var_pop_order_by { - id: order_by - language_id: order_by - move_battle_style_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_movebattlestylename_var_samp_fields { - id: Float - language_id: Float - move_battle_style_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_movebattlestylename" -""" -input pokemon_v2_movebattlestylename_var_samp_order_by { - id: order_by - language_id: order_by - move_battle_style_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_movebattlestylename_variance_fields { - id: Float - language_id: Float - move_battle_style_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_movebattlestylename" -""" -input pokemon_v2_movebattlestylename_variance_order_by { - id: order_by - language_id: order_by - move_battle_style_id: order_by -} - -""" -columns and relationships of "pokemon_v2_movechange" -""" -type pokemon_v2_movechange { - accuracy: Int - id: Int! - move_effect_chance: Int - move_effect_id: Int - move_id: Int - - """An object relationship""" - pokemon_v2_move: pokemon_v2_move - - """An object relationship""" - pokemon_v2_moveeffect: pokemon_v2_moveeffect - - """An object relationship""" - pokemon_v2_type: pokemon_v2_type - - """An object relationship""" - pokemon_v2_versiongroup: pokemon_v2_versiongroup - power: Int - pp: Int - type_id: Int - version_group_id: Int -} - -""" -aggregated selection of "pokemon_v2_movechange" -""" -type pokemon_v2_movechange_aggregate { - aggregate: pokemon_v2_movechange_aggregate_fields - nodes: [pokemon_v2_movechange!]! -} - -input pokemon_v2_movechange_aggregate_bool_exp { - count: pokemon_v2_movechange_aggregate_bool_exp_count -} - -input pokemon_v2_movechange_aggregate_bool_exp_count { - arguments: [pokemon_v2_movechange_select_column!] - distinct: Boolean - filter: pokemon_v2_movechange_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_movechange" -""" -type pokemon_v2_movechange_aggregate_fields { - avg: pokemon_v2_movechange_avg_fields - count(columns: [pokemon_v2_movechange_select_column!], distinct: Boolean): Int! - max: pokemon_v2_movechange_max_fields - min: pokemon_v2_movechange_min_fields - stddev: pokemon_v2_movechange_stddev_fields - stddev_pop: pokemon_v2_movechange_stddev_pop_fields - stddev_samp: pokemon_v2_movechange_stddev_samp_fields - sum: pokemon_v2_movechange_sum_fields - var_pop: pokemon_v2_movechange_var_pop_fields - var_samp: pokemon_v2_movechange_var_samp_fields - variance: pokemon_v2_movechange_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_movechange" -""" -input pokemon_v2_movechange_aggregate_order_by { - avg: pokemon_v2_movechange_avg_order_by - count: order_by - max: pokemon_v2_movechange_max_order_by - min: pokemon_v2_movechange_min_order_by - stddev: pokemon_v2_movechange_stddev_order_by - stddev_pop: pokemon_v2_movechange_stddev_pop_order_by - stddev_samp: pokemon_v2_movechange_stddev_samp_order_by - sum: pokemon_v2_movechange_sum_order_by - var_pop: pokemon_v2_movechange_var_pop_order_by - var_samp: pokemon_v2_movechange_var_samp_order_by - variance: pokemon_v2_movechange_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_movechange_avg_fields { - accuracy: Float - id: Float - move_effect_chance: Float - move_effect_id: Float - move_id: Float - power: Float - pp: Float - type_id: Float - version_group_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_movechange" -""" -input pokemon_v2_movechange_avg_order_by { - accuracy: order_by - id: order_by - move_effect_chance: order_by - move_effect_id: order_by - move_id: order_by - power: order_by - pp: order_by - type_id: order_by - version_group_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_movechange". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_movechange_bool_exp { - _and: [pokemon_v2_movechange_bool_exp!] - _not: pokemon_v2_movechange_bool_exp - _or: [pokemon_v2_movechange_bool_exp!] - accuracy: Int_comparison_exp - id: Int_comparison_exp - move_effect_chance: Int_comparison_exp - move_effect_id: Int_comparison_exp - move_id: Int_comparison_exp - pokemon_v2_move: pokemon_v2_move_bool_exp - pokemon_v2_moveeffect: pokemon_v2_moveeffect_bool_exp - pokemon_v2_type: pokemon_v2_type_bool_exp - pokemon_v2_versiongroup: pokemon_v2_versiongroup_bool_exp - power: Int_comparison_exp - pp: Int_comparison_exp - type_id: Int_comparison_exp - version_group_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_movechange_max_fields { - accuracy: Int - id: Int - move_effect_chance: Int - move_effect_id: Int - move_id: Int - power: Int - pp: Int - type_id: Int - version_group_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_movechange" -""" -input pokemon_v2_movechange_max_order_by { - accuracy: order_by - id: order_by - move_effect_chance: order_by - move_effect_id: order_by - move_id: order_by - power: order_by - pp: order_by - type_id: order_by - version_group_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_movechange_min_fields { - accuracy: Int - id: Int - move_effect_chance: Int - move_effect_id: Int - move_id: Int - power: Int - pp: Int - type_id: Int - version_group_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_movechange" -""" -input pokemon_v2_movechange_min_order_by { - accuracy: order_by - id: order_by - move_effect_chance: order_by - move_effect_id: order_by - move_id: order_by - power: order_by - pp: order_by - type_id: order_by - version_group_id: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_movechange".""" -input pokemon_v2_movechange_order_by { - accuracy: order_by - id: order_by - move_effect_chance: order_by - move_effect_id: order_by - move_id: order_by - pokemon_v2_move: pokemon_v2_move_order_by - pokemon_v2_moveeffect: pokemon_v2_moveeffect_order_by - pokemon_v2_type: pokemon_v2_type_order_by - pokemon_v2_versiongroup: pokemon_v2_versiongroup_order_by - power: order_by - pp: order_by - type_id: order_by - version_group_id: order_by -} - -""" -select columns of table "pokemon_v2_movechange" -""" -enum pokemon_v2_movechange_select_column { - """column name""" - accuracy - - """column name""" - id - - """column name""" - move_effect_chance - - """column name""" - move_effect_id - - """column name""" - move_id - - """column name""" - power - - """column name""" - pp - - """column name""" - type_id - - """column name""" - version_group_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_movechange_stddev_fields { - accuracy: Float - id: Float - move_effect_chance: Float - move_effect_id: Float - move_id: Float - power: Float - pp: Float - type_id: Float - version_group_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_movechange" -""" -input pokemon_v2_movechange_stddev_order_by { - accuracy: order_by - id: order_by - move_effect_chance: order_by - move_effect_id: order_by - move_id: order_by - power: order_by - pp: order_by - type_id: order_by - version_group_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_movechange_stddev_pop_fields { - accuracy: Float - id: Float - move_effect_chance: Float - move_effect_id: Float - move_id: Float - power: Float - pp: Float - type_id: Float - version_group_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_movechange" -""" -input pokemon_v2_movechange_stddev_pop_order_by { - accuracy: order_by - id: order_by - move_effect_chance: order_by - move_effect_id: order_by - move_id: order_by - power: order_by - pp: order_by - type_id: order_by - version_group_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_movechange_stddev_samp_fields { - accuracy: Float - id: Float - move_effect_chance: Float - move_effect_id: Float - move_id: Float - power: Float - pp: Float - type_id: Float - version_group_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_movechange" -""" -input pokemon_v2_movechange_stddev_samp_order_by { - accuracy: order_by - id: order_by - move_effect_chance: order_by - move_effect_id: order_by - move_id: order_by - power: order_by - pp: order_by - type_id: order_by - version_group_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_movechange" -""" -input pokemon_v2_movechange_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_movechange_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_movechange_stream_cursor_value_input { - accuracy: Int - id: Int - move_effect_chance: Int - move_effect_id: Int - move_id: Int - power: Int - pp: Int - type_id: Int - version_group_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_movechange_sum_fields { - accuracy: Int - id: Int - move_effect_chance: Int - move_effect_id: Int - move_id: Int - power: Int - pp: Int - type_id: Int - version_group_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_movechange" -""" -input pokemon_v2_movechange_sum_order_by { - accuracy: order_by - id: order_by - move_effect_chance: order_by - move_effect_id: order_by - move_id: order_by - power: order_by - pp: order_by - type_id: order_by - version_group_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_movechange_var_pop_fields { - accuracy: Float - id: Float - move_effect_chance: Float - move_effect_id: Float - move_id: Float - power: Float - pp: Float - type_id: Float - version_group_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_movechange" -""" -input pokemon_v2_movechange_var_pop_order_by { - accuracy: order_by - id: order_by - move_effect_chance: order_by - move_effect_id: order_by - move_id: order_by - power: order_by - pp: order_by - type_id: order_by - version_group_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_movechange_var_samp_fields { - accuracy: Float - id: Float - move_effect_chance: Float - move_effect_id: Float - move_id: Float - power: Float - pp: Float - type_id: Float - version_group_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_movechange" -""" -input pokemon_v2_movechange_var_samp_order_by { - accuracy: order_by - id: order_by - move_effect_chance: order_by - move_effect_id: order_by - move_id: order_by - power: order_by - pp: order_by - type_id: order_by - version_group_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_movechange_variance_fields { - accuracy: Float - id: Float - move_effect_chance: Float - move_effect_id: Float - move_id: Float - power: Float - pp: Float - type_id: Float - version_group_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_movechange" -""" -input pokemon_v2_movechange_variance_order_by { - accuracy: order_by - id: order_by - move_effect_chance: order_by - move_effect_id: order_by - move_id: order_by - power: order_by - pp: order_by - type_id: order_by - version_group_id: order_by -} - -""" -columns and relationships of "pokemon_v2_movedamageclass" -""" -type pokemon_v2_movedamageclass { - id: Int! - name: String! - - """An array relationship""" - pokemon_v2_movedamageclassdescriptions( - """distinct select on columns""" - distinct_on: [pokemon_v2_movedamageclassdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movedamageclassdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movedamageclassdescription_bool_exp - ): [pokemon_v2_movedamageclassdescription!]! - - """An aggregate relationship""" - pokemon_v2_movedamageclassdescriptions_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movedamageclassdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movedamageclassdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movedamageclassdescription_bool_exp - ): pokemon_v2_movedamageclassdescription_aggregate! - - """An array relationship""" - pokemon_v2_movedamageclassnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_movedamageclassname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movedamageclassname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movedamageclassname_bool_exp - ): [pokemon_v2_movedamageclassname!]! - - """An aggregate relationship""" - pokemon_v2_movedamageclassnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movedamageclassname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movedamageclassname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movedamageclassname_bool_exp - ): pokemon_v2_movedamageclassname_aggregate! - - """An array relationship""" - pokemon_v2_moves( - """distinct select on columns""" - distinct_on: [pokemon_v2_move_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_move_order_by!] - - """filter the rows returned""" - where: pokemon_v2_move_bool_exp - ): [pokemon_v2_move!]! - - """An aggregate relationship""" - pokemon_v2_moves_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_move_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_move_order_by!] - - """filter the rows returned""" - where: pokemon_v2_move_bool_exp - ): pokemon_v2_move_aggregate! - - """An array relationship""" - pokemon_v2_stats( - """distinct select on columns""" - distinct_on: [pokemon_v2_stat_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_stat_order_by!] - - """filter the rows returned""" - where: pokemon_v2_stat_bool_exp - ): [pokemon_v2_stat!]! - - """An aggregate relationship""" - pokemon_v2_stats_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_stat_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_stat_order_by!] - - """filter the rows returned""" - where: pokemon_v2_stat_bool_exp - ): pokemon_v2_stat_aggregate! - - """An array relationship""" - pokemon_v2_types( - """distinct select on columns""" - distinct_on: [pokemon_v2_type_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_type_order_by!] - - """filter the rows returned""" - where: pokemon_v2_type_bool_exp - ): [pokemon_v2_type!]! - - """An aggregate relationship""" - pokemon_v2_types_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_type_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_type_order_by!] - - """filter the rows returned""" - where: pokemon_v2_type_bool_exp - ): pokemon_v2_type_aggregate! -} - -""" -aggregated selection of "pokemon_v2_movedamageclass" -""" -type pokemon_v2_movedamageclass_aggregate { - aggregate: pokemon_v2_movedamageclass_aggregate_fields - nodes: [pokemon_v2_movedamageclass!]! -} - -""" -aggregate fields of "pokemon_v2_movedamageclass" -""" -type pokemon_v2_movedamageclass_aggregate_fields { - avg: pokemon_v2_movedamageclass_avg_fields - count(columns: [pokemon_v2_movedamageclass_select_column!], distinct: Boolean): Int! - max: pokemon_v2_movedamageclass_max_fields - min: pokemon_v2_movedamageclass_min_fields - stddev: pokemon_v2_movedamageclass_stddev_fields - stddev_pop: pokemon_v2_movedamageclass_stddev_pop_fields - stddev_samp: pokemon_v2_movedamageclass_stddev_samp_fields - sum: pokemon_v2_movedamageclass_sum_fields - var_pop: pokemon_v2_movedamageclass_var_pop_fields - var_samp: pokemon_v2_movedamageclass_var_samp_fields - variance: pokemon_v2_movedamageclass_variance_fields -} - -"""aggregate avg on columns""" -type pokemon_v2_movedamageclass_avg_fields { - id: Float -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_movedamageclass". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_movedamageclass_bool_exp { - _and: [pokemon_v2_movedamageclass_bool_exp!] - _not: pokemon_v2_movedamageclass_bool_exp - _or: [pokemon_v2_movedamageclass_bool_exp!] - id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_movedamageclassdescriptions: pokemon_v2_movedamageclassdescription_bool_exp - pokemon_v2_movedamageclassdescriptions_aggregate: pokemon_v2_movedamageclassdescription_aggregate_bool_exp - pokemon_v2_movedamageclassnames: pokemon_v2_movedamageclassname_bool_exp - pokemon_v2_movedamageclassnames_aggregate: pokemon_v2_movedamageclassname_aggregate_bool_exp - pokemon_v2_moves: pokemon_v2_move_bool_exp - pokemon_v2_moves_aggregate: pokemon_v2_move_aggregate_bool_exp - pokemon_v2_stats: pokemon_v2_stat_bool_exp - pokemon_v2_stats_aggregate: pokemon_v2_stat_aggregate_bool_exp - pokemon_v2_types: pokemon_v2_type_bool_exp - pokemon_v2_types_aggregate: pokemon_v2_type_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_movedamageclass_max_fields { - id: Int - name: String -} - -"""aggregate min on columns""" -type pokemon_v2_movedamageclass_min_fields { - id: Int - name: String -} - -""" -Ordering options when selecting data from "pokemon_v2_movedamageclass". -""" -input pokemon_v2_movedamageclass_order_by { - id: order_by - name: order_by - pokemon_v2_movedamageclassdescriptions_aggregate: pokemon_v2_movedamageclassdescription_aggregate_order_by - pokemon_v2_movedamageclassnames_aggregate: pokemon_v2_movedamageclassname_aggregate_order_by - pokemon_v2_moves_aggregate: pokemon_v2_move_aggregate_order_by - pokemon_v2_stats_aggregate: pokemon_v2_stat_aggregate_order_by - pokemon_v2_types_aggregate: pokemon_v2_type_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_movedamageclass" -""" -enum pokemon_v2_movedamageclass_select_column { - """column name""" - id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_movedamageclass_stddev_fields { - id: Float -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_movedamageclass_stddev_pop_fields { - id: Float -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_movedamageclass_stddev_samp_fields { - id: Float -} - -""" -Streaming cursor of the table "pokemon_v2_movedamageclass" -""" -input pokemon_v2_movedamageclass_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_movedamageclass_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_movedamageclass_stream_cursor_value_input { - id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_movedamageclass_sum_fields { - id: Int -} - -"""aggregate var_pop on columns""" -type pokemon_v2_movedamageclass_var_pop_fields { - id: Float -} - -"""aggregate var_samp on columns""" -type pokemon_v2_movedamageclass_var_samp_fields { - id: Float -} - -"""aggregate variance on columns""" -type pokemon_v2_movedamageclass_variance_fields { - id: Float -} - -""" -columns and relationships of "pokemon_v2_movedamageclassdescription" -""" -type pokemon_v2_movedamageclassdescription { - description: String! - id: Int! - language_id: Int - move_damage_class_id: Int - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_movedamageclass: pokemon_v2_movedamageclass -} - -""" -aggregated selection of "pokemon_v2_movedamageclassdescription" -""" -type pokemon_v2_movedamageclassdescription_aggregate { - aggregate: pokemon_v2_movedamageclassdescription_aggregate_fields - nodes: [pokemon_v2_movedamageclassdescription!]! -} - -input pokemon_v2_movedamageclassdescription_aggregate_bool_exp { - count: pokemon_v2_movedamageclassdescription_aggregate_bool_exp_count -} - -input pokemon_v2_movedamageclassdescription_aggregate_bool_exp_count { - arguments: [pokemon_v2_movedamageclassdescription_select_column!] - distinct: Boolean - filter: pokemon_v2_movedamageclassdescription_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_movedamageclassdescription" -""" -type pokemon_v2_movedamageclassdescription_aggregate_fields { - avg: pokemon_v2_movedamageclassdescription_avg_fields - count(columns: [pokemon_v2_movedamageclassdescription_select_column!], distinct: Boolean): Int! - max: pokemon_v2_movedamageclassdescription_max_fields - min: pokemon_v2_movedamageclassdescription_min_fields - stddev: pokemon_v2_movedamageclassdescription_stddev_fields - stddev_pop: pokemon_v2_movedamageclassdescription_stddev_pop_fields - stddev_samp: pokemon_v2_movedamageclassdescription_stddev_samp_fields - sum: pokemon_v2_movedamageclassdescription_sum_fields - var_pop: pokemon_v2_movedamageclassdescription_var_pop_fields - var_samp: pokemon_v2_movedamageclassdescription_var_samp_fields - variance: pokemon_v2_movedamageclassdescription_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_movedamageclassdescription" -""" -input pokemon_v2_movedamageclassdescription_aggregate_order_by { - avg: pokemon_v2_movedamageclassdescription_avg_order_by - count: order_by - max: pokemon_v2_movedamageclassdescription_max_order_by - min: pokemon_v2_movedamageclassdescription_min_order_by - stddev: pokemon_v2_movedamageclassdescription_stddev_order_by - stddev_pop: pokemon_v2_movedamageclassdescription_stddev_pop_order_by - stddev_samp: pokemon_v2_movedamageclassdescription_stddev_samp_order_by - sum: pokemon_v2_movedamageclassdescription_sum_order_by - var_pop: pokemon_v2_movedamageclassdescription_var_pop_order_by - var_samp: pokemon_v2_movedamageclassdescription_var_samp_order_by - variance: pokemon_v2_movedamageclassdescription_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_movedamageclassdescription_avg_fields { - id: Float - language_id: Float - move_damage_class_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_movedamageclassdescription" -""" -input pokemon_v2_movedamageclassdescription_avg_order_by { - id: order_by - language_id: order_by - move_damage_class_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_movedamageclassdescription". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_movedamageclassdescription_bool_exp { - _and: [pokemon_v2_movedamageclassdescription_bool_exp!] - _not: pokemon_v2_movedamageclassdescription_bool_exp - _or: [pokemon_v2_movedamageclassdescription_bool_exp!] - description: String_comparison_exp - id: Int_comparison_exp - language_id: Int_comparison_exp - move_damage_class_id: Int_comparison_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_movedamageclass: pokemon_v2_movedamageclass_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_movedamageclassdescription_max_fields { - description: String - id: Int - language_id: Int - move_damage_class_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_movedamageclassdescription" -""" -input pokemon_v2_movedamageclassdescription_max_order_by { - description: order_by - id: order_by - language_id: order_by - move_damage_class_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_movedamageclassdescription_min_fields { - description: String - id: Int - language_id: Int - move_damage_class_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_movedamageclassdescription" -""" -input pokemon_v2_movedamageclassdescription_min_order_by { - description: order_by - id: order_by - language_id: order_by - move_damage_class_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_movedamageclassdescription". -""" -input pokemon_v2_movedamageclassdescription_order_by { - description: order_by - id: order_by - language_id: order_by - move_damage_class_id: order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_movedamageclass: pokemon_v2_movedamageclass_order_by -} - -""" -select columns of table "pokemon_v2_movedamageclassdescription" -""" -enum pokemon_v2_movedamageclassdescription_select_column { - """column name""" - description - - """column name""" - id - - """column name""" - language_id - - """column name""" - move_damage_class_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_movedamageclassdescription_stddev_fields { - id: Float - language_id: Float - move_damage_class_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_movedamageclassdescription" -""" -input pokemon_v2_movedamageclassdescription_stddev_order_by { - id: order_by - language_id: order_by - move_damage_class_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_movedamageclassdescription_stddev_pop_fields { - id: Float - language_id: Float - move_damage_class_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_movedamageclassdescription" -""" -input pokemon_v2_movedamageclassdescription_stddev_pop_order_by { - id: order_by - language_id: order_by - move_damage_class_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_movedamageclassdescription_stddev_samp_fields { - id: Float - language_id: Float - move_damage_class_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_movedamageclassdescription" -""" -input pokemon_v2_movedamageclassdescription_stddev_samp_order_by { - id: order_by - language_id: order_by - move_damage_class_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_movedamageclassdescription" -""" -input pokemon_v2_movedamageclassdescription_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_movedamageclassdescription_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_movedamageclassdescription_stream_cursor_value_input { - description: String - id: Int - language_id: Int - move_damage_class_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_movedamageclassdescription_sum_fields { - id: Int - language_id: Int - move_damage_class_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_movedamageclassdescription" -""" -input pokemon_v2_movedamageclassdescription_sum_order_by { - id: order_by - language_id: order_by - move_damage_class_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_movedamageclassdescription_var_pop_fields { - id: Float - language_id: Float - move_damage_class_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_movedamageclassdescription" -""" -input pokemon_v2_movedamageclassdescription_var_pop_order_by { - id: order_by - language_id: order_by - move_damage_class_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_movedamageclassdescription_var_samp_fields { - id: Float - language_id: Float - move_damage_class_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_movedamageclassdescription" -""" -input pokemon_v2_movedamageclassdescription_var_samp_order_by { - id: order_by - language_id: order_by - move_damage_class_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_movedamageclassdescription_variance_fields { - id: Float - language_id: Float - move_damage_class_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_movedamageclassdescription" -""" -input pokemon_v2_movedamageclassdescription_variance_order_by { - id: order_by - language_id: order_by - move_damage_class_id: order_by -} - -""" -columns and relationships of "pokemon_v2_movedamageclassname" -""" -type pokemon_v2_movedamageclassname { - id: Int! - language_id: Int - move_damage_class_id: Int - name: String! - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_movedamageclass: pokemon_v2_movedamageclass -} - -""" -aggregated selection of "pokemon_v2_movedamageclassname" -""" -type pokemon_v2_movedamageclassname_aggregate { - aggregate: pokemon_v2_movedamageclassname_aggregate_fields - nodes: [pokemon_v2_movedamageclassname!]! -} - -input pokemon_v2_movedamageclassname_aggregate_bool_exp { - count: pokemon_v2_movedamageclassname_aggregate_bool_exp_count -} - -input pokemon_v2_movedamageclassname_aggregate_bool_exp_count { - arguments: [pokemon_v2_movedamageclassname_select_column!] - distinct: Boolean - filter: pokemon_v2_movedamageclassname_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_movedamageclassname" -""" -type pokemon_v2_movedamageclassname_aggregate_fields { - avg: pokemon_v2_movedamageclassname_avg_fields - count(columns: [pokemon_v2_movedamageclassname_select_column!], distinct: Boolean): Int! - max: pokemon_v2_movedamageclassname_max_fields - min: pokemon_v2_movedamageclassname_min_fields - stddev: pokemon_v2_movedamageclassname_stddev_fields - stddev_pop: pokemon_v2_movedamageclassname_stddev_pop_fields - stddev_samp: pokemon_v2_movedamageclassname_stddev_samp_fields - sum: pokemon_v2_movedamageclassname_sum_fields - var_pop: pokemon_v2_movedamageclassname_var_pop_fields - var_samp: pokemon_v2_movedamageclassname_var_samp_fields - variance: pokemon_v2_movedamageclassname_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_movedamageclassname" -""" -input pokemon_v2_movedamageclassname_aggregate_order_by { - avg: pokemon_v2_movedamageclassname_avg_order_by - count: order_by - max: pokemon_v2_movedamageclassname_max_order_by - min: pokemon_v2_movedamageclassname_min_order_by - stddev: pokemon_v2_movedamageclassname_stddev_order_by - stddev_pop: pokemon_v2_movedamageclassname_stddev_pop_order_by - stddev_samp: pokemon_v2_movedamageclassname_stddev_samp_order_by - sum: pokemon_v2_movedamageclassname_sum_order_by - var_pop: pokemon_v2_movedamageclassname_var_pop_order_by - var_samp: pokemon_v2_movedamageclassname_var_samp_order_by - variance: pokemon_v2_movedamageclassname_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_movedamageclassname_avg_fields { - id: Float - language_id: Float - move_damage_class_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_movedamageclassname" -""" -input pokemon_v2_movedamageclassname_avg_order_by { - id: order_by - language_id: order_by - move_damage_class_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_movedamageclassname". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_movedamageclassname_bool_exp { - _and: [pokemon_v2_movedamageclassname_bool_exp!] - _not: pokemon_v2_movedamageclassname_bool_exp - _or: [pokemon_v2_movedamageclassname_bool_exp!] - id: Int_comparison_exp - language_id: Int_comparison_exp - move_damage_class_id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_movedamageclass: pokemon_v2_movedamageclass_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_movedamageclassname_max_fields { - id: Int - language_id: Int - move_damage_class_id: Int - name: String -} - -""" -order by max() on columns of table "pokemon_v2_movedamageclassname" -""" -input pokemon_v2_movedamageclassname_max_order_by { - id: order_by - language_id: order_by - move_damage_class_id: order_by - name: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_movedamageclassname_min_fields { - id: Int - language_id: Int - move_damage_class_id: Int - name: String -} - -""" -order by min() on columns of table "pokemon_v2_movedamageclassname" -""" -input pokemon_v2_movedamageclassname_min_order_by { - id: order_by - language_id: order_by - move_damage_class_id: order_by - name: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_movedamageclassname". -""" -input pokemon_v2_movedamageclassname_order_by { - id: order_by - language_id: order_by - move_damage_class_id: order_by - name: order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_movedamageclass: pokemon_v2_movedamageclass_order_by -} - -""" -select columns of table "pokemon_v2_movedamageclassname" -""" -enum pokemon_v2_movedamageclassname_select_column { - """column name""" - id - - """column name""" - language_id - - """column name""" - move_damage_class_id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_movedamageclassname_stddev_fields { - id: Float - language_id: Float - move_damage_class_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_movedamageclassname" -""" -input pokemon_v2_movedamageclassname_stddev_order_by { - id: order_by - language_id: order_by - move_damage_class_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_movedamageclassname_stddev_pop_fields { - id: Float - language_id: Float - move_damage_class_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_movedamageclassname" -""" -input pokemon_v2_movedamageclassname_stddev_pop_order_by { - id: order_by - language_id: order_by - move_damage_class_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_movedamageclassname_stddev_samp_fields { - id: Float - language_id: Float - move_damage_class_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_movedamageclassname" -""" -input pokemon_v2_movedamageclassname_stddev_samp_order_by { - id: order_by - language_id: order_by - move_damage_class_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_movedamageclassname" -""" -input pokemon_v2_movedamageclassname_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_movedamageclassname_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_movedamageclassname_stream_cursor_value_input { - id: Int - language_id: Int - move_damage_class_id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_movedamageclassname_sum_fields { - id: Int - language_id: Int - move_damage_class_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_movedamageclassname" -""" -input pokemon_v2_movedamageclassname_sum_order_by { - id: order_by - language_id: order_by - move_damage_class_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_movedamageclassname_var_pop_fields { - id: Float - language_id: Float - move_damage_class_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_movedamageclassname" -""" -input pokemon_v2_movedamageclassname_var_pop_order_by { - id: order_by - language_id: order_by - move_damage_class_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_movedamageclassname_var_samp_fields { - id: Float - language_id: Float - move_damage_class_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_movedamageclassname" -""" -input pokemon_v2_movedamageclassname_var_samp_order_by { - id: order_by - language_id: order_by - move_damage_class_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_movedamageclassname_variance_fields { - id: Float - language_id: Float - move_damage_class_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_movedamageclassname" -""" -input pokemon_v2_movedamageclassname_variance_order_by { - id: order_by - language_id: order_by - move_damage_class_id: order_by -} - -""" -columns and relationships of "pokemon_v2_moveeffect" -""" -type pokemon_v2_moveeffect { - id: Int! - - """An array relationship""" - pokemon_v2_movechanges( - """distinct select on columns""" - distinct_on: [pokemon_v2_movechange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movechange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movechange_bool_exp - ): [pokemon_v2_movechange!]! - - """An aggregate relationship""" - pokemon_v2_movechanges_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movechange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movechange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movechange_bool_exp - ): pokemon_v2_movechange_aggregate! - - """An array relationship""" - pokemon_v2_moveeffectchanges( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveeffectchange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveeffectchange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveeffectchange_bool_exp - ): [pokemon_v2_moveeffectchange!]! - - """An aggregate relationship""" - pokemon_v2_moveeffectchanges_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveeffectchange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveeffectchange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveeffectchange_bool_exp - ): pokemon_v2_moveeffectchange_aggregate! - - """An array relationship""" - pokemon_v2_moveeffecteffecttexts( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveeffecteffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveeffecteffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveeffecteffecttext_bool_exp - ): [pokemon_v2_moveeffecteffecttext!]! - - """An aggregate relationship""" - pokemon_v2_moveeffecteffecttexts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveeffecteffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveeffecteffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveeffecteffecttext_bool_exp - ): pokemon_v2_moveeffecteffecttext_aggregate! - - """An array relationship""" - pokemon_v2_moves( - """distinct select on columns""" - distinct_on: [pokemon_v2_move_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_move_order_by!] - - """filter the rows returned""" - where: pokemon_v2_move_bool_exp - ): [pokemon_v2_move!]! - - """An aggregate relationship""" - pokemon_v2_moves_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_move_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_move_order_by!] - - """filter the rows returned""" - where: pokemon_v2_move_bool_exp - ): pokemon_v2_move_aggregate! -} - -""" -aggregated selection of "pokemon_v2_moveeffect" -""" -type pokemon_v2_moveeffect_aggregate { - aggregate: pokemon_v2_moveeffect_aggregate_fields - nodes: [pokemon_v2_moveeffect!]! -} - -""" -aggregate fields of "pokemon_v2_moveeffect" -""" -type pokemon_v2_moveeffect_aggregate_fields { - avg: pokemon_v2_moveeffect_avg_fields - count(columns: [pokemon_v2_moveeffect_select_column!], distinct: Boolean): Int! - max: pokemon_v2_moveeffect_max_fields - min: pokemon_v2_moveeffect_min_fields - stddev: pokemon_v2_moveeffect_stddev_fields - stddev_pop: pokemon_v2_moveeffect_stddev_pop_fields - stddev_samp: pokemon_v2_moveeffect_stddev_samp_fields - sum: pokemon_v2_moveeffect_sum_fields - var_pop: pokemon_v2_moveeffect_var_pop_fields - var_samp: pokemon_v2_moveeffect_var_samp_fields - variance: pokemon_v2_moveeffect_variance_fields -} - -"""aggregate avg on columns""" -type pokemon_v2_moveeffect_avg_fields { - id: Float -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_moveeffect". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_moveeffect_bool_exp { - _and: [pokemon_v2_moveeffect_bool_exp!] - _not: pokemon_v2_moveeffect_bool_exp - _or: [pokemon_v2_moveeffect_bool_exp!] - id: Int_comparison_exp - pokemon_v2_movechanges: pokemon_v2_movechange_bool_exp - pokemon_v2_movechanges_aggregate: pokemon_v2_movechange_aggregate_bool_exp - pokemon_v2_moveeffectchanges: pokemon_v2_moveeffectchange_bool_exp - pokemon_v2_moveeffectchanges_aggregate: pokemon_v2_moveeffectchange_aggregate_bool_exp - pokemon_v2_moveeffecteffecttexts: pokemon_v2_moveeffecteffecttext_bool_exp - pokemon_v2_moveeffecteffecttexts_aggregate: pokemon_v2_moveeffecteffecttext_aggregate_bool_exp - pokemon_v2_moves: pokemon_v2_move_bool_exp - pokemon_v2_moves_aggregate: pokemon_v2_move_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_moveeffect_max_fields { - id: Int -} - -"""aggregate min on columns""" -type pokemon_v2_moveeffect_min_fields { - id: Int -} - -"""Ordering options when selecting data from "pokemon_v2_moveeffect".""" -input pokemon_v2_moveeffect_order_by { - id: order_by - pokemon_v2_movechanges_aggregate: pokemon_v2_movechange_aggregate_order_by - pokemon_v2_moveeffectchanges_aggregate: pokemon_v2_moveeffectchange_aggregate_order_by - pokemon_v2_moveeffecteffecttexts_aggregate: pokemon_v2_moveeffecteffecttext_aggregate_order_by - pokemon_v2_moves_aggregate: pokemon_v2_move_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_moveeffect" -""" -enum pokemon_v2_moveeffect_select_column { - """column name""" - id -} - -"""aggregate stddev on columns""" -type pokemon_v2_moveeffect_stddev_fields { - id: Float -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_moveeffect_stddev_pop_fields { - id: Float -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_moveeffect_stddev_samp_fields { - id: Float -} - -""" -Streaming cursor of the table "pokemon_v2_moveeffect" -""" -input pokemon_v2_moveeffect_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_moveeffect_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_moveeffect_stream_cursor_value_input { - id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_moveeffect_sum_fields { - id: Int -} - -"""aggregate var_pop on columns""" -type pokemon_v2_moveeffect_var_pop_fields { - id: Float -} - -"""aggregate var_samp on columns""" -type pokemon_v2_moveeffect_var_samp_fields { - id: Float -} - -"""aggregate variance on columns""" -type pokemon_v2_moveeffect_variance_fields { - id: Float -} - -""" -columns and relationships of "pokemon_v2_moveeffectchange" -""" -type pokemon_v2_moveeffectchange { - id: Int! - move_effect_id: Int - - """An object relationship""" - pokemon_v2_moveeffect: pokemon_v2_moveeffect - - """An array relationship""" - pokemon_v2_moveeffectchangeeffecttexts( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveeffectchangeeffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveeffectchangeeffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveeffectchangeeffecttext_bool_exp - ): [pokemon_v2_moveeffectchangeeffecttext!]! - - """An aggregate relationship""" - pokemon_v2_moveeffectchangeeffecttexts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveeffectchangeeffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveeffectchangeeffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveeffectchangeeffecttext_bool_exp - ): pokemon_v2_moveeffectchangeeffecttext_aggregate! - - """An object relationship""" - pokemon_v2_versiongroup: pokemon_v2_versiongroup - version_group_id: Int -} - -""" -aggregated selection of "pokemon_v2_moveeffectchange" -""" -type pokemon_v2_moveeffectchange_aggregate { - aggregate: pokemon_v2_moveeffectchange_aggregate_fields - nodes: [pokemon_v2_moveeffectchange!]! -} - -input pokemon_v2_moveeffectchange_aggregate_bool_exp { - count: pokemon_v2_moveeffectchange_aggregate_bool_exp_count -} - -input pokemon_v2_moveeffectchange_aggregate_bool_exp_count { - arguments: [pokemon_v2_moveeffectchange_select_column!] - distinct: Boolean - filter: pokemon_v2_moveeffectchange_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_moveeffectchange" -""" -type pokemon_v2_moveeffectchange_aggregate_fields { - avg: pokemon_v2_moveeffectchange_avg_fields - count(columns: [pokemon_v2_moveeffectchange_select_column!], distinct: Boolean): Int! - max: pokemon_v2_moveeffectchange_max_fields - min: pokemon_v2_moveeffectchange_min_fields - stddev: pokemon_v2_moveeffectchange_stddev_fields - stddev_pop: pokemon_v2_moveeffectchange_stddev_pop_fields - stddev_samp: pokemon_v2_moveeffectchange_stddev_samp_fields - sum: pokemon_v2_moveeffectchange_sum_fields - var_pop: pokemon_v2_moveeffectchange_var_pop_fields - var_samp: pokemon_v2_moveeffectchange_var_samp_fields - variance: pokemon_v2_moveeffectchange_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_moveeffectchange" -""" -input pokemon_v2_moveeffectchange_aggregate_order_by { - avg: pokemon_v2_moveeffectchange_avg_order_by - count: order_by - max: pokemon_v2_moveeffectchange_max_order_by - min: pokemon_v2_moveeffectchange_min_order_by - stddev: pokemon_v2_moveeffectchange_stddev_order_by - stddev_pop: pokemon_v2_moveeffectchange_stddev_pop_order_by - stddev_samp: pokemon_v2_moveeffectchange_stddev_samp_order_by - sum: pokemon_v2_moveeffectchange_sum_order_by - var_pop: pokemon_v2_moveeffectchange_var_pop_order_by - var_samp: pokemon_v2_moveeffectchange_var_samp_order_by - variance: pokemon_v2_moveeffectchange_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_moveeffectchange_avg_fields { - id: Float - move_effect_id: Float - version_group_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_moveeffectchange" -""" -input pokemon_v2_moveeffectchange_avg_order_by { - id: order_by - move_effect_id: order_by - version_group_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_moveeffectchange". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_moveeffectchange_bool_exp { - _and: [pokemon_v2_moveeffectchange_bool_exp!] - _not: pokemon_v2_moveeffectchange_bool_exp - _or: [pokemon_v2_moveeffectchange_bool_exp!] - id: Int_comparison_exp - move_effect_id: Int_comparison_exp - pokemon_v2_moveeffect: pokemon_v2_moveeffect_bool_exp - pokemon_v2_moveeffectchangeeffecttexts: pokemon_v2_moveeffectchangeeffecttext_bool_exp - pokemon_v2_moveeffectchangeeffecttexts_aggregate: pokemon_v2_moveeffectchangeeffecttext_aggregate_bool_exp - pokemon_v2_versiongroup: pokemon_v2_versiongroup_bool_exp - version_group_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_moveeffectchange_max_fields { - id: Int - move_effect_id: Int - version_group_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_moveeffectchange" -""" -input pokemon_v2_moveeffectchange_max_order_by { - id: order_by - move_effect_id: order_by - version_group_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_moveeffectchange_min_fields { - id: Int - move_effect_id: Int - version_group_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_moveeffectchange" -""" -input pokemon_v2_moveeffectchange_min_order_by { - id: order_by - move_effect_id: order_by - version_group_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_moveeffectchange". -""" -input pokemon_v2_moveeffectchange_order_by { - id: order_by - move_effect_id: order_by - pokemon_v2_moveeffect: pokemon_v2_moveeffect_order_by - pokemon_v2_moveeffectchangeeffecttexts_aggregate: pokemon_v2_moveeffectchangeeffecttext_aggregate_order_by - pokemon_v2_versiongroup: pokemon_v2_versiongroup_order_by - version_group_id: order_by -} - -""" -select columns of table "pokemon_v2_moveeffectchange" -""" -enum pokemon_v2_moveeffectchange_select_column { - """column name""" - id - - """column name""" - move_effect_id - - """column name""" - version_group_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_moveeffectchange_stddev_fields { - id: Float - move_effect_id: Float - version_group_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_moveeffectchange" -""" -input pokemon_v2_moveeffectchange_stddev_order_by { - id: order_by - move_effect_id: order_by - version_group_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_moveeffectchange_stddev_pop_fields { - id: Float - move_effect_id: Float - version_group_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_moveeffectchange" -""" -input pokemon_v2_moveeffectchange_stddev_pop_order_by { - id: order_by - move_effect_id: order_by - version_group_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_moveeffectchange_stddev_samp_fields { - id: Float - move_effect_id: Float - version_group_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_moveeffectchange" -""" -input pokemon_v2_moveeffectchange_stddev_samp_order_by { - id: order_by - move_effect_id: order_by - version_group_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_moveeffectchange" -""" -input pokemon_v2_moveeffectchange_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_moveeffectchange_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_moveeffectchange_stream_cursor_value_input { - id: Int - move_effect_id: Int - version_group_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_moveeffectchange_sum_fields { - id: Int - move_effect_id: Int - version_group_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_moveeffectchange" -""" -input pokemon_v2_moveeffectchange_sum_order_by { - id: order_by - move_effect_id: order_by - version_group_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_moveeffectchange_var_pop_fields { - id: Float - move_effect_id: Float - version_group_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_moveeffectchange" -""" -input pokemon_v2_moveeffectchange_var_pop_order_by { - id: order_by - move_effect_id: order_by - version_group_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_moveeffectchange_var_samp_fields { - id: Float - move_effect_id: Float - version_group_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_moveeffectchange" -""" -input pokemon_v2_moveeffectchange_var_samp_order_by { - id: order_by - move_effect_id: order_by - version_group_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_moveeffectchange_variance_fields { - id: Float - move_effect_id: Float - version_group_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_moveeffectchange" -""" -input pokemon_v2_moveeffectchange_variance_order_by { - id: order_by - move_effect_id: order_by - version_group_id: order_by -} - -""" -columns and relationships of "pokemon_v2_moveeffectchangeeffecttext" -""" -type pokemon_v2_moveeffectchangeeffecttext { - effect: String! - id: Int! - language_id: Int - move_effect_change_id: Int - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_moveeffectchange: pokemon_v2_moveeffectchange -} - -""" -aggregated selection of "pokemon_v2_moveeffectchangeeffecttext" -""" -type pokemon_v2_moveeffectchangeeffecttext_aggregate { - aggregate: pokemon_v2_moveeffectchangeeffecttext_aggregate_fields - nodes: [pokemon_v2_moveeffectchangeeffecttext!]! -} - -input pokemon_v2_moveeffectchangeeffecttext_aggregate_bool_exp { - count: pokemon_v2_moveeffectchangeeffecttext_aggregate_bool_exp_count -} - -input pokemon_v2_moveeffectchangeeffecttext_aggregate_bool_exp_count { - arguments: [pokemon_v2_moveeffectchangeeffecttext_select_column!] - distinct: Boolean - filter: pokemon_v2_moveeffectchangeeffecttext_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_moveeffectchangeeffecttext" -""" -type pokemon_v2_moveeffectchangeeffecttext_aggregate_fields { - avg: pokemon_v2_moveeffectchangeeffecttext_avg_fields - count(columns: [pokemon_v2_moveeffectchangeeffecttext_select_column!], distinct: Boolean): Int! - max: pokemon_v2_moveeffectchangeeffecttext_max_fields - min: pokemon_v2_moveeffectchangeeffecttext_min_fields - stddev: pokemon_v2_moveeffectchangeeffecttext_stddev_fields - stddev_pop: pokemon_v2_moveeffectchangeeffecttext_stddev_pop_fields - stddev_samp: pokemon_v2_moveeffectchangeeffecttext_stddev_samp_fields - sum: pokemon_v2_moveeffectchangeeffecttext_sum_fields - var_pop: pokemon_v2_moveeffectchangeeffecttext_var_pop_fields - var_samp: pokemon_v2_moveeffectchangeeffecttext_var_samp_fields - variance: pokemon_v2_moveeffectchangeeffecttext_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_moveeffectchangeeffecttext" -""" -input pokemon_v2_moveeffectchangeeffecttext_aggregate_order_by { - avg: pokemon_v2_moveeffectchangeeffecttext_avg_order_by - count: order_by - max: pokemon_v2_moveeffectchangeeffecttext_max_order_by - min: pokemon_v2_moveeffectchangeeffecttext_min_order_by - stddev: pokemon_v2_moveeffectchangeeffecttext_stddev_order_by - stddev_pop: pokemon_v2_moveeffectchangeeffecttext_stddev_pop_order_by - stddev_samp: pokemon_v2_moveeffectchangeeffecttext_stddev_samp_order_by - sum: pokemon_v2_moveeffectchangeeffecttext_sum_order_by - var_pop: pokemon_v2_moveeffectchangeeffecttext_var_pop_order_by - var_samp: pokemon_v2_moveeffectchangeeffecttext_var_samp_order_by - variance: pokemon_v2_moveeffectchangeeffecttext_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_moveeffectchangeeffecttext_avg_fields { - id: Float - language_id: Float - move_effect_change_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_moveeffectchangeeffecttext" -""" -input pokemon_v2_moveeffectchangeeffecttext_avg_order_by { - id: order_by - language_id: order_by - move_effect_change_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_moveeffectchangeeffecttext". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_moveeffectchangeeffecttext_bool_exp { - _and: [pokemon_v2_moveeffectchangeeffecttext_bool_exp!] - _not: pokemon_v2_moveeffectchangeeffecttext_bool_exp - _or: [pokemon_v2_moveeffectchangeeffecttext_bool_exp!] - effect: String_comparison_exp - id: Int_comparison_exp - language_id: Int_comparison_exp - move_effect_change_id: Int_comparison_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_moveeffectchange: pokemon_v2_moveeffectchange_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_moveeffectchangeeffecttext_max_fields { - effect: String - id: Int - language_id: Int - move_effect_change_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_moveeffectchangeeffecttext" -""" -input pokemon_v2_moveeffectchangeeffecttext_max_order_by { - effect: order_by - id: order_by - language_id: order_by - move_effect_change_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_moveeffectchangeeffecttext_min_fields { - effect: String - id: Int - language_id: Int - move_effect_change_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_moveeffectchangeeffecttext" -""" -input pokemon_v2_moveeffectchangeeffecttext_min_order_by { - effect: order_by - id: order_by - language_id: order_by - move_effect_change_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_moveeffectchangeeffecttext". -""" -input pokemon_v2_moveeffectchangeeffecttext_order_by { - effect: order_by - id: order_by - language_id: order_by - move_effect_change_id: order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_moveeffectchange: pokemon_v2_moveeffectchange_order_by -} - -""" -select columns of table "pokemon_v2_moveeffectchangeeffecttext" -""" -enum pokemon_v2_moveeffectchangeeffecttext_select_column { - """column name""" - effect - - """column name""" - id - - """column name""" - language_id - - """column name""" - move_effect_change_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_moveeffectchangeeffecttext_stddev_fields { - id: Float - language_id: Float - move_effect_change_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_moveeffectchangeeffecttext" -""" -input pokemon_v2_moveeffectchangeeffecttext_stddev_order_by { - id: order_by - language_id: order_by - move_effect_change_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_moveeffectchangeeffecttext_stddev_pop_fields { - id: Float - language_id: Float - move_effect_change_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_moveeffectchangeeffecttext" -""" -input pokemon_v2_moveeffectchangeeffecttext_stddev_pop_order_by { - id: order_by - language_id: order_by - move_effect_change_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_moveeffectchangeeffecttext_stddev_samp_fields { - id: Float - language_id: Float - move_effect_change_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_moveeffectchangeeffecttext" -""" -input pokemon_v2_moveeffectchangeeffecttext_stddev_samp_order_by { - id: order_by - language_id: order_by - move_effect_change_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_moveeffectchangeeffecttext" -""" -input pokemon_v2_moveeffectchangeeffecttext_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_moveeffectchangeeffecttext_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_moveeffectchangeeffecttext_stream_cursor_value_input { - effect: String - id: Int - language_id: Int - move_effect_change_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_moveeffectchangeeffecttext_sum_fields { - id: Int - language_id: Int - move_effect_change_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_moveeffectchangeeffecttext" -""" -input pokemon_v2_moveeffectchangeeffecttext_sum_order_by { - id: order_by - language_id: order_by - move_effect_change_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_moveeffectchangeeffecttext_var_pop_fields { - id: Float - language_id: Float - move_effect_change_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_moveeffectchangeeffecttext" -""" -input pokemon_v2_moveeffectchangeeffecttext_var_pop_order_by { - id: order_by - language_id: order_by - move_effect_change_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_moveeffectchangeeffecttext_var_samp_fields { - id: Float - language_id: Float - move_effect_change_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_moveeffectchangeeffecttext" -""" -input pokemon_v2_moveeffectchangeeffecttext_var_samp_order_by { - id: order_by - language_id: order_by - move_effect_change_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_moveeffectchangeeffecttext_variance_fields { - id: Float - language_id: Float - move_effect_change_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_moveeffectchangeeffecttext" -""" -input pokemon_v2_moveeffectchangeeffecttext_variance_order_by { - id: order_by - language_id: order_by - move_effect_change_id: order_by -} - -""" -columns and relationships of "pokemon_v2_moveeffecteffecttext" -""" -type pokemon_v2_moveeffecteffecttext { - effect: String! - id: Int! - language_id: Int - move_effect_id: Int - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_moveeffect: pokemon_v2_moveeffect - short_effect: String! -} - -""" -aggregated selection of "pokemon_v2_moveeffecteffecttext" -""" -type pokemon_v2_moveeffecteffecttext_aggregate { - aggregate: pokemon_v2_moveeffecteffecttext_aggregate_fields - nodes: [pokemon_v2_moveeffecteffecttext!]! -} - -input pokemon_v2_moveeffecteffecttext_aggregate_bool_exp { - count: pokemon_v2_moveeffecteffecttext_aggregate_bool_exp_count -} - -input pokemon_v2_moveeffecteffecttext_aggregate_bool_exp_count { - arguments: [pokemon_v2_moveeffecteffecttext_select_column!] - distinct: Boolean - filter: pokemon_v2_moveeffecteffecttext_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_moveeffecteffecttext" -""" -type pokemon_v2_moveeffecteffecttext_aggregate_fields { - avg: pokemon_v2_moveeffecteffecttext_avg_fields - count(columns: [pokemon_v2_moveeffecteffecttext_select_column!], distinct: Boolean): Int! - max: pokemon_v2_moveeffecteffecttext_max_fields - min: pokemon_v2_moveeffecteffecttext_min_fields - stddev: pokemon_v2_moveeffecteffecttext_stddev_fields - stddev_pop: pokemon_v2_moveeffecteffecttext_stddev_pop_fields - stddev_samp: pokemon_v2_moveeffecteffecttext_stddev_samp_fields - sum: pokemon_v2_moveeffecteffecttext_sum_fields - var_pop: pokemon_v2_moveeffecteffecttext_var_pop_fields - var_samp: pokemon_v2_moveeffecteffecttext_var_samp_fields - variance: pokemon_v2_moveeffecteffecttext_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_moveeffecteffecttext" -""" -input pokemon_v2_moveeffecteffecttext_aggregate_order_by { - avg: pokemon_v2_moveeffecteffecttext_avg_order_by - count: order_by - max: pokemon_v2_moveeffecteffecttext_max_order_by - min: pokemon_v2_moveeffecteffecttext_min_order_by - stddev: pokemon_v2_moveeffecteffecttext_stddev_order_by - stddev_pop: pokemon_v2_moveeffecteffecttext_stddev_pop_order_by - stddev_samp: pokemon_v2_moveeffecteffecttext_stddev_samp_order_by - sum: pokemon_v2_moveeffecteffecttext_sum_order_by - var_pop: pokemon_v2_moveeffecteffecttext_var_pop_order_by - var_samp: pokemon_v2_moveeffecteffecttext_var_samp_order_by - variance: pokemon_v2_moveeffecteffecttext_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_moveeffecteffecttext_avg_fields { - id: Float - language_id: Float - move_effect_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_moveeffecteffecttext" -""" -input pokemon_v2_moveeffecteffecttext_avg_order_by { - id: order_by - language_id: order_by - move_effect_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_moveeffecteffecttext". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_moveeffecteffecttext_bool_exp { - _and: [pokemon_v2_moveeffecteffecttext_bool_exp!] - _not: pokemon_v2_moveeffecteffecttext_bool_exp - _or: [pokemon_v2_moveeffecteffecttext_bool_exp!] - effect: String_comparison_exp - id: Int_comparison_exp - language_id: Int_comparison_exp - move_effect_id: Int_comparison_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_moveeffect: pokemon_v2_moveeffect_bool_exp - short_effect: String_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_moveeffecteffecttext_max_fields { - effect: String - id: Int - language_id: Int - move_effect_id: Int - short_effect: String -} - -""" -order by max() on columns of table "pokemon_v2_moveeffecteffecttext" -""" -input pokemon_v2_moveeffecteffecttext_max_order_by { - effect: order_by - id: order_by - language_id: order_by - move_effect_id: order_by - short_effect: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_moveeffecteffecttext_min_fields { - effect: String - id: Int - language_id: Int - move_effect_id: Int - short_effect: String -} - -""" -order by min() on columns of table "pokemon_v2_moveeffecteffecttext" -""" -input pokemon_v2_moveeffecteffecttext_min_order_by { - effect: order_by - id: order_by - language_id: order_by - move_effect_id: order_by - short_effect: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_moveeffecteffecttext". -""" -input pokemon_v2_moveeffecteffecttext_order_by { - effect: order_by - id: order_by - language_id: order_by - move_effect_id: order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_moveeffect: pokemon_v2_moveeffect_order_by - short_effect: order_by -} - -""" -select columns of table "pokemon_v2_moveeffecteffecttext" -""" -enum pokemon_v2_moveeffecteffecttext_select_column { - """column name""" - effect - - """column name""" - id - - """column name""" - language_id - - """column name""" - move_effect_id - - """column name""" - short_effect -} - -"""aggregate stddev on columns""" -type pokemon_v2_moveeffecteffecttext_stddev_fields { - id: Float - language_id: Float - move_effect_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_moveeffecteffecttext" -""" -input pokemon_v2_moveeffecteffecttext_stddev_order_by { - id: order_by - language_id: order_by - move_effect_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_moveeffecteffecttext_stddev_pop_fields { - id: Float - language_id: Float - move_effect_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_moveeffecteffecttext" -""" -input pokemon_v2_moveeffecteffecttext_stddev_pop_order_by { - id: order_by - language_id: order_by - move_effect_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_moveeffecteffecttext_stddev_samp_fields { - id: Float - language_id: Float - move_effect_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_moveeffecteffecttext" -""" -input pokemon_v2_moveeffecteffecttext_stddev_samp_order_by { - id: order_by - language_id: order_by - move_effect_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_moveeffecteffecttext" -""" -input pokemon_v2_moveeffecteffecttext_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_moveeffecteffecttext_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_moveeffecteffecttext_stream_cursor_value_input { - effect: String - id: Int - language_id: Int - move_effect_id: Int - short_effect: String -} - -"""aggregate sum on columns""" -type pokemon_v2_moveeffecteffecttext_sum_fields { - id: Int - language_id: Int - move_effect_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_moveeffecteffecttext" -""" -input pokemon_v2_moveeffecteffecttext_sum_order_by { - id: order_by - language_id: order_by - move_effect_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_moveeffecteffecttext_var_pop_fields { - id: Float - language_id: Float - move_effect_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_moveeffecteffecttext" -""" -input pokemon_v2_moveeffecteffecttext_var_pop_order_by { - id: order_by - language_id: order_by - move_effect_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_moveeffecteffecttext_var_samp_fields { - id: Float - language_id: Float - move_effect_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_moveeffecteffecttext" -""" -input pokemon_v2_moveeffecteffecttext_var_samp_order_by { - id: order_by - language_id: order_by - move_effect_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_moveeffecteffecttext_variance_fields { - id: Float - language_id: Float - move_effect_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_moveeffecteffecttext" -""" -input pokemon_v2_moveeffecteffecttext_variance_order_by { - id: order_by - language_id: order_by - move_effect_id: order_by -} - -""" -columns and relationships of "pokemon_v2_moveflavortext" -""" -type pokemon_v2_moveflavortext { - flavor_text: String! - id: Int! - language_id: Int - move_id: Int - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_move: pokemon_v2_move - - """An object relationship""" - pokemon_v2_versiongroup: pokemon_v2_versiongroup - version_group_id: Int -} - -""" -aggregated selection of "pokemon_v2_moveflavortext" -""" -type pokemon_v2_moveflavortext_aggregate { - aggregate: pokemon_v2_moveflavortext_aggregate_fields - nodes: [pokemon_v2_moveflavortext!]! -} - -input pokemon_v2_moveflavortext_aggregate_bool_exp { - count: pokemon_v2_moveflavortext_aggregate_bool_exp_count -} - -input pokemon_v2_moveflavortext_aggregate_bool_exp_count { - arguments: [pokemon_v2_moveflavortext_select_column!] - distinct: Boolean - filter: pokemon_v2_moveflavortext_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_moveflavortext" -""" -type pokemon_v2_moveflavortext_aggregate_fields { - avg: pokemon_v2_moveflavortext_avg_fields - count(columns: [pokemon_v2_moveflavortext_select_column!], distinct: Boolean): Int! - max: pokemon_v2_moveflavortext_max_fields - min: pokemon_v2_moveflavortext_min_fields - stddev: pokemon_v2_moveflavortext_stddev_fields - stddev_pop: pokemon_v2_moveflavortext_stddev_pop_fields - stddev_samp: pokemon_v2_moveflavortext_stddev_samp_fields - sum: pokemon_v2_moveflavortext_sum_fields - var_pop: pokemon_v2_moveflavortext_var_pop_fields - var_samp: pokemon_v2_moveflavortext_var_samp_fields - variance: pokemon_v2_moveflavortext_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_moveflavortext" -""" -input pokemon_v2_moveflavortext_aggregate_order_by { - avg: pokemon_v2_moveflavortext_avg_order_by - count: order_by - max: pokemon_v2_moveflavortext_max_order_by - min: pokemon_v2_moveflavortext_min_order_by - stddev: pokemon_v2_moveflavortext_stddev_order_by - stddev_pop: pokemon_v2_moveflavortext_stddev_pop_order_by - stddev_samp: pokemon_v2_moveflavortext_stddev_samp_order_by - sum: pokemon_v2_moveflavortext_sum_order_by - var_pop: pokemon_v2_moveflavortext_var_pop_order_by - var_samp: pokemon_v2_moveflavortext_var_samp_order_by - variance: pokemon_v2_moveflavortext_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_moveflavortext_avg_fields { - id: Float - language_id: Float - move_id: Float - version_group_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_moveflavortext" -""" -input pokemon_v2_moveflavortext_avg_order_by { - id: order_by - language_id: order_by - move_id: order_by - version_group_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_moveflavortext". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_moveflavortext_bool_exp { - _and: [pokemon_v2_moveflavortext_bool_exp!] - _not: pokemon_v2_moveflavortext_bool_exp - _or: [pokemon_v2_moveflavortext_bool_exp!] - flavor_text: String_comparison_exp - id: Int_comparison_exp - language_id: Int_comparison_exp - move_id: Int_comparison_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_move: pokemon_v2_move_bool_exp - pokemon_v2_versiongroup: pokemon_v2_versiongroup_bool_exp - version_group_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_moveflavortext_max_fields { - flavor_text: String - id: Int - language_id: Int - move_id: Int - version_group_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_moveflavortext" -""" -input pokemon_v2_moveflavortext_max_order_by { - flavor_text: order_by - id: order_by - language_id: order_by - move_id: order_by - version_group_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_moveflavortext_min_fields { - flavor_text: String - id: Int - language_id: Int - move_id: Int - version_group_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_moveflavortext" -""" -input pokemon_v2_moveflavortext_min_order_by { - flavor_text: order_by - id: order_by - language_id: order_by - move_id: order_by - version_group_id: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_moveflavortext".""" -input pokemon_v2_moveflavortext_order_by { - flavor_text: order_by - id: order_by - language_id: order_by - move_id: order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_move: pokemon_v2_move_order_by - pokemon_v2_versiongroup: pokemon_v2_versiongroup_order_by - version_group_id: order_by -} - -""" -select columns of table "pokemon_v2_moveflavortext" -""" -enum pokemon_v2_moveflavortext_select_column { - """column name""" - flavor_text - - """column name""" - id - - """column name""" - language_id - - """column name""" - move_id - - """column name""" - version_group_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_moveflavortext_stddev_fields { - id: Float - language_id: Float - move_id: Float - version_group_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_moveflavortext" -""" -input pokemon_v2_moveflavortext_stddev_order_by { - id: order_by - language_id: order_by - move_id: order_by - version_group_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_moveflavortext_stddev_pop_fields { - id: Float - language_id: Float - move_id: Float - version_group_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_moveflavortext" -""" -input pokemon_v2_moveflavortext_stddev_pop_order_by { - id: order_by - language_id: order_by - move_id: order_by - version_group_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_moveflavortext_stddev_samp_fields { - id: Float - language_id: Float - move_id: Float - version_group_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_moveflavortext" -""" -input pokemon_v2_moveflavortext_stddev_samp_order_by { - id: order_by - language_id: order_by - move_id: order_by - version_group_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_moveflavortext" -""" -input pokemon_v2_moveflavortext_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_moveflavortext_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_moveflavortext_stream_cursor_value_input { - flavor_text: String - id: Int - language_id: Int - move_id: Int - version_group_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_moveflavortext_sum_fields { - id: Int - language_id: Int - move_id: Int - version_group_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_moveflavortext" -""" -input pokemon_v2_moveflavortext_sum_order_by { - id: order_by - language_id: order_by - move_id: order_by - version_group_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_moveflavortext_var_pop_fields { - id: Float - language_id: Float - move_id: Float - version_group_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_moveflavortext" -""" -input pokemon_v2_moveflavortext_var_pop_order_by { - id: order_by - language_id: order_by - move_id: order_by - version_group_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_moveflavortext_var_samp_fields { - id: Float - language_id: Float - move_id: Float - version_group_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_moveflavortext" -""" -input pokemon_v2_moveflavortext_var_samp_order_by { - id: order_by - language_id: order_by - move_id: order_by - version_group_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_moveflavortext_variance_fields { - id: Float - language_id: Float - move_id: Float - version_group_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_moveflavortext" -""" -input pokemon_v2_moveflavortext_variance_order_by { - id: order_by - language_id: order_by - move_id: order_by - version_group_id: order_by -} - -""" -columns and relationships of "pokemon_v2_movelearnmethod" -""" -type pokemon_v2_movelearnmethod { - id: Int! - name: String! - - """An array relationship""" - pokemon_v2_movelearnmethoddescriptions( - """distinct select on columns""" - distinct_on: [pokemon_v2_movelearnmethoddescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movelearnmethoddescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movelearnmethoddescription_bool_exp - ): [pokemon_v2_movelearnmethoddescription!]! - - """An aggregate relationship""" - pokemon_v2_movelearnmethoddescriptions_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movelearnmethoddescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movelearnmethoddescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movelearnmethoddescription_bool_exp - ): pokemon_v2_movelearnmethoddescription_aggregate! - - """An array relationship""" - pokemon_v2_movelearnmethodnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_movelearnmethodname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movelearnmethodname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movelearnmethodname_bool_exp - ): [pokemon_v2_movelearnmethodname!]! - - """An aggregate relationship""" - pokemon_v2_movelearnmethodnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movelearnmethodname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movelearnmethodname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movelearnmethodname_bool_exp - ): pokemon_v2_movelearnmethodname_aggregate! - - """An array relationship""" - pokemon_v2_pokemonmoves( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonmove_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonmove_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonmove_bool_exp - ): [pokemon_v2_pokemonmove!]! - - """An aggregate relationship""" - pokemon_v2_pokemonmoves_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonmove_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonmove_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonmove_bool_exp - ): pokemon_v2_pokemonmove_aggregate! - - """An array relationship""" - pokemon_v2_versiongroupmovelearnmethods( - """distinct select on columns""" - distinct_on: [pokemon_v2_versiongroupmovelearnmethod_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_versiongroupmovelearnmethod_order_by!] - - """filter the rows returned""" - where: pokemon_v2_versiongroupmovelearnmethod_bool_exp - ): [pokemon_v2_versiongroupmovelearnmethod!]! - - """An aggregate relationship""" - pokemon_v2_versiongroupmovelearnmethods_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_versiongroupmovelearnmethod_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_versiongroupmovelearnmethod_order_by!] - - """filter the rows returned""" - where: pokemon_v2_versiongroupmovelearnmethod_bool_exp - ): pokemon_v2_versiongroupmovelearnmethod_aggregate! -} - -""" -aggregated selection of "pokemon_v2_movelearnmethod" -""" -type pokemon_v2_movelearnmethod_aggregate { - aggregate: pokemon_v2_movelearnmethod_aggregate_fields - nodes: [pokemon_v2_movelearnmethod!]! -} - -""" -aggregate fields of "pokemon_v2_movelearnmethod" -""" -type pokemon_v2_movelearnmethod_aggregate_fields { - avg: pokemon_v2_movelearnmethod_avg_fields - count(columns: [pokemon_v2_movelearnmethod_select_column!], distinct: Boolean): Int! - max: pokemon_v2_movelearnmethod_max_fields - min: pokemon_v2_movelearnmethod_min_fields - stddev: pokemon_v2_movelearnmethod_stddev_fields - stddev_pop: pokemon_v2_movelearnmethod_stddev_pop_fields - stddev_samp: pokemon_v2_movelearnmethod_stddev_samp_fields - sum: pokemon_v2_movelearnmethod_sum_fields - var_pop: pokemon_v2_movelearnmethod_var_pop_fields - var_samp: pokemon_v2_movelearnmethod_var_samp_fields - variance: pokemon_v2_movelearnmethod_variance_fields -} - -"""aggregate avg on columns""" -type pokemon_v2_movelearnmethod_avg_fields { - id: Float -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_movelearnmethod". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_movelearnmethod_bool_exp { - _and: [pokemon_v2_movelearnmethod_bool_exp!] - _not: pokemon_v2_movelearnmethod_bool_exp - _or: [pokemon_v2_movelearnmethod_bool_exp!] - id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_movelearnmethoddescriptions: pokemon_v2_movelearnmethoddescription_bool_exp - pokemon_v2_movelearnmethoddescriptions_aggregate: pokemon_v2_movelearnmethoddescription_aggregate_bool_exp - pokemon_v2_movelearnmethodnames: pokemon_v2_movelearnmethodname_bool_exp - pokemon_v2_movelearnmethodnames_aggregate: pokemon_v2_movelearnmethodname_aggregate_bool_exp - pokemon_v2_pokemonmoves: pokemon_v2_pokemonmove_bool_exp - pokemon_v2_pokemonmoves_aggregate: pokemon_v2_pokemonmove_aggregate_bool_exp - pokemon_v2_versiongroupmovelearnmethods: pokemon_v2_versiongroupmovelearnmethod_bool_exp - pokemon_v2_versiongroupmovelearnmethods_aggregate: pokemon_v2_versiongroupmovelearnmethod_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_movelearnmethod_max_fields { - id: Int - name: String -} - -"""aggregate min on columns""" -type pokemon_v2_movelearnmethod_min_fields { - id: Int - name: String -} - -""" -Ordering options when selecting data from "pokemon_v2_movelearnmethod". -""" -input pokemon_v2_movelearnmethod_order_by { - id: order_by - name: order_by - pokemon_v2_movelearnmethoddescriptions_aggregate: pokemon_v2_movelearnmethoddescription_aggregate_order_by - pokemon_v2_movelearnmethodnames_aggregate: pokemon_v2_movelearnmethodname_aggregate_order_by - pokemon_v2_pokemonmoves_aggregate: pokemon_v2_pokemonmove_aggregate_order_by - pokemon_v2_versiongroupmovelearnmethods_aggregate: pokemon_v2_versiongroupmovelearnmethod_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_movelearnmethod" -""" -enum pokemon_v2_movelearnmethod_select_column { - """column name""" - id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_movelearnmethod_stddev_fields { - id: Float -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_movelearnmethod_stddev_pop_fields { - id: Float -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_movelearnmethod_stddev_samp_fields { - id: Float -} - -""" -Streaming cursor of the table "pokemon_v2_movelearnmethod" -""" -input pokemon_v2_movelearnmethod_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_movelearnmethod_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_movelearnmethod_stream_cursor_value_input { - id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_movelearnmethod_sum_fields { - id: Int -} - -"""aggregate var_pop on columns""" -type pokemon_v2_movelearnmethod_var_pop_fields { - id: Float -} - -"""aggregate var_samp on columns""" -type pokemon_v2_movelearnmethod_var_samp_fields { - id: Float -} - -"""aggregate variance on columns""" -type pokemon_v2_movelearnmethod_variance_fields { - id: Float -} - -""" -columns and relationships of "pokemon_v2_movelearnmethoddescription" -""" -type pokemon_v2_movelearnmethoddescription { - description: String! - id: Int! - language_id: Int - move_learn_method_id: Int - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_movelearnmethod: pokemon_v2_movelearnmethod -} - -""" -aggregated selection of "pokemon_v2_movelearnmethoddescription" -""" -type pokemon_v2_movelearnmethoddescription_aggregate { - aggregate: pokemon_v2_movelearnmethoddescription_aggregate_fields - nodes: [pokemon_v2_movelearnmethoddescription!]! -} - -input pokemon_v2_movelearnmethoddescription_aggregate_bool_exp { - count: pokemon_v2_movelearnmethoddescription_aggregate_bool_exp_count -} - -input pokemon_v2_movelearnmethoddescription_aggregate_bool_exp_count { - arguments: [pokemon_v2_movelearnmethoddescription_select_column!] - distinct: Boolean - filter: pokemon_v2_movelearnmethoddescription_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_movelearnmethoddescription" -""" -type pokemon_v2_movelearnmethoddescription_aggregate_fields { - avg: pokemon_v2_movelearnmethoddescription_avg_fields - count(columns: [pokemon_v2_movelearnmethoddescription_select_column!], distinct: Boolean): Int! - max: pokemon_v2_movelearnmethoddescription_max_fields - min: pokemon_v2_movelearnmethoddescription_min_fields - stddev: pokemon_v2_movelearnmethoddescription_stddev_fields - stddev_pop: pokemon_v2_movelearnmethoddescription_stddev_pop_fields - stddev_samp: pokemon_v2_movelearnmethoddescription_stddev_samp_fields - sum: pokemon_v2_movelearnmethoddescription_sum_fields - var_pop: pokemon_v2_movelearnmethoddescription_var_pop_fields - var_samp: pokemon_v2_movelearnmethoddescription_var_samp_fields - variance: pokemon_v2_movelearnmethoddescription_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_movelearnmethoddescription" -""" -input pokemon_v2_movelearnmethoddescription_aggregate_order_by { - avg: pokemon_v2_movelearnmethoddescription_avg_order_by - count: order_by - max: pokemon_v2_movelearnmethoddescription_max_order_by - min: pokemon_v2_movelearnmethoddescription_min_order_by - stddev: pokemon_v2_movelearnmethoddescription_stddev_order_by - stddev_pop: pokemon_v2_movelearnmethoddescription_stddev_pop_order_by - stddev_samp: pokemon_v2_movelearnmethoddescription_stddev_samp_order_by - sum: pokemon_v2_movelearnmethoddescription_sum_order_by - var_pop: pokemon_v2_movelearnmethoddescription_var_pop_order_by - var_samp: pokemon_v2_movelearnmethoddescription_var_samp_order_by - variance: pokemon_v2_movelearnmethoddescription_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_movelearnmethoddescription_avg_fields { - id: Float - language_id: Float - move_learn_method_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_movelearnmethoddescription" -""" -input pokemon_v2_movelearnmethoddescription_avg_order_by { - id: order_by - language_id: order_by - move_learn_method_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_movelearnmethoddescription". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_movelearnmethoddescription_bool_exp { - _and: [pokemon_v2_movelearnmethoddescription_bool_exp!] - _not: pokemon_v2_movelearnmethoddescription_bool_exp - _or: [pokemon_v2_movelearnmethoddescription_bool_exp!] - description: String_comparison_exp - id: Int_comparison_exp - language_id: Int_comparison_exp - move_learn_method_id: Int_comparison_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_movelearnmethod: pokemon_v2_movelearnmethod_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_movelearnmethoddescription_max_fields { - description: String - id: Int - language_id: Int - move_learn_method_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_movelearnmethoddescription" -""" -input pokemon_v2_movelearnmethoddescription_max_order_by { - description: order_by - id: order_by - language_id: order_by - move_learn_method_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_movelearnmethoddescription_min_fields { - description: String - id: Int - language_id: Int - move_learn_method_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_movelearnmethoddescription" -""" -input pokemon_v2_movelearnmethoddescription_min_order_by { - description: order_by - id: order_by - language_id: order_by - move_learn_method_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_movelearnmethoddescription". -""" -input pokemon_v2_movelearnmethoddescription_order_by { - description: order_by - id: order_by - language_id: order_by - move_learn_method_id: order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_movelearnmethod: pokemon_v2_movelearnmethod_order_by -} - -""" -select columns of table "pokemon_v2_movelearnmethoddescription" -""" -enum pokemon_v2_movelearnmethoddescription_select_column { - """column name""" - description - - """column name""" - id - - """column name""" - language_id - - """column name""" - move_learn_method_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_movelearnmethoddescription_stddev_fields { - id: Float - language_id: Float - move_learn_method_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_movelearnmethoddescription" -""" -input pokemon_v2_movelearnmethoddescription_stddev_order_by { - id: order_by - language_id: order_by - move_learn_method_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_movelearnmethoddescription_stddev_pop_fields { - id: Float - language_id: Float - move_learn_method_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_movelearnmethoddescription" -""" -input pokemon_v2_movelearnmethoddescription_stddev_pop_order_by { - id: order_by - language_id: order_by - move_learn_method_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_movelearnmethoddescription_stddev_samp_fields { - id: Float - language_id: Float - move_learn_method_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_movelearnmethoddescription" -""" -input pokemon_v2_movelearnmethoddescription_stddev_samp_order_by { - id: order_by - language_id: order_by - move_learn_method_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_movelearnmethoddescription" -""" -input pokemon_v2_movelearnmethoddescription_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_movelearnmethoddescription_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_movelearnmethoddescription_stream_cursor_value_input { - description: String - id: Int - language_id: Int - move_learn_method_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_movelearnmethoddescription_sum_fields { - id: Int - language_id: Int - move_learn_method_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_movelearnmethoddescription" -""" -input pokemon_v2_movelearnmethoddescription_sum_order_by { - id: order_by - language_id: order_by - move_learn_method_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_movelearnmethoddescription_var_pop_fields { - id: Float - language_id: Float - move_learn_method_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_movelearnmethoddescription" -""" -input pokemon_v2_movelearnmethoddescription_var_pop_order_by { - id: order_by - language_id: order_by - move_learn_method_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_movelearnmethoddescription_var_samp_fields { - id: Float - language_id: Float - move_learn_method_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_movelearnmethoddescription" -""" -input pokemon_v2_movelearnmethoddescription_var_samp_order_by { - id: order_by - language_id: order_by - move_learn_method_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_movelearnmethoddescription_variance_fields { - id: Float - language_id: Float - move_learn_method_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_movelearnmethoddescription" -""" -input pokemon_v2_movelearnmethoddescription_variance_order_by { - id: order_by - language_id: order_by - move_learn_method_id: order_by -} - -""" -columns and relationships of "pokemon_v2_movelearnmethodname" -""" -type pokemon_v2_movelearnmethodname { - id: Int! - language_id: Int - move_learn_method_id: Int - name: String! - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_movelearnmethod: pokemon_v2_movelearnmethod -} - -""" -aggregated selection of "pokemon_v2_movelearnmethodname" -""" -type pokemon_v2_movelearnmethodname_aggregate { - aggregate: pokemon_v2_movelearnmethodname_aggregate_fields - nodes: [pokemon_v2_movelearnmethodname!]! -} - -input pokemon_v2_movelearnmethodname_aggregate_bool_exp { - count: pokemon_v2_movelearnmethodname_aggregate_bool_exp_count -} - -input pokemon_v2_movelearnmethodname_aggregate_bool_exp_count { - arguments: [pokemon_v2_movelearnmethodname_select_column!] - distinct: Boolean - filter: pokemon_v2_movelearnmethodname_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_movelearnmethodname" -""" -type pokemon_v2_movelearnmethodname_aggregate_fields { - avg: pokemon_v2_movelearnmethodname_avg_fields - count(columns: [pokemon_v2_movelearnmethodname_select_column!], distinct: Boolean): Int! - max: pokemon_v2_movelearnmethodname_max_fields - min: pokemon_v2_movelearnmethodname_min_fields - stddev: pokemon_v2_movelearnmethodname_stddev_fields - stddev_pop: pokemon_v2_movelearnmethodname_stddev_pop_fields - stddev_samp: pokemon_v2_movelearnmethodname_stddev_samp_fields - sum: pokemon_v2_movelearnmethodname_sum_fields - var_pop: pokemon_v2_movelearnmethodname_var_pop_fields - var_samp: pokemon_v2_movelearnmethodname_var_samp_fields - variance: pokemon_v2_movelearnmethodname_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_movelearnmethodname" -""" -input pokemon_v2_movelearnmethodname_aggregate_order_by { - avg: pokemon_v2_movelearnmethodname_avg_order_by - count: order_by - max: pokemon_v2_movelearnmethodname_max_order_by - min: pokemon_v2_movelearnmethodname_min_order_by - stddev: pokemon_v2_movelearnmethodname_stddev_order_by - stddev_pop: pokemon_v2_movelearnmethodname_stddev_pop_order_by - stddev_samp: pokemon_v2_movelearnmethodname_stddev_samp_order_by - sum: pokemon_v2_movelearnmethodname_sum_order_by - var_pop: pokemon_v2_movelearnmethodname_var_pop_order_by - var_samp: pokemon_v2_movelearnmethodname_var_samp_order_by - variance: pokemon_v2_movelearnmethodname_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_movelearnmethodname_avg_fields { - id: Float - language_id: Float - move_learn_method_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_movelearnmethodname" -""" -input pokemon_v2_movelearnmethodname_avg_order_by { - id: order_by - language_id: order_by - move_learn_method_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_movelearnmethodname". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_movelearnmethodname_bool_exp { - _and: [pokemon_v2_movelearnmethodname_bool_exp!] - _not: pokemon_v2_movelearnmethodname_bool_exp - _or: [pokemon_v2_movelearnmethodname_bool_exp!] - id: Int_comparison_exp - language_id: Int_comparison_exp - move_learn_method_id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_movelearnmethod: pokemon_v2_movelearnmethod_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_movelearnmethodname_max_fields { - id: Int - language_id: Int - move_learn_method_id: Int - name: String -} - -""" -order by max() on columns of table "pokemon_v2_movelearnmethodname" -""" -input pokemon_v2_movelearnmethodname_max_order_by { - id: order_by - language_id: order_by - move_learn_method_id: order_by - name: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_movelearnmethodname_min_fields { - id: Int - language_id: Int - move_learn_method_id: Int - name: String -} - -""" -order by min() on columns of table "pokemon_v2_movelearnmethodname" -""" -input pokemon_v2_movelearnmethodname_min_order_by { - id: order_by - language_id: order_by - move_learn_method_id: order_by - name: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_movelearnmethodname". -""" -input pokemon_v2_movelearnmethodname_order_by { - id: order_by - language_id: order_by - move_learn_method_id: order_by - name: order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_movelearnmethod: pokemon_v2_movelearnmethod_order_by -} - -""" -select columns of table "pokemon_v2_movelearnmethodname" -""" -enum pokemon_v2_movelearnmethodname_select_column { - """column name""" - id - - """column name""" - language_id - - """column name""" - move_learn_method_id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_movelearnmethodname_stddev_fields { - id: Float - language_id: Float - move_learn_method_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_movelearnmethodname" -""" -input pokemon_v2_movelearnmethodname_stddev_order_by { - id: order_by - language_id: order_by - move_learn_method_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_movelearnmethodname_stddev_pop_fields { - id: Float - language_id: Float - move_learn_method_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_movelearnmethodname" -""" -input pokemon_v2_movelearnmethodname_stddev_pop_order_by { - id: order_by - language_id: order_by - move_learn_method_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_movelearnmethodname_stddev_samp_fields { - id: Float - language_id: Float - move_learn_method_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_movelearnmethodname" -""" -input pokemon_v2_movelearnmethodname_stddev_samp_order_by { - id: order_by - language_id: order_by - move_learn_method_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_movelearnmethodname" -""" -input pokemon_v2_movelearnmethodname_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_movelearnmethodname_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_movelearnmethodname_stream_cursor_value_input { - id: Int - language_id: Int - move_learn_method_id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_movelearnmethodname_sum_fields { - id: Int - language_id: Int - move_learn_method_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_movelearnmethodname" -""" -input pokemon_v2_movelearnmethodname_sum_order_by { - id: order_by - language_id: order_by - move_learn_method_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_movelearnmethodname_var_pop_fields { - id: Float - language_id: Float - move_learn_method_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_movelearnmethodname" -""" -input pokemon_v2_movelearnmethodname_var_pop_order_by { - id: order_by - language_id: order_by - move_learn_method_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_movelearnmethodname_var_samp_fields { - id: Float - language_id: Float - move_learn_method_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_movelearnmethodname" -""" -input pokemon_v2_movelearnmethodname_var_samp_order_by { - id: order_by - language_id: order_by - move_learn_method_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_movelearnmethodname_variance_fields { - id: Float - language_id: Float - move_learn_method_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_movelearnmethodname" -""" -input pokemon_v2_movelearnmethodname_variance_order_by { - id: order_by - language_id: order_by - move_learn_method_id: order_by -} - -""" -columns and relationships of "pokemon_v2_movemeta" -""" -type pokemon_v2_movemeta { - ailment_chance: Int - crit_rate: Int - drain: Int - flinch_chance: Int - healing: Int - id: Int! - max_hits: Int - max_turns: Int - min_hits: Int - min_turns: Int - move_id: Int! - move_meta_ailment_id: Int - move_meta_category_id: Int - - """An object relationship""" - pokemon_v2_move: pokemon_v2_move! - - """An object relationship""" - pokemon_v2_movemetaailment: pokemon_v2_movemetaailment - - """An object relationship""" - pokemon_v2_movemetacategory: pokemon_v2_movemetacategory - stat_chance: Int -} - -""" -aggregated selection of "pokemon_v2_movemeta" -""" -type pokemon_v2_movemeta_aggregate { - aggregate: pokemon_v2_movemeta_aggregate_fields - nodes: [pokemon_v2_movemeta!]! -} - -input pokemon_v2_movemeta_aggregate_bool_exp { - count: pokemon_v2_movemeta_aggregate_bool_exp_count -} - -input pokemon_v2_movemeta_aggregate_bool_exp_count { - arguments: [pokemon_v2_movemeta_select_column!] - distinct: Boolean - filter: pokemon_v2_movemeta_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_movemeta" -""" -type pokemon_v2_movemeta_aggregate_fields { - avg: pokemon_v2_movemeta_avg_fields - count(columns: [pokemon_v2_movemeta_select_column!], distinct: Boolean): Int! - max: pokemon_v2_movemeta_max_fields - min: pokemon_v2_movemeta_min_fields - stddev: pokemon_v2_movemeta_stddev_fields - stddev_pop: pokemon_v2_movemeta_stddev_pop_fields - stddev_samp: pokemon_v2_movemeta_stddev_samp_fields - sum: pokemon_v2_movemeta_sum_fields - var_pop: pokemon_v2_movemeta_var_pop_fields - var_samp: pokemon_v2_movemeta_var_samp_fields - variance: pokemon_v2_movemeta_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_movemeta" -""" -input pokemon_v2_movemeta_aggregate_order_by { - avg: pokemon_v2_movemeta_avg_order_by - count: order_by - max: pokemon_v2_movemeta_max_order_by - min: pokemon_v2_movemeta_min_order_by - stddev: pokemon_v2_movemeta_stddev_order_by - stddev_pop: pokemon_v2_movemeta_stddev_pop_order_by - stddev_samp: pokemon_v2_movemeta_stddev_samp_order_by - sum: pokemon_v2_movemeta_sum_order_by - var_pop: pokemon_v2_movemeta_var_pop_order_by - var_samp: pokemon_v2_movemeta_var_samp_order_by - variance: pokemon_v2_movemeta_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_movemeta_avg_fields { - ailment_chance: Float - crit_rate: Float - drain: Float - flinch_chance: Float - healing: Float - id: Float - max_hits: Float - max_turns: Float - min_hits: Float - min_turns: Float - move_id: Float - move_meta_ailment_id: Float - move_meta_category_id: Float - stat_chance: Float -} - -""" -order by avg() on columns of table "pokemon_v2_movemeta" -""" -input pokemon_v2_movemeta_avg_order_by { - ailment_chance: order_by - crit_rate: order_by - drain: order_by - flinch_chance: order_by - healing: order_by - id: order_by - max_hits: order_by - max_turns: order_by - min_hits: order_by - min_turns: order_by - move_id: order_by - move_meta_ailment_id: order_by - move_meta_category_id: order_by - stat_chance: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_movemeta". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_movemeta_bool_exp { - _and: [pokemon_v2_movemeta_bool_exp!] - _not: pokemon_v2_movemeta_bool_exp - _or: [pokemon_v2_movemeta_bool_exp!] - ailment_chance: Int_comparison_exp - crit_rate: Int_comparison_exp - drain: Int_comparison_exp - flinch_chance: Int_comparison_exp - healing: Int_comparison_exp - id: Int_comparison_exp - max_hits: Int_comparison_exp - max_turns: Int_comparison_exp - min_hits: Int_comparison_exp - min_turns: Int_comparison_exp - move_id: Int_comparison_exp - move_meta_ailment_id: Int_comparison_exp - move_meta_category_id: Int_comparison_exp - pokemon_v2_move: pokemon_v2_move_bool_exp - pokemon_v2_movemetaailment: pokemon_v2_movemetaailment_bool_exp - pokemon_v2_movemetacategory: pokemon_v2_movemetacategory_bool_exp - stat_chance: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_movemeta_max_fields { - ailment_chance: Int - crit_rate: Int - drain: Int - flinch_chance: Int - healing: Int - id: Int - max_hits: Int - max_turns: Int - min_hits: Int - min_turns: Int - move_id: Int - move_meta_ailment_id: Int - move_meta_category_id: Int - stat_chance: Int -} - -""" -order by max() on columns of table "pokemon_v2_movemeta" -""" -input pokemon_v2_movemeta_max_order_by { - ailment_chance: order_by - crit_rate: order_by - drain: order_by - flinch_chance: order_by - healing: order_by - id: order_by - max_hits: order_by - max_turns: order_by - min_hits: order_by - min_turns: order_by - move_id: order_by - move_meta_ailment_id: order_by - move_meta_category_id: order_by - stat_chance: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_movemeta_min_fields { - ailment_chance: Int - crit_rate: Int - drain: Int - flinch_chance: Int - healing: Int - id: Int - max_hits: Int - max_turns: Int - min_hits: Int - min_turns: Int - move_id: Int - move_meta_ailment_id: Int - move_meta_category_id: Int - stat_chance: Int -} - -""" -order by min() on columns of table "pokemon_v2_movemeta" -""" -input pokemon_v2_movemeta_min_order_by { - ailment_chance: order_by - crit_rate: order_by - drain: order_by - flinch_chance: order_by - healing: order_by - id: order_by - max_hits: order_by - max_turns: order_by - min_hits: order_by - min_turns: order_by - move_id: order_by - move_meta_ailment_id: order_by - move_meta_category_id: order_by - stat_chance: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_movemeta".""" -input pokemon_v2_movemeta_order_by { - ailment_chance: order_by - crit_rate: order_by - drain: order_by - flinch_chance: order_by - healing: order_by - id: order_by - max_hits: order_by - max_turns: order_by - min_hits: order_by - min_turns: order_by - move_id: order_by - move_meta_ailment_id: order_by - move_meta_category_id: order_by - pokemon_v2_move: pokemon_v2_move_order_by - pokemon_v2_movemetaailment: pokemon_v2_movemetaailment_order_by - pokemon_v2_movemetacategory: pokemon_v2_movemetacategory_order_by - stat_chance: order_by -} - -""" -select columns of table "pokemon_v2_movemeta" -""" -enum pokemon_v2_movemeta_select_column { - """column name""" - ailment_chance - - """column name""" - crit_rate - - """column name""" - drain - - """column name""" - flinch_chance - - """column name""" - healing - - """column name""" - id - - """column name""" - max_hits - - """column name""" - max_turns - - """column name""" - min_hits - - """column name""" - min_turns - - """column name""" - move_id - - """column name""" - move_meta_ailment_id - - """column name""" - move_meta_category_id - - """column name""" - stat_chance -} - -"""aggregate stddev on columns""" -type pokemon_v2_movemeta_stddev_fields { - ailment_chance: Float - crit_rate: Float - drain: Float - flinch_chance: Float - healing: Float - id: Float - max_hits: Float - max_turns: Float - min_hits: Float - min_turns: Float - move_id: Float - move_meta_ailment_id: Float - move_meta_category_id: Float - stat_chance: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_movemeta" -""" -input pokemon_v2_movemeta_stddev_order_by { - ailment_chance: order_by - crit_rate: order_by - drain: order_by - flinch_chance: order_by - healing: order_by - id: order_by - max_hits: order_by - max_turns: order_by - min_hits: order_by - min_turns: order_by - move_id: order_by - move_meta_ailment_id: order_by - move_meta_category_id: order_by - stat_chance: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_movemeta_stddev_pop_fields { - ailment_chance: Float - crit_rate: Float - drain: Float - flinch_chance: Float - healing: Float - id: Float - max_hits: Float - max_turns: Float - min_hits: Float - min_turns: Float - move_id: Float - move_meta_ailment_id: Float - move_meta_category_id: Float - stat_chance: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_movemeta" -""" -input pokemon_v2_movemeta_stddev_pop_order_by { - ailment_chance: order_by - crit_rate: order_by - drain: order_by - flinch_chance: order_by - healing: order_by - id: order_by - max_hits: order_by - max_turns: order_by - min_hits: order_by - min_turns: order_by - move_id: order_by - move_meta_ailment_id: order_by - move_meta_category_id: order_by - stat_chance: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_movemeta_stddev_samp_fields { - ailment_chance: Float - crit_rate: Float - drain: Float - flinch_chance: Float - healing: Float - id: Float - max_hits: Float - max_turns: Float - min_hits: Float - min_turns: Float - move_id: Float - move_meta_ailment_id: Float - move_meta_category_id: Float - stat_chance: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_movemeta" -""" -input pokemon_v2_movemeta_stddev_samp_order_by { - ailment_chance: order_by - crit_rate: order_by - drain: order_by - flinch_chance: order_by - healing: order_by - id: order_by - max_hits: order_by - max_turns: order_by - min_hits: order_by - min_turns: order_by - move_id: order_by - move_meta_ailment_id: order_by - move_meta_category_id: order_by - stat_chance: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_movemeta" -""" -input pokemon_v2_movemeta_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_movemeta_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_movemeta_stream_cursor_value_input { - ailment_chance: Int - crit_rate: Int - drain: Int - flinch_chance: Int - healing: Int - id: Int - max_hits: Int - max_turns: Int - min_hits: Int - min_turns: Int - move_id: Int - move_meta_ailment_id: Int - move_meta_category_id: Int - stat_chance: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_movemeta_sum_fields { - ailment_chance: Int - crit_rate: Int - drain: Int - flinch_chance: Int - healing: Int - id: Int - max_hits: Int - max_turns: Int - min_hits: Int - min_turns: Int - move_id: Int - move_meta_ailment_id: Int - move_meta_category_id: Int - stat_chance: Int -} - -""" -order by sum() on columns of table "pokemon_v2_movemeta" -""" -input pokemon_v2_movemeta_sum_order_by { - ailment_chance: order_by - crit_rate: order_by - drain: order_by - flinch_chance: order_by - healing: order_by - id: order_by - max_hits: order_by - max_turns: order_by - min_hits: order_by - min_turns: order_by - move_id: order_by - move_meta_ailment_id: order_by - move_meta_category_id: order_by - stat_chance: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_movemeta_var_pop_fields { - ailment_chance: Float - crit_rate: Float - drain: Float - flinch_chance: Float - healing: Float - id: Float - max_hits: Float - max_turns: Float - min_hits: Float - min_turns: Float - move_id: Float - move_meta_ailment_id: Float - move_meta_category_id: Float - stat_chance: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_movemeta" -""" -input pokemon_v2_movemeta_var_pop_order_by { - ailment_chance: order_by - crit_rate: order_by - drain: order_by - flinch_chance: order_by - healing: order_by - id: order_by - max_hits: order_by - max_turns: order_by - min_hits: order_by - min_turns: order_by - move_id: order_by - move_meta_ailment_id: order_by - move_meta_category_id: order_by - stat_chance: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_movemeta_var_samp_fields { - ailment_chance: Float - crit_rate: Float - drain: Float - flinch_chance: Float - healing: Float - id: Float - max_hits: Float - max_turns: Float - min_hits: Float - min_turns: Float - move_id: Float - move_meta_ailment_id: Float - move_meta_category_id: Float - stat_chance: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_movemeta" -""" -input pokemon_v2_movemeta_var_samp_order_by { - ailment_chance: order_by - crit_rate: order_by - drain: order_by - flinch_chance: order_by - healing: order_by - id: order_by - max_hits: order_by - max_turns: order_by - min_hits: order_by - min_turns: order_by - move_id: order_by - move_meta_ailment_id: order_by - move_meta_category_id: order_by - stat_chance: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_movemeta_variance_fields { - ailment_chance: Float - crit_rate: Float - drain: Float - flinch_chance: Float - healing: Float - id: Float - max_hits: Float - max_turns: Float - min_hits: Float - min_turns: Float - move_id: Float - move_meta_ailment_id: Float - move_meta_category_id: Float - stat_chance: Float -} - -""" -order by variance() on columns of table "pokemon_v2_movemeta" -""" -input pokemon_v2_movemeta_variance_order_by { - ailment_chance: order_by - crit_rate: order_by - drain: order_by - flinch_chance: order_by - healing: order_by - id: order_by - max_hits: order_by - max_turns: order_by - min_hits: order_by - min_turns: order_by - move_id: order_by - move_meta_ailment_id: order_by - move_meta_category_id: order_by - stat_chance: order_by -} - -""" -columns and relationships of "pokemon_v2_movemetaailment" -""" -type pokemon_v2_movemetaailment { - id: Int! - name: String! - - """An array relationship""" - pokemon_v2_movemeta( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemeta_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemeta_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemeta_bool_exp - ): [pokemon_v2_movemeta!]! - - """An aggregate relationship""" - pokemon_v2_movemeta_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemeta_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemeta_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemeta_bool_exp - ): pokemon_v2_movemeta_aggregate! - - """An array relationship""" - pokemon_v2_movemetaailmentnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemetaailmentname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemetaailmentname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemetaailmentname_bool_exp - ): [pokemon_v2_movemetaailmentname!]! - - """An aggregate relationship""" - pokemon_v2_movemetaailmentnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemetaailmentname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemetaailmentname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemetaailmentname_bool_exp - ): pokemon_v2_movemetaailmentname_aggregate! -} - -""" -aggregated selection of "pokemon_v2_movemetaailment" -""" -type pokemon_v2_movemetaailment_aggregate { - aggregate: pokemon_v2_movemetaailment_aggregate_fields - nodes: [pokemon_v2_movemetaailment!]! -} - -""" -aggregate fields of "pokemon_v2_movemetaailment" -""" -type pokemon_v2_movemetaailment_aggregate_fields { - avg: pokemon_v2_movemetaailment_avg_fields - count(columns: [pokemon_v2_movemetaailment_select_column!], distinct: Boolean): Int! - max: pokemon_v2_movemetaailment_max_fields - min: pokemon_v2_movemetaailment_min_fields - stddev: pokemon_v2_movemetaailment_stddev_fields - stddev_pop: pokemon_v2_movemetaailment_stddev_pop_fields - stddev_samp: pokemon_v2_movemetaailment_stddev_samp_fields - sum: pokemon_v2_movemetaailment_sum_fields - var_pop: pokemon_v2_movemetaailment_var_pop_fields - var_samp: pokemon_v2_movemetaailment_var_samp_fields - variance: pokemon_v2_movemetaailment_variance_fields -} - -"""aggregate avg on columns""" -type pokemon_v2_movemetaailment_avg_fields { - id: Float -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_movemetaailment". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_movemetaailment_bool_exp { - _and: [pokemon_v2_movemetaailment_bool_exp!] - _not: pokemon_v2_movemetaailment_bool_exp - _or: [pokemon_v2_movemetaailment_bool_exp!] - id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_movemeta: pokemon_v2_movemeta_bool_exp - pokemon_v2_movemeta_aggregate: pokemon_v2_movemeta_aggregate_bool_exp - pokemon_v2_movemetaailmentnames: pokemon_v2_movemetaailmentname_bool_exp - pokemon_v2_movemetaailmentnames_aggregate: pokemon_v2_movemetaailmentname_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_movemetaailment_max_fields { - id: Int - name: String -} - -"""aggregate min on columns""" -type pokemon_v2_movemetaailment_min_fields { - id: Int - name: String -} - -""" -Ordering options when selecting data from "pokemon_v2_movemetaailment". -""" -input pokemon_v2_movemetaailment_order_by { - id: order_by - name: order_by - pokemon_v2_movemeta_aggregate: pokemon_v2_movemeta_aggregate_order_by - pokemon_v2_movemetaailmentnames_aggregate: pokemon_v2_movemetaailmentname_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_movemetaailment" -""" -enum pokemon_v2_movemetaailment_select_column { - """column name""" - id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_movemetaailment_stddev_fields { - id: Float -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_movemetaailment_stddev_pop_fields { - id: Float -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_movemetaailment_stddev_samp_fields { - id: Float -} - -""" -Streaming cursor of the table "pokemon_v2_movemetaailment" -""" -input pokemon_v2_movemetaailment_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_movemetaailment_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_movemetaailment_stream_cursor_value_input { - id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_movemetaailment_sum_fields { - id: Int -} - -"""aggregate var_pop on columns""" -type pokemon_v2_movemetaailment_var_pop_fields { - id: Float -} - -"""aggregate var_samp on columns""" -type pokemon_v2_movemetaailment_var_samp_fields { - id: Float -} - -"""aggregate variance on columns""" -type pokemon_v2_movemetaailment_variance_fields { - id: Float -} - -""" -columns and relationships of "pokemon_v2_movemetaailmentname" -""" -type pokemon_v2_movemetaailmentname { - id: Int! - language_id: Int - move_meta_ailment_id: Int - name: String! - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_movemetaailment: pokemon_v2_movemetaailment -} - -""" -aggregated selection of "pokemon_v2_movemetaailmentname" -""" -type pokemon_v2_movemetaailmentname_aggregate { - aggregate: pokemon_v2_movemetaailmentname_aggregate_fields - nodes: [pokemon_v2_movemetaailmentname!]! -} - -input pokemon_v2_movemetaailmentname_aggregate_bool_exp { - count: pokemon_v2_movemetaailmentname_aggregate_bool_exp_count -} - -input pokemon_v2_movemetaailmentname_aggregate_bool_exp_count { - arguments: [pokemon_v2_movemetaailmentname_select_column!] - distinct: Boolean - filter: pokemon_v2_movemetaailmentname_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_movemetaailmentname" -""" -type pokemon_v2_movemetaailmentname_aggregate_fields { - avg: pokemon_v2_movemetaailmentname_avg_fields - count(columns: [pokemon_v2_movemetaailmentname_select_column!], distinct: Boolean): Int! - max: pokemon_v2_movemetaailmentname_max_fields - min: pokemon_v2_movemetaailmentname_min_fields - stddev: pokemon_v2_movemetaailmentname_stddev_fields - stddev_pop: pokemon_v2_movemetaailmentname_stddev_pop_fields - stddev_samp: pokemon_v2_movemetaailmentname_stddev_samp_fields - sum: pokemon_v2_movemetaailmentname_sum_fields - var_pop: pokemon_v2_movemetaailmentname_var_pop_fields - var_samp: pokemon_v2_movemetaailmentname_var_samp_fields - variance: pokemon_v2_movemetaailmentname_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_movemetaailmentname" -""" -input pokemon_v2_movemetaailmentname_aggregate_order_by { - avg: pokemon_v2_movemetaailmentname_avg_order_by - count: order_by - max: pokemon_v2_movemetaailmentname_max_order_by - min: pokemon_v2_movemetaailmentname_min_order_by - stddev: pokemon_v2_movemetaailmentname_stddev_order_by - stddev_pop: pokemon_v2_movemetaailmentname_stddev_pop_order_by - stddev_samp: pokemon_v2_movemetaailmentname_stddev_samp_order_by - sum: pokemon_v2_movemetaailmentname_sum_order_by - var_pop: pokemon_v2_movemetaailmentname_var_pop_order_by - var_samp: pokemon_v2_movemetaailmentname_var_samp_order_by - variance: pokemon_v2_movemetaailmentname_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_movemetaailmentname_avg_fields { - id: Float - language_id: Float - move_meta_ailment_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_movemetaailmentname" -""" -input pokemon_v2_movemetaailmentname_avg_order_by { - id: order_by - language_id: order_by - move_meta_ailment_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_movemetaailmentname". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_movemetaailmentname_bool_exp { - _and: [pokemon_v2_movemetaailmentname_bool_exp!] - _not: pokemon_v2_movemetaailmentname_bool_exp - _or: [pokemon_v2_movemetaailmentname_bool_exp!] - id: Int_comparison_exp - language_id: Int_comparison_exp - move_meta_ailment_id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_movemetaailment: pokemon_v2_movemetaailment_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_movemetaailmentname_max_fields { - id: Int - language_id: Int - move_meta_ailment_id: Int - name: String -} - -""" -order by max() on columns of table "pokemon_v2_movemetaailmentname" -""" -input pokemon_v2_movemetaailmentname_max_order_by { - id: order_by - language_id: order_by - move_meta_ailment_id: order_by - name: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_movemetaailmentname_min_fields { - id: Int - language_id: Int - move_meta_ailment_id: Int - name: String -} - -""" -order by min() on columns of table "pokemon_v2_movemetaailmentname" -""" -input pokemon_v2_movemetaailmentname_min_order_by { - id: order_by - language_id: order_by - move_meta_ailment_id: order_by - name: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_movemetaailmentname". -""" -input pokemon_v2_movemetaailmentname_order_by { - id: order_by - language_id: order_by - move_meta_ailment_id: order_by - name: order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_movemetaailment: pokemon_v2_movemetaailment_order_by -} - -""" -select columns of table "pokemon_v2_movemetaailmentname" -""" -enum pokemon_v2_movemetaailmentname_select_column { - """column name""" - id - - """column name""" - language_id - - """column name""" - move_meta_ailment_id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_movemetaailmentname_stddev_fields { - id: Float - language_id: Float - move_meta_ailment_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_movemetaailmentname" -""" -input pokemon_v2_movemetaailmentname_stddev_order_by { - id: order_by - language_id: order_by - move_meta_ailment_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_movemetaailmentname_stddev_pop_fields { - id: Float - language_id: Float - move_meta_ailment_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_movemetaailmentname" -""" -input pokemon_v2_movemetaailmentname_stddev_pop_order_by { - id: order_by - language_id: order_by - move_meta_ailment_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_movemetaailmentname_stddev_samp_fields { - id: Float - language_id: Float - move_meta_ailment_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_movemetaailmentname" -""" -input pokemon_v2_movemetaailmentname_stddev_samp_order_by { - id: order_by - language_id: order_by - move_meta_ailment_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_movemetaailmentname" -""" -input pokemon_v2_movemetaailmentname_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_movemetaailmentname_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_movemetaailmentname_stream_cursor_value_input { - id: Int - language_id: Int - move_meta_ailment_id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_movemetaailmentname_sum_fields { - id: Int - language_id: Int - move_meta_ailment_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_movemetaailmentname" -""" -input pokemon_v2_movemetaailmentname_sum_order_by { - id: order_by - language_id: order_by - move_meta_ailment_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_movemetaailmentname_var_pop_fields { - id: Float - language_id: Float - move_meta_ailment_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_movemetaailmentname" -""" -input pokemon_v2_movemetaailmentname_var_pop_order_by { - id: order_by - language_id: order_by - move_meta_ailment_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_movemetaailmentname_var_samp_fields { - id: Float - language_id: Float - move_meta_ailment_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_movemetaailmentname" -""" -input pokemon_v2_movemetaailmentname_var_samp_order_by { - id: order_by - language_id: order_by - move_meta_ailment_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_movemetaailmentname_variance_fields { - id: Float - language_id: Float - move_meta_ailment_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_movemetaailmentname" -""" -input pokemon_v2_movemetaailmentname_variance_order_by { - id: order_by - language_id: order_by - move_meta_ailment_id: order_by -} - -""" -columns and relationships of "pokemon_v2_movemetacategory" -""" -type pokemon_v2_movemetacategory { - id: Int! - name: String! - - """An array relationship""" - pokemon_v2_movemeta( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemeta_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemeta_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemeta_bool_exp - ): [pokemon_v2_movemeta!]! - - """An aggregate relationship""" - pokemon_v2_movemeta_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemeta_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemeta_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemeta_bool_exp - ): pokemon_v2_movemeta_aggregate! - - """An array relationship""" - pokemon_v2_movemetacategorydescriptions( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemetacategorydescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemetacategorydescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemetacategorydescription_bool_exp - ): [pokemon_v2_movemetacategorydescription!]! - - """An aggregate relationship""" - pokemon_v2_movemetacategorydescriptions_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemetacategorydescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemetacategorydescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemetacategorydescription_bool_exp - ): pokemon_v2_movemetacategorydescription_aggregate! -} - -""" -aggregated selection of "pokemon_v2_movemetacategory" -""" -type pokemon_v2_movemetacategory_aggregate { - aggregate: pokemon_v2_movemetacategory_aggregate_fields - nodes: [pokemon_v2_movemetacategory!]! -} - -""" -aggregate fields of "pokemon_v2_movemetacategory" -""" -type pokemon_v2_movemetacategory_aggregate_fields { - avg: pokemon_v2_movemetacategory_avg_fields - count(columns: [pokemon_v2_movemetacategory_select_column!], distinct: Boolean): Int! - max: pokemon_v2_movemetacategory_max_fields - min: pokemon_v2_movemetacategory_min_fields - stddev: pokemon_v2_movemetacategory_stddev_fields - stddev_pop: pokemon_v2_movemetacategory_stddev_pop_fields - stddev_samp: pokemon_v2_movemetacategory_stddev_samp_fields - sum: pokemon_v2_movemetacategory_sum_fields - var_pop: pokemon_v2_movemetacategory_var_pop_fields - var_samp: pokemon_v2_movemetacategory_var_samp_fields - variance: pokemon_v2_movemetacategory_variance_fields -} - -"""aggregate avg on columns""" -type pokemon_v2_movemetacategory_avg_fields { - id: Float -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_movemetacategory". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_movemetacategory_bool_exp { - _and: [pokemon_v2_movemetacategory_bool_exp!] - _not: pokemon_v2_movemetacategory_bool_exp - _or: [pokemon_v2_movemetacategory_bool_exp!] - id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_movemeta: pokemon_v2_movemeta_bool_exp - pokemon_v2_movemeta_aggregate: pokemon_v2_movemeta_aggregate_bool_exp - pokemon_v2_movemetacategorydescriptions: pokemon_v2_movemetacategorydescription_bool_exp - pokemon_v2_movemetacategorydescriptions_aggregate: pokemon_v2_movemetacategorydescription_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_movemetacategory_max_fields { - id: Int - name: String -} - -"""aggregate min on columns""" -type pokemon_v2_movemetacategory_min_fields { - id: Int - name: String -} - -""" -Ordering options when selecting data from "pokemon_v2_movemetacategory". -""" -input pokemon_v2_movemetacategory_order_by { - id: order_by - name: order_by - pokemon_v2_movemeta_aggregate: pokemon_v2_movemeta_aggregate_order_by - pokemon_v2_movemetacategorydescriptions_aggregate: pokemon_v2_movemetacategorydescription_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_movemetacategory" -""" -enum pokemon_v2_movemetacategory_select_column { - """column name""" - id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_movemetacategory_stddev_fields { - id: Float -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_movemetacategory_stddev_pop_fields { - id: Float -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_movemetacategory_stddev_samp_fields { - id: Float -} - -""" -Streaming cursor of the table "pokemon_v2_movemetacategory" -""" -input pokemon_v2_movemetacategory_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_movemetacategory_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_movemetacategory_stream_cursor_value_input { - id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_movemetacategory_sum_fields { - id: Int -} - -"""aggregate var_pop on columns""" -type pokemon_v2_movemetacategory_var_pop_fields { - id: Float -} - -"""aggregate var_samp on columns""" -type pokemon_v2_movemetacategory_var_samp_fields { - id: Float -} - -"""aggregate variance on columns""" -type pokemon_v2_movemetacategory_variance_fields { - id: Float -} - -""" -columns and relationships of "pokemon_v2_movemetacategorydescription" -""" -type pokemon_v2_movemetacategorydescription { - description: String! - id: Int! - language_id: Int - move_meta_category_id: Int - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_movemetacategory: pokemon_v2_movemetacategory -} - -""" -aggregated selection of "pokemon_v2_movemetacategorydescription" -""" -type pokemon_v2_movemetacategorydescription_aggregate { - aggregate: pokemon_v2_movemetacategorydescription_aggregate_fields - nodes: [pokemon_v2_movemetacategorydescription!]! -} - -input pokemon_v2_movemetacategorydescription_aggregate_bool_exp { - count: pokemon_v2_movemetacategorydescription_aggregate_bool_exp_count -} - -input pokemon_v2_movemetacategorydescription_aggregate_bool_exp_count { - arguments: [pokemon_v2_movemetacategorydescription_select_column!] - distinct: Boolean - filter: pokemon_v2_movemetacategorydescription_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_movemetacategorydescription" -""" -type pokemon_v2_movemetacategorydescription_aggregate_fields { - avg: pokemon_v2_movemetacategorydescription_avg_fields - count(columns: [pokemon_v2_movemetacategorydescription_select_column!], distinct: Boolean): Int! - max: pokemon_v2_movemetacategorydescription_max_fields - min: pokemon_v2_movemetacategorydescription_min_fields - stddev: pokemon_v2_movemetacategorydescription_stddev_fields - stddev_pop: pokemon_v2_movemetacategorydescription_stddev_pop_fields - stddev_samp: pokemon_v2_movemetacategorydescription_stddev_samp_fields - sum: pokemon_v2_movemetacategorydescription_sum_fields - var_pop: pokemon_v2_movemetacategorydescription_var_pop_fields - var_samp: pokemon_v2_movemetacategorydescription_var_samp_fields - variance: pokemon_v2_movemetacategorydescription_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_movemetacategorydescription" -""" -input pokemon_v2_movemetacategorydescription_aggregate_order_by { - avg: pokemon_v2_movemetacategorydescription_avg_order_by - count: order_by - max: pokemon_v2_movemetacategorydescription_max_order_by - min: pokemon_v2_movemetacategorydescription_min_order_by - stddev: pokemon_v2_movemetacategorydescription_stddev_order_by - stddev_pop: pokemon_v2_movemetacategorydescription_stddev_pop_order_by - stddev_samp: pokemon_v2_movemetacategorydescription_stddev_samp_order_by - sum: pokemon_v2_movemetacategorydescription_sum_order_by - var_pop: pokemon_v2_movemetacategorydescription_var_pop_order_by - var_samp: pokemon_v2_movemetacategorydescription_var_samp_order_by - variance: pokemon_v2_movemetacategorydescription_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_movemetacategorydescription_avg_fields { - id: Float - language_id: Float - move_meta_category_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_movemetacategorydescription" -""" -input pokemon_v2_movemetacategorydescription_avg_order_by { - id: order_by - language_id: order_by - move_meta_category_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_movemetacategorydescription". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_movemetacategorydescription_bool_exp { - _and: [pokemon_v2_movemetacategorydescription_bool_exp!] - _not: pokemon_v2_movemetacategorydescription_bool_exp - _or: [pokemon_v2_movemetacategorydescription_bool_exp!] - description: String_comparison_exp - id: Int_comparison_exp - language_id: Int_comparison_exp - move_meta_category_id: Int_comparison_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_movemetacategory: pokemon_v2_movemetacategory_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_movemetacategorydescription_max_fields { - description: String - id: Int - language_id: Int - move_meta_category_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_movemetacategorydescription" -""" -input pokemon_v2_movemetacategorydescription_max_order_by { - description: order_by - id: order_by - language_id: order_by - move_meta_category_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_movemetacategorydescription_min_fields { - description: String - id: Int - language_id: Int - move_meta_category_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_movemetacategorydescription" -""" -input pokemon_v2_movemetacategorydescription_min_order_by { - description: order_by - id: order_by - language_id: order_by - move_meta_category_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_movemetacategorydescription". -""" -input pokemon_v2_movemetacategorydescription_order_by { - description: order_by - id: order_by - language_id: order_by - move_meta_category_id: order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_movemetacategory: pokemon_v2_movemetacategory_order_by -} - -""" -select columns of table "pokemon_v2_movemetacategorydescription" -""" -enum pokemon_v2_movemetacategorydescription_select_column { - """column name""" - description - - """column name""" - id - - """column name""" - language_id - - """column name""" - move_meta_category_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_movemetacategorydescription_stddev_fields { - id: Float - language_id: Float - move_meta_category_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_movemetacategorydescription" -""" -input pokemon_v2_movemetacategorydescription_stddev_order_by { - id: order_by - language_id: order_by - move_meta_category_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_movemetacategorydescription_stddev_pop_fields { - id: Float - language_id: Float - move_meta_category_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_movemetacategorydescription" -""" -input pokemon_v2_movemetacategorydescription_stddev_pop_order_by { - id: order_by - language_id: order_by - move_meta_category_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_movemetacategorydescription_stddev_samp_fields { - id: Float - language_id: Float - move_meta_category_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_movemetacategorydescription" -""" -input pokemon_v2_movemetacategorydescription_stddev_samp_order_by { - id: order_by - language_id: order_by - move_meta_category_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_movemetacategorydescription" -""" -input pokemon_v2_movemetacategorydescription_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_movemetacategorydescription_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_movemetacategorydescription_stream_cursor_value_input { - description: String - id: Int - language_id: Int - move_meta_category_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_movemetacategorydescription_sum_fields { - id: Int - language_id: Int - move_meta_category_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_movemetacategorydescription" -""" -input pokemon_v2_movemetacategorydescription_sum_order_by { - id: order_by - language_id: order_by - move_meta_category_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_movemetacategorydescription_var_pop_fields { - id: Float - language_id: Float - move_meta_category_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_movemetacategorydescription" -""" -input pokemon_v2_movemetacategorydescription_var_pop_order_by { - id: order_by - language_id: order_by - move_meta_category_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_movemetacategorydescription_var_samp_fields { - id: Float - language_id: Float - move_meta_category_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_movemetacategorydescription" -""" -input pokemon_v2_movemetacategorydescription_var_samp_order_by { - id: order_by - language_id: order_by - move_meta_category_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_movemetacategorydescription_variance_fields { - id: Float - language_id: Float - move_meta_category_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_movemetacategorydescription" -""" -input pokemon_v2_movemetacategorydescription_variance_order_by { - id: order_by - language_id: order_by - move_meta_category_id: order_by -} - -""" -columns and relationships of "pokemon_v2_movemetastatchange" -""" -type pokemon_v2_movemetastatchange { - change: Int! - id: Int! - move_id: Int - - """An object relationship""" - pokemon_v2_move: pokemon_v2_move - - """An object relationship""" - pokemon_v2_stat: pokemon_v2_stat - stat_id: Int -} - -""" -aggregated selection of "pokemon_v2_movemetastatchange" -""" -type pokemon_v2_movemetastatchange_aggregate { - aggregate: pokemon_v2_movemetastatchange_aggregate_fields - nodes: [pokemon_v2_movemetastatchange!]! -} - -input pokemon_v2_movemetastatchange_aggregate_bool_exp { - count: pokemon_v2_movemetastatchange_aggregate_bool_exp_count -} - -input pokemon_v2_movemetastatchange_aggregate_bool_exp_count { - arguments: [pokemon_v2_movemetastatchange_select_column!] - distinct: Boolean - filter: pokemon_v2_movemetastatchange_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_movemetastatchange" -""" -type pokemon_v2_movemetastatchange_aggregate_fields { - avg: pokemon_v2_movemetastatchange_avg_fields - count(columns: [pokemon_v2_movemetastatchange_select_column!], distinct: Boolean): Int! - max: pokemon_v2_movemetastatchange_max_fields - min: pokemon_v2_movemetastatchange_min_fields - stddev: pokemon_v2_movemetastatchange_stddev_fields - stddev_pop: pokemon_v2_movemetastatchange_stddev_pop_fields - stddev_samp: pokemon_v2_movemetastatchange_stddev_samp_fields - sum: pokemon_v2_movemetastatchange_sum_fields - var_pop: pokemon_v2_movemetastatchange_var_pop_fields - var_samp: pokemon_v2_movemetastatchange_var_samp_fields - variance: pokemon_v2_movemetastatchange_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_movemetastatchange" -""" -input pokemon_v2_movemetastatchange_aggregate_order_by { - avg: pokemon_v2_movemetastatchange_avg_order_by - count: order_by - max: pokemon_v2_movemetastatchange_max_order_by - min: pokemon_v2_movemetastatchange_min_order_by - stddev: pokemon_v2_movemetastatchange_stddev_order_by - stddev_pop: pokemon_v2_movemetastatchange_stddev_pop_order_by - stddev_samp: pokemon_v2_movemetastatchange_stddev_samp_order_by - sum: pokemon_v2_movemetastatchange_sum_order_by - var_pop: pokemon_v2_movemetastatchange_var_pop_order_by - var_samp: pokemon_v2_movemetastatchange_var_samp_order_by - variance: pokemon_v2_movemetastatchange_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_movemetastatchange_avg_fields { - change: Float - id: Float - move_id: Float - stat_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_movemetastatchange" -""" -input pokemon_v2_movemetastatchange_avg_order_by { - change: order_by - id: order_by - move_id: order_by - stat_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_movemetastatchange". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_movemetastatchange_bool_exp { - _and: [pokemon_v2_movemetastatchange_bool_exp!] - _not: pokemon_v2_movemetastatchange_bool_exp - _or: [pokemon_v2_movemetastatchange_bool_exp!] - change: Int_comparison_exp - id: Int_comparison_exp - move_id: Int_comparison_exp - pokemon_v2_move: pokemon_v2_move_bool_exp - pokemon_v2_stat: pokemon_v2_stat_bool_exp - stat_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_movemetastatchange_max_fields { - change: Int - id: Int - move_id: Int - stat_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_movemetastatchange" -""" -input pokemon_v2_movemetastatchange_max_order_by { - change: order_by - id: order_by - move_id: order_by - stat_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_movemetastatchange_min_fields { - change: Int - id: Int - move_id: Int - stat_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_movemetastatchange" -""" -input pokemon_v2_movemetastatchange_min_order_by { - change: order_by - id: order_by - move_id: order_by - stat_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_movemetastatchange". -""" -input pokemon_v2_movemetastatchange_order_by { - change: order_by - id: order_by - move_id: order_by - pokemon_v2_move: pokemon_v2_move_order_by - pokemon_v2_stat: pokemon_v2_stat_order_by - stat_id: order_by -} - -""" -select columns of table "pokemon_v2_movemetastatchange" -""" -enum pokemon_v2_movemetastatchange_select_column { - """column name""" - change - - """column name""" - id - - """column name""" - move_id - - """column name""" - stat_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_movemetastatchange_stddev_fields { - change: Float - id: Float - move_id: Float - stat_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_movemetastatchange" -""" -input pokemon_v2_movemetastatchange_stddev_order_by { - change: order_by - id: order_by - move_id: order_by - stat_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_movemetastatchange_stddev_pop_fields { - change: Float - id: Float - move_id: Float - stat_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_movemetastatchange" -""" -input pokemon_v2_movemetastatchange_stddev_pop_order_by { - change: order_by - id: order_by - move_id: order_by - stat_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_movemetastatchange_stddev_samp_fields { - change: Float - id: Float - move_id: Float - stat_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_movemetastatchange" -""" -input pokemon_v2_movemetastatchange_stddev_samp_order_by { - change: order_by - id: order_by - move_id: order_by - stat_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_movemetastatchange" -""" -input pokemon_v2_movemetastatchange_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_movemetastatchange_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_movemetastatchange_stream_cursor_value_input { - change: Int - id: Int - move_id: Int - stat_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_movemetastatchange_sum_fields { - change: Int - id: Int - move_id: Int - stat_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_movemetastatchange" -""" -input pokemon_v2_movemetastatchange_sum_order_by { - change: order_by - id: order_by - move_id: order_by - stat_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_movemetastatchange_var_pop_fields { - change: Float - id: Float - move_id: Float - stat_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_movemetastatchange" -""" -input pokemon_v2_movemetastatchange_var_pop_order_by { - change: order_by - id: order_by - move_id: order_by - stat_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_movemetastatchange_var_samp_fields { - change: Float - id: Float - move_id: Float - stat_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_movemetastatchange" -""" -input pokemon_v2_movemetastatchange_var_samp_order_by { - change: order_by - id: order_by - move_id: order_by - stat_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_movemetastatchange_variance_fields { - change: Float - id: Float - move_id: Float - stat_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_movemetastatchange" -""" -input pokemon_v2_movemetastatchange_variance_order_by { - change: order_by - id: order_by - move_id: order_by - stat_id: order_by -} - -""" -columns and relationships of "pokemon_v2_movename" -""" -type pokemon_v2_movename { - id: Int! - language_id: Int - move_id: Int - name: String! - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_move: pokemon_v2_move -} - -""" -aggregated selection of "pokemon_v2_movename" -""" -type pokemon_v2_movename_aggregate { - aggregate: pokemon_v2_movename_aggregate_fields - nodes: [pokemon_v2_movename!]! -} - -input pokemon_v2_movename_aggregate_bool_exp { - count: pokemon_v2_movename_aggregate_bool_exp_count -} - -input pokemon_v2_movename_aggregate_bool_exp_count { - arguments: [pokemon_v2_movename_select_column!] - distinct: Boolean - filter: pokemon_v2_movename_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_movename" -""" -type pokemon_v2_movename_aggregate_fields { - avg: pokemon_v2_movename_avg_fields - count(columns: [pokemon_v2_movename_select_column!], distinct: Boolean): Int! - max: pokemon_v2_movename_max_fields - min: pokemon_v2_movename_min_fields - stddev: pokemon_v2_movename_stddev_fields - stddev_pop: pokemon_v2_movename_stddev_pop_fields - stddev_samp: pokemon_v2_movename_stddev_samp_fields - sum: pokemon_v2_movename_sum_fields - var_pop: pokemon_v2_movename_var_pop_fields - var_samp: pokemon_v2_movename_var_samp_fields - variance: pokemon_v2_movename_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_movename" -""" -input pokemon_v2_movename_aggregate_order_by { - avg: pokemon_v2_movename_avg_order_by - count: order_by - max: pokemon_v2_movename_max_order_by - min: pokemon_v2_movename_min_order_by - stddev: pokemon_v2_movename_stddev_order_by - stddev_pop: pokemon_v2_movename_stddev_pop_order_by - stddev_samp: pokemon_v2_movename_stddev_samp_order_by - sum: pokemon_v2_movename_sum_order_by - var_pop: pokemon_v2_movename_var_pop_order_by - var_samp: pokemon_v2_movename_var_samp_order_by - variance: pokemon_v2_movename_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_movename_avg_fields { - id: Float - language_id: Float - move_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_movename" -""" -input pokemon_v2_movename_avg_order_by { - id: order_by - language_id: order_by - move_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_movename". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_movename_bool_exp { - _and: [pokemon_v2_movename_bool_exp!] - _not: pokemon_v2_movename_bool_exp - _or: [pokemon_v2_movename_bool_exp!] - id: Int_comparison_exp - language_id: Int_comparison_exp - move_id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_move: pokemon_v2_move_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_movename_max_fields { - id: Int - language_id: Int - move_id: Int - name: String -} - -""" -order by max() on columns of table "pokemon_v2_movename" -""" -input pokemon_v2_movename_max_order_by { - id: order_by - language_id: order_by - move_id: order_by - name: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_movename_min_fields { - id: Int - language_id: Int - move_id: Int - name: String -} - -""" -order by min() on columns of table "pokemon_v2_movename" -""" -input pokemon_v2_movename_min_order_by { - id: order_by - language_id: order_by - move_id: order_by - name: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_movename".""" -input pokemon_v2_movename_order_by { - id: order_by - language_id: order_by - move_id: order_by - name: order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_move: pokemon_v2_move_order_by -} - -""" -select columns of table "pokemon_v2_movename" -""" -enum pokemon_v2_movename_select_column { - """column name""" - id - - """column name""" - language_id - - """column name""" - move_id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_movename_stddev_fields { - id: Float - language_id: Float - move_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_movename" -""" -input pokemon_v2_movename_stddev_order_by { - id: order_by - language_id: order_by - move_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_movename_stddev_pop_fields { - id: Float - language_id: Float - move_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_movename" -""" -input pokemon_v2_movename_stddev_pop_order_by { - id: order_by - language_id: order_by - move_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_movename_stddev_samp_fields { - id: Float - language_id: Float - move_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_movename" -""" -input pokemon_v2_movename_stddev_samp_order_by { - id: order_by - language_id: order_by - move_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_movename" -""" -input pokemon_v2_movename_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_movename_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_movename_stream_cursor_value_input { - id: Int - language_id: Int - move_id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_movename_sum_fields { - id: Int - language_id: Int - move_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_movename" -""" -input pokemon_v2_movename_sum_order_by { - id: order_by - language_id: order_by - move_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_movename_var_pop_fields { - id: Float - language_id: Float - move_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_movename" -""" -input pokemon_v2_movename_var_pop_order_by { - id: order_by - language_id: order_by - move_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_movename_var_samp_fields { - id: Float - language_id: Float - move_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_movename" -""" -input pokemon_v2_movename_var_samp_order_by { - id: order_by - language_id: order_by - move_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_movename_variance_fields { - id: Float - language_id: Float - move_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_movename" -""" -input pokemon_v2_movename_variance_order_by { - id: order_by - language_id: order_by - move_id: order_by -} - -""" -columns and relationships of "pokemon_v2_movetarget" -""" -type pokemon_v2_movetarget { - id: Int! - name: String! - - """An array relationship""" - pokemon_v2_moves( - """distinct select on columns""" - distinct_on: [pokemon_v2_move_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_move_order_by!] - - """filter the rows returned""" - where: pokemon_v2_move_bool_exp - ): [pokemon_v2_move!]! - - """An aggregate relationship""" - pokemon_v2_moves_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_move_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_move_order_by!] - - """filter the rows returned""" - where: pokemon_v2_move_bool_exp - ): pokemon_v2_move_aggregate! - - """An array relationship""" - pokemon_v2_movetargetdescriptions( - """distinct select on columns""" - distinct_on: [pokemon_v2_movetargetdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movetargetdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movetargetdescription_bool_exp - ): [pokemon_v2_movetargetdescription!]! - - """An aggregate relationship""" - pokemon_v2_movetargetdescriptions_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movetargetdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movetargetdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movetargetdescription_bool_exp - ): pokemon_v2_movetargetdescription_aggregate! - - """An array relationship""" - pokemon_v2_movetargetnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_movetargetname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movetargetname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movetargetname_bool_exp - ): [pokemon_v2_movetargetname!]! - - """An aggregate relationship""" - pokemon_v2_movetargetnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movetargetname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movetargetname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movetargetname_bool_exp - ): pokemon_v2_movetargetname_aggregate! -} - -""" -aggregated selection of "pokemon_v2_movetarget" -""" -type pokemon_v2_movetarget_aggregate { - aggregate: pokemon_v2_movetarget_aggregate_fields - nodes: [pokemon_v2_movetarget!]! -} - -""" -aggregate fields of "pokemon_v2_movetarget" -""" -type pokemon_v2_movetarget_aggregate_fields { - avg: pokemon_v2_movetarget_avg_fields - count(columns: [pokemon_v2_movetarget_select_column!], distinct: Boolean): Int! - max: pokemon_v2_movetarget_max_fields - min: pokemon_v2_movetarget_min_fields - stddev: pokemon_v2_movetarget_stddev_fields - stddev_pop: pokemon_v2_movetarget_stddev_pop_fields - stddev_samp: pokemon_v2_movetarget_stddev_samp_fields - sum: pokemon_v2_movetarget_sum_fields - var_pop: pokemon_v2_movetarget_var_pop_fields - var_samp: pokemon_v2_movetarget_var_samp_fields - variance: pokemon_v2_movetarget_variance_fields -} - -"""aggregate avg on columns""" -type pokemon_v2_movetarget_avg_fields { - id: Float -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_movetarget". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_movetarget_bool_exp { - _and: [pokemon_v2_movetarget_bool_exp!] - _not: pokemon_v2_movetarget_bool_exp - _or: [pokemon_v2_movetarget_bool_exp!] - id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_moves: pokemon_v2_move_bool_exp - pokemon_v2_moves_aggregate: pokemon_v2_move_aggregate_bool_exp - pokemon_v2_movetargetdescriptions: pokemon_v2_movetargetdescription_bool_exp - pokemon_v2_movetargetdescriptions_aggregate: pokemon_v2_movetargetdescription_aggregate_bool_exp - pokemon_v2_movetargetnames: pokemon_v2_movetargetname_bool_exp - pokemon_v2_movetargetnames_aggregate: pokemon_v2_movetargetname_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_movetarget_max_fields { - id: Int - name: String -} - -"""aggregate min on columns""" -type pokemon_v2_movetarget_min_fields { - id: Int - name: String -} - -"""Ordering options when selecting data from "pokemon_v2_movetarget".""" -input pokemon_v2_movetarget_order_by { - id: order_by - name: order_by - pokemon_v2_moves_aggregate: pokemon_v2_move_aggregate_order_by - pokemon_v2_movetargetdescriptions_aggregate: pokemon_v2_movetargetdescription_aggregate_order_by - pokemon_v2_movetargetnames_aggregate: pokemon_v2_movetargetname_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_movetarget" -""" -enum pokemon_v2_movetarget_select_column { - """column name""" - id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_movetarget_stddev_fields { - id: Float -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_movetarget_stddev_pop_fields { - id: Float -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_movetarget_stddev_samp_fields { - id: Float -} - -""" -Streaming cursor of the table "pokemon_v2_movetarget" -""" -input pokemon_v2_movetarget_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_movetarget_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_movetarget_stream_cursor_value_input { - id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_movetarget_sum_fields { - id: Int -} - -"""aggregate var_pop on columns""" -type pokemon_v2_movetarget_var_pop_fields { - id: Float -} - -"""aggregate var_samp on columns""" -type pokemon_v2_movetarget_var_samp_fields { - id: Float -} - -"""aggregate variance on columns""" -type pokemon_v2_movetarget_variance_fields { - id: Float -} - -""" -columns and relationships of "pokemon_v2_movetargetdescription" -""" -type pokemon_v2_movetargetdescription { - description: String! - id: Int! - language_id: Int - move_target_id: Int - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_movetarget: pokemon_v2_movetarget -} - -""" -aggregated selection of "pokemon_v2_movetargetdescription" -""" -type pokemon_v2_movetargetdescription_aggregate { - aggregate: pokemon_v2_movetargetdescription_aggregate_fields - nodes: [pokemon_v2_movetargetdescription!]! -} - -input pokemon_v2_movetargetdescription_aggregate_bool_exp { - count: pokemon_v2_movetargetdescription_aggregate_bool_exp_count -} - -input pokemon_v2_movetargetdescription_aggregate_bool_exp_count { - arguments: [pokemon_v2_movetargetdescription_select_column!] - distinct: Boolean - filter: pokemon_v2_movetargetdescription_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_movetargetdescription" -""" -type pokemon_v2_movetargetdescription_aggregate_fields { - avg: pokemon_v2_movetargetdescription_avg_fields - count(columns: [pokemon_v2_movetargetdescription_select_column!], distinct: Boolean): Int! - max: pokemon_v2_movetargetdescription_max_fields - min: pokemon_v2_movetargetdescription_min_fields - stddev: pokemon_v2_movetargetdescription_stddev_fields - stddev_pop: pokemon_v2_movetargetdescription_stddev_pop_fields - stddev_samp: pokemon_v2_movetargetdescription_stddev_samp_fields - sum: pokemon_v2_movetargetdescription_sum_fields - var_pop: pokemon_v2_movetargetdescription_var_pop_fields - var_samp: pokemon_v2_movetargetdescription_var_samp_fields - variance: pokemon_v2_movetargetdescription_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_movetargetdescription" -""" -input pokemon_v2_movetargetdescription_aggregate_order_by { - avg: pokemon_v2_movetargetdescription_avg_order_by - count: order_by - max: pokemon_v2_movetargetdescription_max_order_by - min: pokemon_v2_movetargetdescription_min_order_by - stddev: pokemon_v2_movetargetdescription_stddev_order_by - stddev_pop: pokemon_v2_movetargetdescription_stddev_pop_order_by - stddev_samp: pokemon_v2_movetargetdescription_stddev_samp_order_by - sum: pokemon_v2_movetargetdescription_sum_order_by - var_pop: pokemon_v2_movetargetdescription_var_pop_order_by - var_samp: pokemon_v2_movetargetdescription_var_samp_order_by - variance: pokemon_v2_movetargetdescription_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_movetargetdescription_avg_fields { - id: Float - language_id: Float - move_target_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_movetargetdescription" -""" -input pokemon_v2_movetargetdescription_avg_order_by { - id: order_by - language_id: order_by - move_target_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_movetargetdescription". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_movetargetdescription_bool_exp { - _and: [pokemon_v2_movetargetdescription_bool_exp!] - _not: pokemon_v2_movetargetdescription_bool_exp - _or: [pokemon_v2_movetargetdescription_bool_exp!] - description: String_comparison_exp - id: Int_comparison_exp - language_id: Int_comparison_exp - move_target_id: Int_comparison_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_movetarget: pokemon_v2_movetarget_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_movetargetdescription_max_fields { - description: String - id: Int - language_id: Int - move_target_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_movetargetdescription" -""" -input pokemon_v2_movetargetdescription_max_order_by { - description: order_by - id: order_by - language_id: order_by - move_target_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_movetargetdescription_min_fields { - description: String - id: Int - language_id: Int - move_target_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_movetargetdescription" -""" -input pokemon_v2_movetargetdescription_min_order_by { - description: order_by - id: order_by - language_id: order_by - move_target_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_movetargetdescription". -""" -input pokemon_v2_movetargetdescription_order_by { - description: order_by - id: order_by - language_id: order_by - move_target_id: order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_movetarget: pokemon_v2_movetarget_order_by -} - -""" -select columns of table "pokemon_v2_movetargetdescription" -""" -enum pokemon_v2_movetargetdescription_select_column { - """column name""" - description - - """column name""" - id - - """column name""" - language_id - - """column name""" - move_target_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_movetargetdescription_stddev_fields { - id: Float - language_id: Float - move_target_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_movetargetdescription" -""" -input pokemon_v2_movetargetdescription_stddev_order_by { - id: order_by - language_id: order_by - move_target_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_movetargetdescription_stddev_pop_fields { - id: Float - language_id: Float - move_target_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_movetargetdescription" -""" -input pokemon_v2_movetargetdescription_stddev_pop_order_by { - id: order_by - language_id: order_by - move_target_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_movetargetdescription_stddev_samp_fields { - id: Float - language_id: Float - move_target_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_movetargetdescription" -""" -input pokemon_v2_movetargetdescription_stddev_samp_order_by { - id: order_by - language_id: order_by - move_target_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_movetargetdescription" -""" -input pokemon_v2_movetargetdescription_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_movetargetdescription_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_movetargetdescription_stream_cursor_value_input { - description: String - id: Int - language_id: Int - move_target_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_movetargetdescription_sum_fields { - id: Int - language_id: Int - move_target_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_movetargetdescription" -""" -input pokemon_v2_movetargetdescription_sum_order_by { - id: order_by - language_id: order_by - move_target_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_movetargetdescription_var_pop_fields { - id: Float - language_id: Float - move_target_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_movetargetdescription" -""" -input pokemon_v2_movetargetdescription_var_pop_order_by { - id: order_by - language_id: order_by - move_target_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_movetargetdescription_var_samp_fields { - id: Float - language_id: Float - move_target_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_movetargetdescription" -""" -input pokemon_v2_movetargetdescription_var_samp_order_by { - id: order_by - language_id: order_by - move_target_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_movetargetdescription_variance_fields { - id: Float - language_id: Float - move_target_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_movetargetdescription" -""" -input pokemon_v2_movetargetdescription_variance_order_by { - id: order_by - language_id: order_by - move_target_id: order_by -} - -""" -columns and relationships of "pokemon_v2_movetargetname" -""" -type pokemon_v2_movetargetname { - id: Int! - language_id: Int - move_target_id: Int - name: String! - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_movetarget: pokemon_v2_movetarget -} - -""" -aggregated selection of "pokemon_v2_movetargetname" -""" -type pokemon_v2_movetargetname_aggregate { - aggregate: pokemon_v2_movetargetname_aggregate_fields - nodes: [pokemon_v2_movetargetname!]! -} - -input pokemon_v2_movetargetname_aggregate_bool_exp { - count: pokemon_v2_movetargetname_aggregate_bool_exp_count -} - -input pokemon_v2_movetargetname_aggregate_bool_exp_count { - arguments: [pokemon_v2_movetargetname_select_column!] - distinct: Boolean - filter: pokemon_v2_movetargetname_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_movetargetname" -""" -type pokemon_v2_movetargetname_aggregate_fields { - avg: pokemon_v2_movetargetname_avg_fields - count(columns: [pokemon_v2_movetargetname_select_column!], distinct: Boolean): Int! - max: pokemon_v2_movetargetname_max_fields - min: pokemon_v2_movetargetname_min_fields - stddev: pokemon_v2_movetargetname_stddev_fields - stddev_pop: pokemon_v2_movetargetname_stddev_pop_fields - stddev_samp: pokemon_v2_movetargetname_stddev_samp_fields - sum: pokemon_v2_movetargetname_sum_fields - var_pop: pokemon_v2_movetargetname_var_pop_fields - var_samp: pokemon_v2_movetargetname_var_samp_fields - variance: pokemon_v2_movetargetname_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_movetargetname" -""" -input pokemon_v2_movetargetname_aggregate_order_by { - avg: pokemon_v2_movetargetname_avg_order_by - count: order_by - max: pokemon_v2_movetargetname_max_order_by - min: pokemon_v2_movetargetname_min_order_by - stddev: pokemon_v2_movetargetname_stddev_order_by - stddev_pop: pokemon_v2_movetargetname_stddev_pop_order_by - stddev_samp: pokemon_v2_movetargetname_stddev_samp_order_by - sum: pokemon_v2_movetargetname_sum_order_by - var_pop: pokemon_v2_movetargetname_var_pop_order_by - var_samp: pokemon_v2_movetargetname_var_samp_order_by - variance: pokemon_v2_movetargetname_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_movetargetname_avg_fields { - id: Float - language_id: Float - move_target_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_movetargetname" -""" -input pokemon_v2_movetargetname_avg_order_by { - id: order_by - language_id: order_by - move_target_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_movetargetname". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_movetargetname_bool_exp { - _and: [pokemon_v2_movetargetname_bool_exp!] - _not: pokemon_v2_movetargetname_bool_exp - _or: [pokemon_v2_movetargetname_bool_exp!] - id: Int_comparison_exp - language_id: Int_comparison_exp - move_target_id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_movetarget: pokemon_v2_movetarget_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_movetargetname_max_fields { - id: Int - language_id: Int - move_target_id: Int - name: String -} - -""" -order by max() on columns of table "pokemon_v2_movetargetname" -""" -input pokemon_v2_movetargetname_max_order_by { - id: order_by - language_id: order_by - move_target_id: order_by - name: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_movetargetname_min_fields { - id: Int - language_id: Int - move_target_id: Int - name: String -} - -""" -order by min() on columns of table "pokemon_v2_movetargetname" -""" -input pokemon_v2_movetargetname_min_order_by { - id: order_by - language_id: order_by - move_target_id: order_by - name: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_movetargetname".""" -input pokemon_v2_movetargetname_order_by { - id: order_by - language_id: order_by - move_target_id: order_by - name: order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_movetarget: pokemon_v2_movetarget_order_by -} - -""" -select columns of table "pokemon_v2_movetargetname" -""" -enum pokemon_v2_movetargetname_select_column { - """column name""" - id - - """column name""" - language_id - - """column name""" - move_target_id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_movetargetname_stddev_fields { - id: Float - language_id: Float - move_target_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_movetargetname" -""" -input pokemon_v2_movetargetname_stddev_order_by { - id: order_by - language_id: order_by - move_target_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_movetargetname_stddev_pop_fields { - id: Float - language_id: Float - move_target_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_movetargetname" -""" -input pokemon_v2_movetargetname_stddev_pop_order_by { - id: order_by - language_id: order_by - move_target_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_movetargetname_stddev_samp_fields { - id: Float - language_id: Float - move_target_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_movetargetname" -""" -input pokemon_v2_movetargetname_stddev_samp_order_by { - id: order_by - language_id: order_by - move_target_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_movetargetname" -""" -input pokemon_v2_movetargetname_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_movetargetname_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_movetargetname_stream_cursor_value_input { - id: Int - language_id: Int - move_target_id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_movetargetname_sum_fields { - id: Int - language_id: Int - move_target_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_movetargetname" -""" -input pokemon_v2_movetargetname_sum_order_by { - id: order_by - language_id: order_by - move_target_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_movetargetname_var_pop_fields { - id: Float - language_id: Float - move_target_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_movetargetname" -""" -input pokemon_v2_movetargetname_var_pop_order_by { - id: order_by - language_id: order_by - move_target_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_movetargetname_var_samp_fields { - id: Float - language_id: Float - move_target_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_movetargetname" -""" -input pokemon_v2_movetargetname_var_samp_order_by { - id: order_by - language_id: order_by - move_target_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_movetargetname_variance_fields { - id: Float - language_id: Float - move_target_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_movetargetname" -""" -input pokemon_v2_movetargetname_variance_order_by { - id: order_by - language_id: order_by - move_target_id: order_by -} - -""" -columns and relationships of "pokemon_v2_nature" -""" -type pokemon_v2_nature { - decreased_stat_id: Int - game_index: Int! - hates_flavor_id: Int - id: Int! - increased_stat_id: Int - likes_flavor_id: Int - name: String! - - """An object relationship""" - pokemonV2BerryflavorByLikesFlavorId: pokemon_v2_berryflavor - - """An object relationship""" - pokemonV2StatByIncreasedStatId: pokemon_v2_stat - - """An object relationship""" - pokemon_v2_berryflavor: pokemon_v2_berryflavor - - """An array relationship""" - pokemon_v2_naturebattlestylepreferences( - """distinct select on columns""" - distinct_on: [pokemon_v2_naturebattlestylepreference_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_naturebattlestylepreference_order_by!] - - """filter the rows returned""" - where: pokemon_v2_naturebattlestylepreference_bool_exp - ): [pokemon_v2_naturebattlestylepreference!]! - - """An aggregate relationship""" - pokemon_v2_naturebattlestylepreferences_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_naturebattlestylepreference_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_naturebattlestylepreference_order_by!] - - """filter the rows returned""" - where: pokemon_v2_naturebattlestylepreference_bool_exp - ): pokemon_v2_naturebattlestylepreference_aggregate! - - """An array relationship""" - pokemon_v2_naturenames( - """distinct select on columns""" - distinct_on: [pokemon_v2_naturename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_naturename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_naturename_bool_exp - ): [pokemon_v2_naturename!]! - - """An aggregate relationship""" - pokemon_v2_naturenames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_naturename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_naturename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_naturename_bool_exp - ): pokemon_v2_naturename_aggregate! - - """An array relationship""" - pokemon_v2_naturepokeathlonstats( - """distinct select on columns""" - distinct_on: [pokemon_v2_naturepokeathlonstat_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_naturepokeathlonstat_order_by!] - - """filter the rows returned""" - where: pokemon_v2_naturepokeathlonstat_bool_exp - ): [pokemon_v2_naturepokeathlonstat!]! - - """An aggregate relationship""" - pokemon_v2_naturepokeathlonstats_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_naturepokeathlonstat_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_naturepokeathlonstat_order_by!] - - """filter the rows returned""" - where: pokemon_v2_naturepokeathlonstat_bool_exp - ): pokemon_v2_naturepokeathlonstat_aggregate! - - """An object relationship""" - pokemon_v2_stat: pokemon_v2_stat -} - -""" -aggregated selection of "pokemon_v2_nature" -""" -type pokemon_v2_nature_aggregate { - aggregate: pokemon_v2_nature_aggregate_fields - nodes: [pokemon_v2_nature!]! -} - -input pokemon_v2_nature_aggregate_bool_exp { - count: pokemon_v2_nature_aggregate_bool_exp_count -} - -input pokemon_v2_nature_aggregate_bool_exp_count { - arguments: [pokemon_v2_nature_select_column!] - distinct: Boolean - filter: pokemon_v2_nature_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_nature" -""" -type pokemon_v2_nature_aggregate_fields { - avg: pokemon_v2_nature_avg_fields - count(columns: [pokemon_v2_nature_select_column!], distinct: Boolean): Int! - max: pokemon_v2_nature_max_fields - min: pokemon_v2_nature_min_fields - stddev: pokemon_v2_nature_stddev_fields - stddev_pop: pokemon_v2_nature_stddev_pop_fields - stddev_samp: pokemon_v2_nature_stddev_samp_fields - sum: pokemon_v2_nature_sum_fields - var_pop: pokemon_v2_nature_var_pop_fields - var_samp: pokemon_v2_nature_var_samp_fields - variance: pokemon_v2_nature_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_nature" -""" -input pokemon_v2_nature_aggregate_order_by { - avg: pokemon_v2_nature_avg_order_by - count: order_by - max: pokemon_v2_nature_max_order_by - min: pokemon_v2_nature_min_order_by - stddev: pokemon_v2_nature_stddev_order_by - stddev_pop: pokemon_v2_nature_stddev_pop_order_by - stddev_samp: pokemon_v2_nature_stddev_samp_order_by - sum: pokemon_v2_nature_sum_order_by - var_pop: pokemon_v2_nature_var_pop_order_by - var_samp: pokemon_v2_nature_var_samp_order_by - variance: pokemon_v2_nature_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_nature_avg_fields { - decreased_stat_id: Float - game_index: Float - hates_flavor_id: Float - id: Float - increased_stat_id: Float - likes_flavor_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_nature" -""" -input pokemon_v2_nature_avg_order_by { - decreased_stat_id: order_by - game_index: order_by - hates_flavor_id: order_by - id: order_by - increased_stat_id: order_by - likes_flavor_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_nature". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_nature_bool_exp { - _and: [pokemon_v2_nature_bool_exp!] - _not: pokemon_v2_nature_bool_exp - _or: [pokemon_v2_nature_bool_exp!] - decreased_stat_id: Int_comparison_exp - game_index: Int_comparison_exp - hates_flavor_id: Int_comparison_exp - id: Int_comparison_exp - increased_stat_id: Int_comparison_exp - likes_flavor_id: Int_comparison_exp - name: String_comparison_exp - pokemonV2BerryflavorByLikesFlavorId: pokemon_v2_berryflavor_bool_exp - pokemonV2StatByIncreasedStatId: pokemon_v2_stat_bool_exp - pokemon_v2_berryflavor: pokemon_v2_berryflavor_bool_exp - pokemon_v2_naturebattlestylepreferences: pokemon_v2_naturebattlestylepreference_bool_exp - pokemon_v2_naturebattlestylepreferences_aggregate: pokemon_v2_naturebattlestylepreference_aggregate_bool_exp - pokemon_v2_naturenames: pokemon_v2_naturename_bool_exp - pokemon_v2_naturenames_aggregate: pokemon_v2_naturename_aggregate_bool_exp - pokemon_v2_naturepokeathlonstats: pokemon_v2_naturepokeathlonstat_bool_exp - pokemon_v2_naturepokeathlonstats_aggregate: pokemon_v2_naturepokeathlonstat_aggregate_bool_exp - pokemon_v2_stat: pokemon_v2_stat_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_nature_max_fields { - decreased_stat_id: Int - game_index: Int - hates_flavor_id: Int - id: Int - increased_stat_id: Int - likes_flavor_id: Int - name: String -} - -""" -order by max() on columns of table "pokemon_v2_nature" -""" -input pokemon_v2_nature_max_order_by { - decreased_stat_id: order_by - game_index: order_by - hates_flavor_id: order_by - id: order_by - increased_stat_id: order_by - likes_flavor_id: order_by - name: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_nature_min_fields { - decreased_stat_id: Int - game_index: Int - hates_flavor_id: Int - id: Int - increased_stat_id: Int - likes_flavor_id: Int - name: String -} - -""" -order by min() on columns of table "pokemon_v2_nature" -""" -input pokemon_v2_nature_min_order_by { - decreased_stat_id: order_by - game_index: order_by - hates_flavor_id: order_by - id: order_by - increased_stat_id: order_by - likes_flavor_id: order_by - name: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_nature".""" -input pokemon_v2_nature_order_by { - decreased_stat_id: order_by - game_index: order_by - hates_flavor_id: order_by - id: order_by - increased_stat_id: order_by - likes_flavor_id: order_by - name: order_by - pokemonV2BerryflavorByLikesFlavorId: pokemon_v2_berryflavor_order_by - pokemonV2StatByIncreasedStatId: pokemon_v2_stat_order_by - pokemon_v2_berryflavor: pokemon_v2_berryflavor_order_by - pokemon_v2_naturebattlestylepreferences_aggregate: pokemon_v2_naturebattlestylepreference_aggregate_order_by - pokemon_v2_naturenames_aggregate: pokemon_v2_naturename_aggregate_order_by - pokemon_v2_naturepokeathlonstats_aggregate: pokemon_v2_naturepokeathlonstat_aggregate_order_by - pokemon_v2_stat: pokemon_v2_stat_order_by -} - -""" -select columns of table "pokemon_v2_nature" -""" -enum pokemon_v2_nature_select_column { - """column name""" - decreased_stat_id - - """column name""" - game_index - - """column name""" - hates_flavor_id - - """column name""" - id - - """column name""" - increased_stat_id - - """column name""" - likes_flavor_id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_nature_stddev_fields { - decreased_stat_id: Float - game_index: Float - hates_flavor_id: Float - id: Float - increased_stat_id: Float - likes_flavor_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_nature" -""" -input pokemon_v2_nature_stddev_order_by { - decreased_stat_id: order_by - game_index: order_by - hates_flavor_id: order_by - id: order_by - increased_stat_id: order_by - likes_flavor_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_nature_stddev_pop_fields { - decreased_stat_id: Float - game_index: Float - hates_flavor_id: Float - id: Float - increased_stat_id: Float - likes_flavor_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_nature" -""" -input pokemon_v2_nature_stddev_pop_order_by { - decreased_stat_id: order_by - game_index: order_by - hates_flavor_id: order_by - id: order_by - increased_stat_id: order_by - likes_flavor_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_nature_stddev_samp_fields { - decreased_stat_id: Float - game_index: Float - hates_flavor_id: Float - id: Float - increased_stat_id: Float - likes_flavor_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_nature" -""" -input pokemon_v2_nature_stddev_samp_order_by { - decreased_stat_id: order_by - game_index: order_by - hates_flavor_id: order_by - id: order_by - increased_stat_id: order_by - likes_flavor_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_nature" -""" -input pokemon_v2_nature_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_nature_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_nature_stream_cursor_value_input { - decreased_stat_id: Int - game_index: Int - hates_flavor_id: Int - id: Int - increased_stat_id: Int - likes_flavor_id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_nature_sum_fields { - decreased_stat_id: Int - game_index: Int - hates_flavor_id: Int - id: Int - increased_stat_id: Int - likes_flavor_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_nature" -""" -input pokemon_v2_nature_sum_order_by { - decreased_stat_id: order_by - game_index: order_by - hates_flavor_id: order_by - id: order_by - increased_stat_id: order_by - likes_flavor_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_nature_var_pop_fields { - decreased_stat_id: Float - game_index: Float - hates_flavor_id: Float - id: Float - increased_stat_id: Float - likes_flavor_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_nature" -""" -input pokemon_v2_nature_var_pop_order_by { - decreased_stat_id: order_by - game_index: order_by - hates_flavor_id: order_by - id: order_by - increased_stat_id: order_by - likes_flavor_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_nature_var_samp_fields { - decreased_stat_id: Float - game_index: Float - hates_flavor_id: Float - id: Float - increased_stat_id: Float - likes_flavor_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_nature" -""" -input pokemon_v2_nature_var_samp_order_by { - decreased_stat_id: order_by - game_index: order_by - hates_flavor_id: order_by - id: order_by - increased_stat_id: order_by - likes_flavor_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_nature_variance_fields { - decreased_stat_id: Float - game_index: Float - hates_flavor_id: Float - id: Float - increased_stat_id: Float - likes_flavor_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_nature" -""" -input pokemon_v2_nature_variance_order_by { - decreased_stat_id: order_by - game_index: order_by - hates_flavor_id: order_by - id: order_by - increased_stat_id: order_by - likes_flavor_id: order_by -} - -""" -columns and relationships of "pokemon_v2_naturebattlestylepreference" -""" -type pokemon_v2_naturebattlestylepreference { - high_hp_preference: Int! - id: Int! - low_hp_preference: Int! - move_battle_style_id: Int - nature_id: Int - - """An object relationship""" - pokemon_v2_movebattlestyle: pokemon_v2_movebattlestyle - - """An object relationship""" - pokemon_v2_nature: pokemon_v2_nature -} - -""" -aggregated selection of "pokemon_v2_naturebattlestylepreference" -""" -type pokemon_v2_naturebattlestylepreference_aggregate { - aggregate: pokemon_v2_naturebattlestylepreference_aggregate_fields - nodes: [pokemon_v2_naturebattlestylepreference!]! -} - -input pokemon_v2_naturebattlestylepreference_aggregate_bool_exp { - count: pokemon_v2_naturebattlestylepreference_aggregate_bool_exp_count -} - -input pokemon_v2_naturebattlestylepreference_aggregate_bool_exp_count { - arguments: [pokemon_v2_naturebattlestylepreference_select_column!] - distinct: Boolean - filter: pokemon_v2_naturebattlestylepreference_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_naturebattlestylepreference" -""" -type pokemon_v2_naturebattlestylepreference_aggregate_fields { - avg: pokemon_v2_naturebattlestylepreference_avg_fields - count(columns: [pokemon_v2_naturebattlestylepreference_select_column!], distinct: Boolean): Int! - max: pokemon_v2_naturebattlestylepreference_max_fields - min: pokemon_v2_naturebattlestylepreference_min_fields - stddev: pokemon_v2_naturebattlestylepreference_stddev_fields - stddev_pop: pokemon_v2_naturebattlestylepreference_stddev_pop_fields - stddev_samp: pokemon_v2_naturebattlestylepreference_stddev_samp_fields - sum: pokemon_v2_naturebattlestylepreference_sum_fields - var_pop: pokemon_v2_naturebattlestylepreference_var_pop_fields - var_samp: pokemon_v2_naturebattlestylepreference_var_samp_fields - variance: pokemon_v2_naturebattlestylepreference_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_naturebattlestylepreference" -""" -input pokemon_v2_naturebattlestylepreference_aggregate_order_by { - avg: pokemon_v2_naturebattlestylepreference_avg_order_by - count: order_by - max: pokemon_v2_naturebattlestylepreference_max_order_by - min: pokemon_v2_naturebattlestylepreference_min_order_by - stddev: pokemon_v2_naturebattlestylepreference_stddev_order_by - stddev_pop: pokemon_v2_naturebattlestylepreference_stddev_pop_order_by - stddev_samp: pokemon_v2_naturebattlestylepreference_stddev_samp_order_by - sum: pokemon_v2_naturebattlestylepreference_sum_order_by - var_pop: pokemon_v2_naturebattlestylepreference_var_pop_order_by - var_samp: pokemon_v2_naturebattlestylepreference_var_samp_order_by - variance: pokemon_v2_naturebattlestylepreference_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_naturebattlestylepreference_avg_fields { - high_hp_preference: Float - id: Float - low_hp_preference: Float - move_battle_style_id: Float - nature_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_naturebattlestylepreference" -""" -input pokemon_v2_naturebattlestylepreference_avg_order_by { - high_hp_preference: order_by - id: order_by - low_hp_preference: order_by - move_battle_style_id: order_by - nature_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_naturebattlestylepreference". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_naturebattlestylepreference_bool_exp { - _and: [pokemon_v2_naturebattlestylepreference_bool_exp!] - _not: pokemon_v2_naturebattlestylepreference_bool_exp - _or: [pokemon_v2_naturebattlestylepreference_bool_exp!] - high_hp_preference: Int_comparison_exp - id: Int_comparison_exp - low_hp_preference: Int_comparison_exp - move_battle_style_id: Int_comparison_exp - nature_id: Int_comparison_exp - pokemon_v2_movebattlestyle: pokemon_v2_movebattlestyle_bool_exp - pokemon_v2_nature: pokemon_v2_nature_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_naturebattlestylepreference_max_fields { - high_hp_preference: Int - id: Int - low_hp_preference: Int - move_battle_style_id: Int - nature_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_naturebattlestylepreference" -""" -input pokemon_v2_naturebattlestylepreference_max_order_by { - high_hp_preference: order_by - id: order_by - low_hp_preference: order_by - move_battle_style_id: order_by - nature_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_naturebattlestylepreference_min_fields { - high_hp_preference: Int - id: Int - low_hp_preference: Int - move_battle_style_id: Int - nature_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_naturebattlestylepreference" -""" -input pokemon_v2_naturebattlestylepreference_min_order_by { - high_hp_preference: order_by - id: order_by - low_hp_preference: order_by - move_battle_style_id: order_by - nature_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_naturebattlestylepreference". -""" -input pokemon_v2_naturebattlestylepreference_order_by { - high_hp_preference: order_by - id: order_by - low_hp_preference: order_by - move_battle_style_id: order_by - nature_id: order_by - pokemon_v2_movebattlestyle: pokemon_v2_movebattlestyle_order_by - pokemon_v2_nature: pokemon_v2_nature_order_by -} - -""" -select columns of table "pokemon_v2_naturebattlestylepreference" -""" -enum pokemon_v2_naturebattlestylepreference_select_column { - """column name""" - high_hp_preference - - """column name""" - id - - """column name""" - low_hp_preference - - """column name""" - move_battle_style_id - - """column name""" - nature_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_naturebattlestylepreference_stddev_fields { - high_hp_preference: Float - id: Float - low_hp_preference: Float - move_battle_style_id: Float - nature_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_naturebattlestylepreference" -""" -input pokemon_v2_naturebattlestylepreference_stddev_order_by { - high_hp_preference: order_by - id: order_by - low_hp_preference: order_by - move_battle_style_id: order_by - nature_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_naturebattlestylepreference_stddev_pop_fields { - high_hp_preference: Float - id: Float - low_hp_preference: Float - move_battle_style_id: Float - nature_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_naturebattlestylepreference" -""" -input pokemon_v2_naturebattlestylepreference_stddev_pop_order_by { - high_hp_preference: order_by - id: order_by - low_hp_preference: order_by - move_battle_style_id: order_by - nature_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_naturebattlestylepreference_stddev_samp_fields { - high_hp_preference: Float - id: Float - low_hp_preference: Float - move_battle_style_id: Float - nature_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_naturebattlestylepreference" -""" -input pokemon_v2_naturebattlestylepreference_stddev_samp_order_by { - high_hp_preference: order_by - id: order_by - low_hp_preference: order_by - move_battle_style_id: order_by - nature_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_naturebattlestylepreference" -""" -input pokemon_v2_naturebattlestylepreference_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_naturebattlestylepreference_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_naturebattlestylepreference_stream_cursor_value_input { - high_hp_preference: Int - id: Int - low_hp_preference: Int - move_battle_style_id: Int - nature_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_naturebattlestylepreference_sum_fields { - high_hp_preference: Int - id: Int - low_hp_preference: Int - move_battle_style_id: Int - nature_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_naturebattlestylepreference" -""" -input pokemon_v2_naturebattlestylepreference_sum_order_by { - high_hp_preference: order_by - id: order_by - low_hp_preference: order_by - move_battle_style_id: order_by - nature_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_naturebattlestylepreference_var_pop_fields { - high_hp_preference: Float - id: Float - low_hp_preference: Float - move_battle_style_id: Float - nature_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_naturebattlestylepreference" -""" -input pokemon_v2_naturebattlestylepreference_var_pop_order_by { - high_hp_preference: order_by - id: order_by - low_hp_preference: order_by - move_battle_style_id: order_by - nature_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_naturebattlestylepreference_var_samp_fields { - high_hp_preference: Float - id: Float - low_hp_preference: Float - move_battle_style_id: Float - nature_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_naturebattlestylepreference" -""" -input pokemon_v2_naturebattlestylepreference_var_samp_order_by { - high_hp_preference: order_by - id: order_by - low_hp_preference: order_by - move_battle_style_id: order_by - nature_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_naturebattlestylepreference_variance_fields { - high_hp_preference: Float - id: Float - low_hp_preference: Float - move_battle_style_id: Float - nature_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_naturebattlestylepreference" -""" -input pokemon_v2_naturebattlestylepreference_variance_order_by { - high_hp_preference: order_by - id: order_by - low_hp_preference: order_by - move_battle_style_id: order_by - nature_id: order_by -} - -""" -columns and relationships of "pokemon_v2_naturename" -""" -type pokemon_v2_naturename { - id: Int! - language_id: Int - name: String! - nature_id: Int - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_nature: pokemon_v2_nature -} - -""" -aggregated selection of "pokemon_v2_naturename" -""" -type pokemon_v2_naturename_aggregate { - aggregate: pokemon_v2_naturename_aggregate_fields - nodes: [pokemon_v2_naturename!]! -} - -input pokemon_v2_naturename_aggregate_bool_exp { - count: pokemon_v2_naturename_aggregate_bool_exp_count -} - -input pokemon_v2_naturename_aggregate_bool_exp_count { - arguments: [pokemon_v2_naturename_select_column!] - distinct: Boolean - filter: pokemon_v2_naturename_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_naturename" -""" -type pokemon_v2_naturename_aggregate_fields { - avg: pokemon_v2_naturename_avg_fields - count(columns: [pokemon_v2_naturename_select_column!], distinct: Boolean): Int! - max: pokemon_v2_naturename_max_fields - min: pokemon_v2_naturename_min_fields - stddev: pokemon_v2_naturename_stddev_fields - stddev_pop: pokemon_v2_naturename_stddev_pop_fields - stddev_samp: pokemon_v2_naturename_stddev_samp_fields - sum: pokemon_v2_naturename_sum_fields - var_pop: pokemon_v2_naturename_var_pop_fields - var_samp: pokemon_v2_naturename_var_samp_fields - variance: pokemon_v2_naturename_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_naturename" -""" -input pokemon_v2_naturename_aggregate_order_by { - avg: pokemon_v2_naturename_avg_order_by - count: order_by - max: pokemon_v2_naturename_max_order_by - min: pokemon_v2_naturename_min_order_by - stddev: pokemon_v2_naturename_stddev_order_by - stddev_pop: pokemon_v2_naturename_stddev_pop_order_by - stddev_samp: pokemon_v2_naturename_stddev_samp_order_by - sum: pokemon_v2_naturename_sum_order_by - var_pop: pokemon_v2_naturename_var_pop_order_by - var_samp: pokemon_v2_naturename_var_samp_order_by - variance: pokemon_v2_naturename_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_naturename_avg_fields { - id: Float - language_id: Float - nature_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_naturename" -""" -input pokemon_v2_naturename_avg_order_by { - id: order_by - language_id: order_by - nature_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_naturename". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_naturename_bool_exp { - _and: [pokemon_v2_naturename_bool_exp!] - _not: pokemon_v2_naturename_bool_exp - _or: [pokemon_v2_naturename_bool_exp!] - id: Int_comparison_exp - language_id: Int_comparison_exp - name: String_comparison_exp - nature_id: Int_comparison_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_nature: pokemon_v2_nature_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_naturename_max_fields { - id: Int - language_id: Int - name: String - nature_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_naturename" -""" -input pokemon_v2_naturename_max_order_by { - id: order_by - language_id: order_by - name: order_by - nature_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_naturename_min_fields { - id: Int - language_id: Int - name: String - nature_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_naturename" -""" -input pokemon_v2_naturename_min_order_by { - id: order_by - language_id: order_by - name: order_by - nature_id: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_naturename".""" -input pokemon_v2_naturename_order_by { - id: order_by - language_id: order_by - name: order_by - nature_id: order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_nature: pokemon_v2_nature_order_by -} - -""" -select columns of table "pokemon_v2_naturename" -""" -enum pokemon_v2_naturename_select_column { - """column name""" - id - - """column name""" - language_id - - """column name""" - name - - """column name""" - nature_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_naturename_stddev_fields { - id: Float - language_id: Float - nature_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_naturename" -""" -input pokemon_v2_naturename_stddev_order_by { - id: order_by - language_id: order_by - nature_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_naturename_stddev_pop_fields { - id: Float - language_id: Float - nature_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_naturename" -""" -input pokemon_v2_naturename_stddev_pop_order_by { - id: order_by - language_id: order_by - nature_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_naturename_stddev_samp_fields { - id: Float - language_id: Float - nature_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_naturename" -""" -input pokemon_v2_naturename_stddev_samp_order_by { - id: order_by - language_id: order_by - nature_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_naturename" -""" -input pokemon_v2_naturename_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_naturename_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_naturename_stream_cursor_value_input { - id: Int - language_id: Int - name: String - nature_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_naturename_sum_fields { - id: Int - language_id: Int - nature_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_naturename" -""" -input pokemon_v2_naturename_sum_order_by { - id: order_by - language_id: order_by - nature_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_naturename_var_pop_fields { - id: Float - language_id: Float - nature_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_naturename" -""" -input pokemon_v2_naturename_var_pop_order_by { - id: order_by - language_id: order_by - nature_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_naturename_var_samp_fields { - id: Float - language_id: Float - nature_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_naturename" -""" -input pokemon_v2_naturename_var_samp_order_by { - id: order_by - language_id: order_by - nature_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_naturename_variance_fields { - id: Float - language_id: Float - nature_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_naturename" -""" -input pokemon_v2_naturename_variance_order_by { - id: order_by - language_id: order_by - nature_id: order_by -} - -""" -columns and relationships of "pokemon_v2_naturepokeathlonstat" -""" -type pokemon_v2_naturepokeathlonstat { - id: Int! - max_change: Int! - nature_id: Int - pokeathlon_stat_id: Int - - """An object relationship""" - pokemon_v2_nature: pokemon_v2_nature - - """An object relationship""" - pokemon_v2_pokeathlonstat: pokemon_v2_pokeathlonstat -} - -""" -aggregated selection of "pokemon_v2_naturepokeathlonstat" -""" -type pokemon_v2_naturepokeathlonstat_aggregate { - aggregate: pokemon_v2_naturepokeathlonstat_aggregate_fields - nodes: [pokemon_v2_naturepokeathlonstat!]! -} - -input pokemon_v2_naturepokeathlonstat_aggregate_bool_exp { - count: pokemon_v2_naturepokeathlonstat_aggregate_bool_exp_count -} - -input pokemon_v2_naturepokeathlonstat_aggregate_bool_exp_count { - arguments: [pokemon_v2_naturepokeathlonstat_select_column!] - distinct: Boolean - filter: pokemon_v2_naturepokeathlonstat_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_naturepokeathlonstat" -""" -type pokemon_v2_naturepokeathlonstat_aggregate_fields { - avg: pokemon_v2_naturepokeathlonstat_avg_fields - count(columns: [pokemon_v2_naturepokeathlonstat_select_column!], distinct: Boolean): Int! - max: pokemon_v2_naturepokeathlonstat_max_fields - min: pokemon_v2_naturepokeathlonstat_min_fields - stddev: pokemon_v2_naturepokeathlonstat_stddev_fields - stddev_pop: pokemon_v2_naturepokeathlonstat_stddev_pop_fields - stddev_samp: pokemon_v2_naturepokeathlonstat_stddev_samp_fields - sum: pokemon_v2_naturepokeathlonstat_sum_fields - var_pop: pokemon_v2_naturepokeathlonstat_var_pop_fields - var_samp: pokemon_v2_naturepokeathlonstat_var_samp_fields - variance: pokemon_v2_naturepokeathlonstat_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_naturepokeathlonstat" -""" -input pokemon_v2_naturepokeathlonstat_aggregate_order_by { - avg: pokemon_v2_naturepokeathlonstat_avg_order_by - count: order_by - max: pokemon_v2_naturepokeathlonstat_max_order_by - min: pokemon_v2_naturepokeathlonstat_min_order_by - stddev: pokemon_v2_naturepokeathlonstat_stddev_order_by - stddev_pop: pokemon_v2_naturepokeathlonstat_stddev_pop_order_by - stddev_samp: pokemon_v2_naturepokeathlonstat_stddev_samp_order_by - sum: pokemon_v2_naturepokeathlonstat_sum_order_by - var_pop: pokemon_v2_naturepokeathlonstat_var_pop_order_by - var_samp: pokemon_v2_naturepokeathlonstat_var_samp_order_by - variance: pokemon_v2_naturepokeathlonstat_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_naturepokeathlonstat_avg_fields { - id: Float - max_change: Float - nature_id: Float - pokeathlon_stat_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_naturepokeathlonstat" -""" -input pokemon_v2_naturepokeathlonstat_avg_order_by { - id: order_by - max_change: order_by - nature_id: order_by - pokeathlon_stat_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_naturepokeathlonstat". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_naturepokeathlonstat_bool_exp { - _and: [pokemon_v2_naturepokeathlonstat_bool_exp!] - _not: pokemon_v2_naturepokeathlonstat_bool_exp - _or: [pokemon_v2_naturepokeathlonstat_bool_exp!] - id: Int_comparison_exp - max_change: Int_comparison_exp - nature_id: Int_comparison_exp - pokeathlon_stat_id: Int_comparison_exp - pokemon_v2_nature: pokemon_v2_nature_bool_exp - pokemon_v2_pokeathlonstat: pokemon_v2_pokeathlonstat_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_naturepokeathlonstat_max_fields { - id: Int - max_change: Int - nature_id: Int - pokeathlon_stat_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_naturepokeathlonstat" -""" -input pokemon_v2_naturepokeathlonstat_max_order_by { - id: order_by - max_change: order_by - nature_id: order_by - pokeathlon_stat_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_naturepokeathlonstat_min_fields { - id: Int - max_change: Int - nature_id: Int - pokeathlon_stat_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_naturepokeathlonstat" -""" -input pokemon_v2_naturepokeathlonstat_min_order_by { - id: order_by - max_change: order_by - nature_id: order_by - pokeathlon_stat_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_naturepokeathlonstat". -""" -input pokemon_v2_naturepokeathlonstat_order_by { - id: order_by - max_change: order_by - nature_id: order_by - pokeathlon_stat_id: order_by - pokemon_v2_nature: pokemon_v2_nature_order_by - pokemon_v2_pokeathlonstat: pokemon_v2_pokeathlonstat_order_by -} - -""" -select columns of table "pokemon_v2_naturepokeathlonstat" -""" -enum pokemon_v2_naturepokeathlonstat_select_column { - """column name""" - id - - """column name""" - max_change - - """column name""" - nature_id - - """column name""" - pokeathlon_stat_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_naturepokeathlonstat_stddev_fields { - id: Float - max_change: Float - nature_id: Float - pokeathlon_stat_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_naturepokeathlonstat" -""" -input pokemon_v2_naturepokeathlonstat_stddev_order_by { - id: order_by - max_change: order_by - nature_id: order_by - pokeathlon_stat_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_naturepokeathlonstat_stddev_pop_fields { - id: Float - max_change: Float - nature_id: Float - pokeathlon_stat_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_naturepokeathlonstat" -""" -input pokemon_v2_naturepokeathlonstat_stddev_pop_order_by { - id: order_by - max_change: order_by - nature_id: order_by - pokeathlon_stat_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_naturepokeathlonstat_stddev_samp_fields { - id: Float - max_change: Float - nature_id: Float - pokeathlon_stat_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_naturepokeathlonstat" -""" -input pokemon_v2_naturepokeathlonstat_stddev_samp_order_by { - id: order_by - max_change: order_by - nature_id: order_by - pokeathlon_stat_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_naturepokeathlonstat" -""" -input pokemon_v2_naturepokeathlonstat_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_naturepokeathlonstat_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_naturepokeathlonstat_stream_cursor_value_input { - id: Int - max_change: Int - nature_id: Int - pokeathlon_stat_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_naturepokeathlonstat_sum_fields { - id: Int - max_change: Int - nature_id: Int - pokeathlon_stat_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_naturepokeathlonstat" -""" -input pokemon_v2_naturepokeathlonstat_sum_order_by { - id: order_by - max_change: order_by - nature_id: order_by - pokeathlon_stat_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_naturepokeathlonstat_var_pop_fields { - id: Float - max_change: Float - nature_id: Float - pokeathlon_stat_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_naturepokeathlonstat" -""" -input pokemon_v2_naturepokeathlonstat_var_pop_order_by { - id: order_by - max_change: order_by - nature_id: order_by - pokeathlon_stat_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_naturepokeathlonstat_var_samp_fields { - id: Float - max_change: Float - nature_id: Float - pokeathlon_stat_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_naturepokeathlonstat" -""" -input pokemon_v2_naturepokeathlonstat_var_samp_order_by { - id: order_by - max_change: order_by - nature_id: order_by - pokeathlon_stat_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_naturepokeathlonstat_variance_fields { - id: Float - max_change: Float - nature_id: Float - pokeathlon_stat_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_naturepokeathlonstat" -""" -input pokemon_v2_naturepokeathlonstat_variance_order_by { - id: order_by - max_change: order_by - nature_id: order_by - pokeathlon_stat_id: order_by -} - -""" -columns and relationships of "pokemon_v2_palpark" -""" -type pokemon_v2_palpark { - base_score: Int - id: Int! - pal_park_area_id: Int - pokemon_species_id: Int - - """An object relationship""" - pokemon_v2_palparkarea: pokemon_v2_palparkarea - - """An object relationship""" - pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies - rate: Int! -} - -""" -aggregated selection of "pokemon_v2_palpark" -""" -type pokemon_v2_palpark_aggregate { - aggregate: pokemon_v2_palpark_aggregate_fields - nodes: [pokemon_v2_palpark!]! -} - -input pokemon_v2_palpark_aggregate_bool_exp { - count: pokemon_v2_palpark_aggregate_bool_exp_count -} - -input pokemon_v2_palpark_aggregate_bool_exp_count { - arguments: [pokemon_v2_palpark_select_column!] - distinct: Boolean - filter: pokemon_v2_palpark_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_palpark" -""" -type pokemon_v2_palpark_aggregate_fields { - avg: pokemon_v2_palpark_avg_fields - count(columns: [pokemon_v2_palpark_select_column!], distinct: Boolean): Int! - max: pokemon_v2_palpark_max_fields - min: pokemon_v2_palpark_min_fields - stddev: pokemon_v2_palpark_stddev_fields - stddev_pop: pokemon_v2_palpark_stddev_pop_fields - stddev_samp: pokemon_v2_palpark_stddev_samp_fields - sum: pokemon_v2_palpark_sum_fields - var_pop: pokemon_v2_palpark_var_pop_fields - var_samp: pokemon_v2_palpark_var_samp_fields - variance: pokemon_v2_palpark_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_palpark" -""" -input pokemon_v2_palpark_aggregate_order_by { - avg: pokemon_v2_palpark_avg_order_by - count: order_by - max: pokemon_v2_palpark_max_order_by - min: pokemon_v2_palpark_min_order_by - stddev: pokemon_v2_palpark_stddev_order_by - stddev_pop: pokemon_v2_palpark_stddev_pop_order_by - stddev_samp: pokemon_v2_palpark_stddev_samp_order_by - sum: pokemon_v2_palpark_sum_order_by - var_pop: pokemon_v2_palpark_var_pop_order_by - var_samp: pokemon_v2_palpark_var_samp_order_by - variance: pokemon_v2_palpark_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_palpark_avg_fields { - base_score: Float - id: Float - pal_park_area_id: Float - pokemon_species_id: Float - rate: Float -} - -""" -order by avg() on columns of table "pokemon_v2_palpark" -""" -input pokemon_v2_palpark_avg_order_by { - base_score: order_by - id: order_by - pal_park_area_id: order_by - pokemon_species_id: order_by - rate: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_palpark". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_palpark_bool_exp { - _and: [pokemon_v2_palpark_bool_exp!] - _not: pokemon_v2_palpark_bool_exp - _or: [pokemon_v2_palpark_bool_exp!] - base_score: Int_comparison_exp - id: Int_comparison_exp - pal_park_area_id: Int_comparison_exp - pokemon_species_id: Int_comparison_exp - pokemon_v2_palparkarea: pokemon_v2_palparkarea_bool_exp - pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_bool_exp - rate: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_palpark_max_fields { - base_score: Int - id: Int - pal_park_area_id: Int - pokemon_species_id: Int - rate: Int -} - -""" -order by max() on columns of table "pokemon_v2_palpark" -""" -input pokemon_v2_palpark_max_order_by { - base_score: order_by - id: order_by - pal_park_area_id: order_by - pokemon_species_id: order_by - rate: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_palpark_min_fields { - base_score: Int - id: Int - pal_park_area_id: Int - pokemon_species_id: Int - rate: Int -} - -""" -order by min() on columns of table "pokemon_v2_palpark" -""" -input pokemon_v2_palpark_min_order_by { - base_score: order_by - id: order_by - pal_park_area_id: order_by - pokemon_species_id: order_by - rate: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_palpark".""" -input pokemon_v2_palpark_order_by { - base_score: order_by - id: order_by - pal_park_area_id: order_by - pokemon_species_id: order_by - pokemon_v2_palparkarea: pokemon_v2_palparkarea_order_by - pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_order_by - rate: order_by -} - -""" -select columns of table "pokemon_v2_palpark" -""" -enum pokemon_v2_palpark_select_column { - """column name""" - base_score - - """column name""" - id - - """column name""" - pal_park_area_id - - """column name""" - pokemon_species_id - - """column name""" - rate -} - -"""aggregate stddev on columns""" -type pokemon_v2_palpark_stddev_fields { - base_score: Float - id: Float - pal_park_area_id: Float - pokemon_species_id: Float - rate: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_palpark" -""" -input pokemon_v2_palpark_stddev_order_by { - base_score: order_by - id: order_by - pal_park_area_id: order_by - pokemon_species_id: order_by - rate: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_palpark_stddev_pop_fields { - base_score: Float - id: Float - pal_park_area_id: Float - pokemon_species_id: Float - rate: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_palpark" -""" -input pokemon_v2_palpark_stddev_pop_order_by { - base_score: order_by - id: order_by - pal_park_area_id: order_by - pokemon_species_id: order_by - rate: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_palpark_stddev_samp_fields { - base_score: Float - id: Float - pal_park_area_id: Float - pokemon_species_id: Float - rate: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_palpark" -""" -input pokemon_v2_palpark_stddev_samp_order_by { - base_score: order_by - id: order_by - pal_park_area_id: order_by - pokemon_species_id: order_by - rate: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_palpark" -""" -input pokemon_v2_palpark_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_palpark_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_palpark_stream_cursor_value_input { - base_score: Int - id: Int - pal_park_area_id: Int - pokemon_species_id: Int - rate: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_palpark_sum_fields { - base_score: Int - id: Int - pal_park_area_id: Int - pokemon_species_id: Int - rate: Int -} - -""" -order by sum() on columns of table "pokemon_v2_palpark" -""" -input pokemon_v2_palpark_sum_order_by { - base_score: order_by - id: order_by - pal_park_area_id: order_by - pokemon_species_id: order_by - rate: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_palpark_var_pop_fields { - base_score: Float - id: Float - pal_park_area_id: Float - pokemon_species_id: Float - rate: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_palpark" -""" -input pokemon_v2_palpark_var_pop_order_by { - base_score: order_by - id: order_by - pal_park_area_id: order_by - pokemon_species_id: order_by - rate: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_palpark_var_samp_fields { - base_score: Float - id: Float - pal_park_area_id: Float - pokemon_species_id: Float - rate: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_palpark" -""" -input pokemon_v2_palpark_var_samp_order_by { - base_score: order_by - id: order_by - pal_park_area_id: order_by - pokemon_species_id: order_by - rate: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_palpark_variance_fields { - base_score: Float - id: Float - pal_park_area_id: Float - pokemon_species_id: Float - rate: Float -} - -""" -order by variance() on columns of table "pokemon_v2_palpark" -""" -input pokemon_v2_palpark_variance_order_by { - base_score: order_by - id: order_by - pal_park_area_id: order_by - pokemon_species_id: order_by - rate: order_by -} - -""" -columns and relationships of "pokemon_v2_palparkarea" -""" -type pokemon_v2_palparkarea { - id: Int! - name: String! - - """An array relationship""" - pokemon_v2_palparkareanames( - """distinct select on columns""" - distinct_on: [pokemon_v2_palparkareaname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_palparkareaname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_palparkareaname_bool_exp - ): [pokemon_v2_palparkareaname!]! - - """An aggregate relationship""" - pokemon_v2_palparkareanames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_palparkareaname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_palparkareaname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_palparkareaname_bool_exp - ): pokemon_v2_palparkareaname_aggregate! - - """An array relationship""" - pokemon_v2_palparks( - """distinct select on columns""" - distinct_on: [pokemon_v2_palpark_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_palpark_order_by!] - - """filter the rows returned""" - where: pokemon_v2_palpark_bool_exp - ): [pokemon_v2_palpark!]! - - """An aggregate relationship""" - pokemon_v2_palparks_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_palpark_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_palpark_order_by!] - - """filter the rows returned""" - where: pokemon_v2_palpark_bool_exp - ): pokemon_v2_palpark_aggregate! -} - -""" -aggregated selection of "pokemon_v2_palparkarea" -""" -type pokemon_v2_palparkarea_aggregate { - aggregate: pokemon_v2_palparkarea_aggregate_fields - nodes: [pokemon_v2_palparkarea!]! -} - -""" -aggregate fields of "pokemon_v2_palparkarea" -""" -type pokemon_v2_palparkarea_aggregate_fields { - avg: pokemon_v2_palparkarea_avg_fields - count(columns: [pokemon_v2_palparkarea_select_column!], distinct: Boolean): Int! - max: pokemon_v2_palparkarea_max_fields - min: pokemon_v2_palparkarea_min_fields - stddev: pokemon_v2_palparkarea_stddev_fields - stddev_pop: pokemon_v2_palparkarea_stddev_pop_fields - stddev_samp: pokemon_v2_palparkarea_stddev_samp_fields - sum: pokemon_v2_palparkarea_sum_fields - var_pop: pokemon_v2_palparkarea_var_pop_fields - var_samp: pokemon_v2_palparkarea_var_samp_fields - variance: pokemon_v2_palparkarea_variance_fields -} - -"""aggregate avg on columns""" -type pokemon_v2_palparkarea_avg_fields { - id: Float -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_palparkarea". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_palparkarea_bool_exp { - _and: [pokemon_v2_palparkarea_bool_exp!] - _not: pokemon_v2_palparkarea_bool_exp - _or: [pokemon_v2_palparkarea_bool_exp!] - id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_palparkareanames: pokemon_v2_palparkareaname_bool_exp - pokemon_v2_palparkareanames_aggregate: pokemon_v2_palparkareaname_aggregate_bool_exp - pokemon_v2_palparks: pokemon_v2_palpark_bool_exp - pokemon_v2_palparks_aggregate: pokemon_v2_palpark_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_palparkarea_max_fields { - id: Int - name: String -} - -"""aggregate min on columns""" -type pokemon_v2_palparkarea_min_fields { - id: Int - name: String -} - -"""Ordering options when selecting data from "pokemon_v2_palparkarea".""" -input pokemon_v2_palparkarea_order_by { - id: order_by - name: order_by - pokemon_v2_palparkareanames_aggregate: pokemon_v2_palparkareaname_aggregate_order_by - pokemon_v2_palparks_aggregate: pokemon_v2_palpark_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_palparkarea" -""" -enum pokemon_v2_palparkarea_select_column { - """column name""" - id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_palparkarea_stddev_fields { - id: Float -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_palparkarea_stddev_pop_fields { - id: Float -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_palparkarea_stddev_samp_fields { - id: Float -} - -""" -Streaming cursor of the table "pokemon_v2_palparkarea" -""" -input pokemon_v2_palparkarea_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_palparkarea_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_palparkarea_stream_cursor_value_input { - id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_palparkarea_sum_fields { - id: Int -} - -"""aggregate var_pop on columns""" -type pokemon_v2_palparkarea_var_pop_fields { - id: Float -} - -"""aggregate var_samp on columns""" -type pokemon_v2_palparkarea_var_samp_fields { - id: Float -} - -"""aggregate variance on columns""" -type pokemon_v2_palparkarea_variance_fields { - id: Float -} - -""" -columns and relationships of "pokemon_v2_palparkareaname" -""" -type pokemon_v2_palparkareaname { - id: Int! - language_id: Int - name: String! - pal_park_area_id: Int - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_palparkarea: pokemon_v2_palparkarea -} - -""" -aggregated selection of "pokemon_v2_palparkareaname" -""" -type pokemon_v2_palparkareaname_aggregate { - aggregate: pokemon_v2_palparkareaname_aggregate_fields - nodes: [pokemon_v2_palparkareaname!]! -} - -input pokemon_v2_palparkareaname_aggregate_bool_exp { - count: pokemon_v2_palparkareaname_aggregate_bool_exp_count -} - -input pokemon_v2_palparkareaname_aggregate_bool_exp_count { - arguments: [pokemon_v2_palparkareaname_select_column!] - distinct: Boolean - filter: pokemon_v2_palparkareaname_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_palparkareaname" -""" -type pokemon_v2_palparkareaname_aggregate_fields { - avg: pokemon_v2_palparkareaname_avg_fields - count(columns: [pokemon_v2_palparkareaname_select_column!], distinct: Boolean): Int! - max: pokemon_v2_palparkareaname_max_fields - min: pokemon_v2_palparkareaname_min_fields - stddev: pokemon_v2_palparkareaname_stddev_fields - stddev_pop: pokemon_v2_palparkareaname_stddev_pop_fields - stddev_samp: pokemon_v2_palparkareaname_stddev_samp_fields - sum: pokemon_v2_palparkareaname_sum_fields - var_pop: pokemon_v2_palparkareaname_var_pop_fields - var_samp: pokemon_v2_palparkareaname_var_samp_fields - variance: pokemon_v2_palparkareaname_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_palparkareaname" -""" -input pokemon_v2_palparkareaname_aggregate_order_by { - avg: pokemon_v2_palparkareaname_avg_order_by - count: order_by - max: pokemon_v2_palparkareaname_max_order_by - min: pokemon_v2_palparkareaname_min_order_by - stddev: pokemon_v2_palparkareaname_stddev_order_by - stddev_pop: pokemon_v2_palparkareaname_stddev_pop_order_by - stddev_samp: pokemon_v2_palparkareaname_stddev_samp_order_by - sum: pokemon_v2_palparkareaname_sum_order_by - var_pop: pokemon_v2_palparkareaname_var_pop_order_by - var_samp: pokemon_v2_palparkareaname_var_samp_order_by - variance: pokemon_v2_palparkareaname_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_palparkareaname_avg_fields { - id: Float - language_id: Float - pal_park_area_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_palparkareaname" -""" -input pokemon_v2_palparkareaname_avg_order_by { - id: order_by - language_id: order_by - pal_park_area_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_palparkareaname". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_palparkareaname_bool_exp { - _and: [pokemon_v2_palparkareaname_bool_exp!] - _not: pokemon_v2_palparkareaname_bool_exp - _or: [pokemon_v2_palparkareaname_bool_exp!] - id: Int_comparison_exp - language_id: Int_comparison_exp - name: String_comparison_exp - pal_park_area_id: Int_comparison_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_palparkarea: pokemon_v2_palparkarea_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_palparkareaname_max_fields { - id: Int - language_id: Int - name: String - pal_park_area_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_palparkareaname" -""" -input pokemon_v2_palparkareaname_max_order_by { - id: order_by - language_id: order_by - name: order_by - pal_park_area_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_palparkareaname_min_fields { - id: Int - language_id: Int - name: String - pal_park_area_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_palparkareaname" -""" -input pokemon_v2_palparkareaname_min_order_by { - id: order_by - language_id: order_by - name: order_by - pal_park_area_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_palparkareaname". -""" -input pokemon_v2_palparkareaname_order_by { - id: order_by - language_id: order_by - name: order_by - pal_park_area_id: order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_palparkarea: pokemon_v2_palparkarea_order_by -} - -""" -select columns of table "pokemon_v2_palparkareaname" -""" -enum pokemon_v2_palparkareaname_select_column { - """column name""" - id - - """column name""" - language_id - - """column name""" - name - - """column name""" - pal_park_area_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_palparkareaname_stddev_fields { - id: Float - language_id: Float - pal_park_area_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_palparkareaname" -""" -input pokemon_v2_palparkareaname_stddev_order_by { - id: order_by - language_id: order_by - pal_park_area_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_palparkareaname_stddev_pop_fields { - id: Float - language_id: Float - pal_park_area_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_palparkareaname" -""" -input pokemon_v2_palparkareaname_stddev_pop_order_by { - id: order_by - language_id: order_by - pal_park_area_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_palparkareaname_stddev_samp_fields { - id: Float - language_id: Float - pal_park_area_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_palparkareaname" -""" -input pokemon_v2_palparkareaname_stddev_samp_order_by { - id: order_by - language_id: order_by - pal_park_area_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_palparkareaname" -""" -input pokemon_v2_palparkareaname_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_palparkareaname_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_palparkareaname_stream_cursor_value_input { - id: Int - language_id: Int - name: String - pal_park_area_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_palparkareaname_sum_fields { - id: Int - language_id: Int - pal_park_area_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_palparkareaname" -""" -input pokemon_v2_palparkareaname_sum_order_by { - id: order_by - language_id: order_by - pal_park_area_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_palparkareaname_var_pop_fields { - id: Float - language_id: Float - pal_park_area_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_palparkareaname" -""" -input pokemon_v2_palparkareaname_var_pop_order_by { - id: order_by - language_id: order_by - pal_park_area_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_palparkareaname_var_samp_fields { - id: Float - language_id: Float - pal_park_area_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_palparkareaname" -""" -input pokemon_v2_palparkareaname_var_samp_order_by { - id: order_by - language_id: order_by - pal_park_area_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_palparkareaname_variance_fields { - id: Float - language_id: Float - pal_park_area_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_palparkareaname" -""" -input pokemon_v2_palparkareaname_variance_order_by { - id: order_by - language_id: order_by - pal_park_area_id: order_by -} - -""" -columns and relationships of "pokemon_v2_pokeathlonstat" -""" -type pokemon_v2_pokeathlonstat { - id: Int! - name: String! - - """An array relationship""" - pokemon_v2_naturepokeathlonstats( - """distinct select on columns""" - distinct_on: [pokemon_v2_naturepokeathlonstat_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_naturepokeathlonstat_order_by!] - - """filter the rows returned""" - where: pokemon_v2_naturepokeathlonstat_bool_exp - ): [pokemon_v2_naturepokeathlonstat!]! - - """An aggregate relationship""" - pokemon_v2_naturepokeathlonstats_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_naturepokeathlonstat_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_naturepokeathlonstat_order_by!] - - """filter the rows returned""" - where: pokemon_v2_naturepokeathlonstat_bool_exp - ): pokemon_v2_naturepokeathlonstat_aggregate! - - """An array relationship""" - pokemon_v2_pokeathlonstatnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokeathlonstatname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokeathlonstatname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokeathlonstatname_bool_exp - ): [pokemon_v2_pokeathlonstatname!]! - - """An aggregate relationship""" - pokemon_v2_pokeathlonstatnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokeathlonstatname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokeathlonstatname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokeathlonstatname_bool_exp - ): pokemon_v2_pokeathlonstatname_aggregate! -} - -""" -aggregated selection of "pokemon_v2_pokeathlonstat" -""" -type pokemon_v2_pokeathlonstat_aggregate { - aggregate: pokemon_v2_pokeathlonstat_aggregate_fields - nodes: [pokemon_v2_pokeathlonstat!]! -} - -""" -aggregate fields of "pokemon_v2_pokeathlonstat" -""" -type pokemon_v2_pokeathlonstat_aggregate_fields { - avg: pokemon_v2_pokeathlonstat_avg_fields - count(columns: [pokemon_v2_pokeathlonstat_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokeathlonstat_max_fields - min: pokemon_v2_pokeathlonstat_min_fields - stddev: pokemon_v2_pokeathlonstat_stddev_fields - stddev_pop: pokemon_v2_pokeathlonstat_stddev_pop_fields - stddev_samp: pokemon_v2_pokeathlonstat_stddev_samp_fields - sum: pokemon_v2_pokeathlonstat_sum_fields - var_pop: pokemon_v2_pokeathlonstat_var_pop_fields - var_samp: pokemon_v2_pokeathlonstat_var_samp_fields - variance: pokemon_v2_pokeathlonstat_variance_fields -} - -"""aggregate avg on columns""" -type pokemon_v2_pokeathlonstat_avg_fields { - id: Float -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokeathlonstat". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokeathlonstat_bool_exp { - _and: [pokemon_v2_pokeathlonstat_bool_exp!] - _not: pokemon_v2_pokeathlonstat_bool_exp - _or: [pokemon_v2_pokeathlonstat_bool_exp!] - id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_naturepokeathlonstats: pokemon_v2_naturepokeathlonstat_bool_exp - pokemon_v2_naturepokeathlonstats_aggregate: pokemon_v2_naturepokeathlonstat_aggregate_bool_exp - pokemon_v2_pokeathlonstatnames: pokemon_v2_pokeathlonstatname_bool_exp - pokemon_v2_pokeathlonstatnames_aggregate: pokemon_v2_pokeathlonstatname_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokeathlonstat_max_fields { - id: Int - name: String -} - -"""aggregate min on columns""" -type pokemon_v2_pokeathlonstat_min_fields { - id: Int - name: String -} - -"""Ordering options when selecting data from "pokemon_v2_pokeathlonstat".""" -input pokemon_v2_pokeathlonstat_order_by { - id: order_by - name: order_by - pokemon_v2_naturepokeathlonstats_aggregate: pokemon_v2_naturepokeathlonstat_aggregate_order_by - pokemon_v2_pokeathlonstatnames_aggregate: pokemon_v2_pokeathlonstatname_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_pokeathlonstat" -""" -enum pokemon_v2_pokeathlonstat_select_column { - """column name""" - id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokeathlonstat_stddev_fields { - id: Float -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokeathlonstat_stddev_pop_fields { - id: Float -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokeathlonstat_stddev_samp_fields { - id: Float -} - -""" -Streaming cursor of the table "pokemon_v2_pokeathlonstat" -""" -input pokemon_v2_pokeathlonstat_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokeathlonstat_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokeathlonstat_stream_cursor_value_input { - id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_pokeathlonstat_sum_fields { - id: Int -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokeathlonstat_var_pop_fields { - id: Float -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokeathlonstat_var_samp_fields { - id: Float -} - -"""aggregate variance on columns""" -type pokemon_v2_pokeathlonstat_variance_fields { - id: Float -} - -""" -columns and relationships of "pokemon_v2_pokeathlonstatname" -""" -type pokemon_v2_pokeathlonstatname { - id: Int! - language_id: Int - name: String! - pokeathlon_stat_id: Int - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_pokeathlonstat: pokemon_v2_pokeathlonstat -} - -""" -aggregated selection of "pokemon_v2_pokeathlonstatname" -""" -type pokemon_v2_pokeathlonstatname_aggregate { - aggregate: pokemon_v2_pokeathlonstatname_aggregate_fields - nodes: [pokemon_v2_pokeathlonstatname!]! -} - -input pokemon_v2_pokeathlonstatname_aggregate_bool_exp { - count: pokemon_v2_pokeathlonstatname_aggregate_bool_exp_count -} - -input pokemon_v2_pokeathlonstatname_aggregate_bool_exp_count { - arguments: [pokemon_v2_pokeathlonstatname_select_column!] - distinct: Boolean - filter: pokemon_v2_pokeathlonstatname_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_pokeathlonstatname" -""" -type pokemon_v2_pokeathlonstatname_aggregate_fields { - avg: pokemon_v2_pokeathlonstatname_avg_fields - count(columns: [pokemon_v2_pokeathlonstatname_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokeathlonstatname_max_fields - min: pokemon_v2_pokeathlonstatname_min_fields - stddev: pokemon_v2_pokeathlonstatname_stddev_fields - stddev_pop: pokemon_v2_pokeathlonstatname_stddev_pop_fields - stddev_samp: pokemon_v2_pokeathlonstatname_stddev_samp_fields - sum: pokemon_v2_pokeathlonstatname_sum_fields - var_pop: pokemon_v2_pokeathlonstatname_var_pop_fields - var_samp: pokemon_v2_pokeathlonstatname_var_samp_fields - variance: pokemon_v2_pokeathlonstatname_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_pokeathlonstatname" -""" -input pokemon_v2_pokeathlonstatname_aggregate_order_by { - avg: pokemon_v2_pokeathlonstatname_avg_order_by - count: order_by - max: pokemon_v2_pokeathlonstatname_max_order_by - min: pokemon_v2_pokeathlonstatname_min_order_by - stddev: pokemon_v2_pokeathlonstatname_stddev_order_by - stddev_pop: pokemon_v2_pokeathlonstatname_stddev_pop_order_by - stddev_samp: pokemon_v2_pokeathlonstatname_stddev_samp_order_by - sum: pokemon_v2_pokeathlonstatname_sum_order_by - var_pop: pokemon_v2_pokeathlonstatname_var_pop_order_by - var_samp: pokemon_v2_pokeathlonstatname_var_samp_order_by - variance: pokemon_v2_pokeathlonstatname_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_pokeathlonstatname_avg_fields { - id: Float - language_id: Float - pokeathlon_stat_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_pokeathlonstatname" -""" -input pokemon_v2_pokeathlonstatname_avg_order_by { - id: order_by - language_id: order_by - pokeathlon_stat_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokeathlonstatname". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokeathlonstatname_bool_exp { - _and: [pokemon_v2_pokeathlonstatname_bool_exp!] - _not: pokemon_v2_pokeathlonstatname_bool_exp - _or: [pokemon_v2_pokeathlonstatname_bool_exp!] - id: Int_comparison_exp - language_id: Int_comparison_exp - name: String_comparison_exp - pokeathlon_stat_id: Int_comparison_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_pokeathlonstat: pokemon_v2_pokeathlonstat_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokeathlonstatname_max_fields { - id: Int - language_id: Int - name: String - pokeathlon_stat_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_pokeathlonstatname" -""" -input pokemon_v2_pokeathlonstatname_max_order_by { - id: order_by - language_id: order_by - name: order_by - pokeathlon_stat_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_pokeathlonstatname_min_fields { - id: Int - language_id: Int - name: String - pokeathlon_stat_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_pokeathlonstatname" -""" -input pokemon_v2_pokeathlonstatname_min_order_by { - id: order_by - language_id: order_by - name: order_by - pokeathlon_stat_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_pokeathlonstatname". -""" -input pokemon_v2_pokeathlonstatname_order_by { - id: order_by - language_id: order_by - name: order_by - pokeathlon_stat_id: order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_pokeathlonstat: pokemon_v2_pokeathlonstat_order_by -} - -""" -select columns of table "pokemon_v2_pokeathlonstatname" -""" -enum pokemon_v2_pokeathlonstatname_select_column { - """column name""" - id - - """column name""" - language_id - - """column name""" - name - - """column name""" - pokeathlon_stat_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokeathlonstatname_stddev_fields { - id: Float - language_id: Float - pokeathlon_stat_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_pokeathlonstatname" -""" -input pokemon_v2_pokeathlonstatname_stddev_order_by { - id: order_by - language_id: order_by - pokeathlon_stat_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokeathlonstatname_stddev_pop_fields { - id: Float - language_id: Float - pokeathlon_stat_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_pokeathlonstatname" -""" -input pokemon_v2_pokeathlonstatname_stddev_pop_order_by { - id: order_by - language_id: order_by - pokeathlon_stat_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokeathlonstatname_stddev_samp_fields { - id: Float - language_id: Float - pokeathlon_stat_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_pokeathlonstatname" -""" -input pokemon_v2_pokeathlonstatname_stddev_samp_order_by { - id: order_by - language_id: order_by - pokeathlon_stat_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_pokeathlonstatname" -""" -input pokemon_v2_pokeathlonstatname_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokeathlonstatname_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokeathlonstatname_stream_cursor_value_input { - id: Int - language_id: Int - name: String - pokeathlon_stat_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_pokeathlonstatname_sum_fields { - id: Int - language_id: Int - pokeathlon_stat_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_pokeathlonstatname" -""" -input pokemon_v2_pokeathlonstatname_sum_order_by { - id: order_by - language_id: order_by - pokeathlon_stat_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokeathlonstatname_var_pop_fields { - id: Float - language_id: Float - pokeathlon_stat_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_pokeathlonstatname" -""" -input pokemon_v2_pokeathlonstatname_var_pop_order_by { - id: order_by - language_id: order_by - pokeathlon_stat_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokeathlonstatname_var_samp_fields { - id: Float - language_id: Float - pokeathlon_stat_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_pokeathlonstatname" -""" -input pokemon_v2_pokeathlonstatname_var_samp_order_by { - id: order_by - language_id: order_by - pokeathlon_stat_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_pokeathlonstatname_variance_fields { - id: Float - language_id: Float - pokeathlon_stat_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_pokeathlonstatname" -""" -input pokemon_v2_pokeathlonstatname_variance_order_by { - id: order_by - language_id: order_by - pokeathlon_stat_id: order_by -} - -""" -columns and relationships of "pokemon_v2_pokedex" -""" -type pokemon_v2_pokedex { - id: Int! - is_main_series: Boolean! - name: String! - - """An array relationship""" - pokemon_v2_pokedexdescriptions( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokedexdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokedexdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokedexdescription_bool_exp - ): [pokemon_v2_pokedexdescription!]! - - """An aggregate relationship""" - pokemon_v2_pokedexdescriptions_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokedexdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokedexdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokedexdescription_bool_exp - ): pokemon_v2_pokedexdescription_aggregate! - - """An array relationship""" - pokemon_v2_pokedexnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokedexname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokedexname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokedexname_bool_exp - ): [pokemon_v2_pokedexname!]! - - """An aggregate relationship""" - pokemon_v2_pokedexnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokedexname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokedexname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokedexname_bool_exp - ): pokemon_v2_pokedexname_aggregate! - - """An array relationship""" - pokemon_v2_pokedexversiongroups( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokedexversiongroup_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokedexversiongroup_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokedexversiongroup_bool_exp - ): [pokemon_v2_pokedexversiongroup!]! - - """An aggregate relationship""" - pokemon_v2_pokedexversiongroups_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokedexversiongroup_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokedexversiongroup_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokedexversiongroup_bool_exp - ): pokemon_v2_pokedexversiongroup_aggregate! - - """An array relationship""" - pokemon_v2_pokemondexnumbers( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemondexnumber_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemondexnumber_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemondexnumber_bool_exp - ): [pokemon_v2_pokemondexnumber!]! - - """An aggregate relationship""" - pokemon_v2_pokemondexnumbers_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemondexnumber_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemondexnumber_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemondexnumber_bool_exp - ): pokemon_v2_pokemondexnumber_aggregate! - - """An object relationship""" - pokemon_v2_region: pokemon_v2_region - region_id: Int -} - -""" -aggregated selection of "pokemon_v2_pokedex" -""" -type pokemon_v2_pokedex_aggregate { - aggregate: pokemon_v2_pokedex_aggregate_fields - nodes: [pokemon_v2_pokedex!]! -} - -input pokemon_v2_pokedex_aggregate_bool_exp { - bool_and: pokemon_v2_pokedex_aggregate_bool_exp_bool_and - bool_or: pokemon_v2_pokedex_aggregate_bool_exp_bool_or - count: pokemon_v2_pokedex_aggregate_bool_exp_count -} - -input pokemon_v2_pokedex_aggregate_bool_exp_bool_and { - arguments: pokemon_v2_pokedex_select_column_pokemon_v2_pokedex_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: pokemon_v2_pokedex_bool_exp - predicate: Boolean_comparison_exp! -} - -input pokemon_v2_pokedex_aggregate_bool_exp_bool_or { - arguments: pokemon_v2_pokedex_select_column_pokemon_v2_pokedex_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: pokemon_v2_pokedex_bool_exp - predicate: Boolean_comparison_exp! -} - -input pokemon_v2_pokedex_aggregate_bool_exp_count { - arguments: [pokemon_v2_pokedex_select_column!] - distinct: Boolean - filter: pokemon_v2_pokedex_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_pokedex" -""" -type pokemon_v2_pokedex_aggregate_fields { - avg: pokemon_v2_pokedex_avg_fields - count(columns: [pokemon_v2_pokedex_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokedex_max_fields - min: pokemon_v2_pokedex_min_fields - stddev: pokemon_v2_pokedex_stddev_fields - stddev_pop: pokemon_v2_pokedex_stddev_pop_fields - stddev_samp: pokemon_v2_pokedex_stddev_samp_fields - sum: pokemon_v2_pokedex_sum_fields - var_pop: pokemon_v2_pokedex_var_pop_fields - var_samp: pokemon_v2_pokedex_var_samp_fields - variance: pokemon_v2_pokedex_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_pokedex" -""" -input pokemon_v2_pokedex_aggregate_order_by { - avg: pokemon_v2_pokedex_avg_order_by - count: order_by - max: pokemon_v2_pokedex_max_order_by - min: pokemon_v2_pokedex_min_order_by - stddev: pokemon_v2_pokedex_stddev_order_by - stddev_pop: pokemon_v2_pokedex_stddev_pop_order_by - stddev_samp: pokemon_v2_pokedex_stddev_samp_order_by - sum: pokemon_v2_pokedex_sum_order_by - var_pop: pokemon_v2_pokedex_var_pop_order_by - var_samp: pokemon_v2_pokedex_var_samp_order_by - variance: pokemon_v2_pokedex_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_pokedex_avg_fields { - id: Float - region_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_pokedex" -""" -input pokemon_v2_pokedex_avg_order_by { - id: order_by - region_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokedex". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokedex_bool_exp { - _and: [pokemon_v2_pokedex_bool_exp!] - _not: pokemon_v2_pokedex_bool_exp - _or: [pokemon_v2_pokedex_bool_exp!] - id: Int_comparison_exp - is_main_series: Boolean_comparison_exp - name: String_comparison_exp - pokemon_v2_pokedexdescriptions: pokemon_v2_pokedexdescription_bool_exp - pokemon_v2_pokedexdescriptions_aggregate: pokemon_v2_pokedexdescription_aggregate_bool_exp - pokemon_v2_pokedexnames: pokemon_v2_pokedexname_bool_exp - pokemon_v2_pokedexnames_aggregate: pokemon_v2_pokedexname_aggregate_bool_exp - pokemon_v2_pokedexversiongroups: pokemon_v2_pokedexversiongroup_bool_exp - pokemon_v2_pokedexversiongroups_aggregate: pokemon_v2_pokedexversiongroup_aggregate_bool_exp - pokemon_v2_pokemondexnumbers: pokemon_v2_pokemondexnumber_bool_exp - pokemon_v2_pokemondexnumbers_aggregate: pokemon_v2_pokemondexnumber_aggregate_bool_exp - pokemon_v2_region: pokemon_v2_region_bool_exp - region_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokedex_max_fields { - id: Int - name: String - region_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_pokedex" -""" -input pokemon_v2_pokedex_max_order_by { - id: order_by - name: order_by - region_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_pokedex_min_fields { - id: Int - name: String - region_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_pokedex" -""" -input pokemon_v2_pokedex_min_order_by { - id: order_by - name: order_by - region_id: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_pokedex".""" -input pokemon_v2_pokedex_order_by { - id: order_by - is_main_series: order_by - name: order_by - pokemon_v2_pokedexdescriptions_aggregate: pokemon_v2_pokedexdescription_aggregate_order_by - pokemon_v2_pokedexnames_aggregate: pokemon_v2_pokedexname_aggregate_order_by - pokemon_v2_pokedexversiongroups_aggregate: pokemon_v2_pokedexversiongroup_aggregate_order_by - pokemon_v2_pokemondexnumbers_aggregate: pokemon_v2_pokemondexnumber_aggregate_order_by - pokemon_v2_region: pokemon_v2_region_order_by - region_id: order_by -} - -""" -select columns of table "pokemon_v2_pokedex" -""" -enum pokemon_v2_pokedex_select_column { - """column name""" - id - - """column name""" - is_main_series - - """column name""" - name - - """column name""" - region_id -} - -""" -select "pokemon_v2_pokedex_aggregate_bool_exp_bool_and_arguments_columns" columns of table "pokemon_v2_pokedex" -""" -enum pokemon_v2_pokedex_select_column_pokemon_v2_pokedex_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - is_main_series -} - -""" -select "pokemon_v2_pokedex_aggregate_bool_exp_bool_or_arguments_columns" columns of table "pokemon_v2_pokedex" -""" -enum pokemon_v2_pokedex_select_column_pokemon_v2_pokedex_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - is_main_series -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokedex_stddev_fields { - id: Float - region_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_pokedex" -""" -input pokemon_v2_pokedex_stddev_order_by { - id: order_by - region_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokedex_stddev_pop_fields { - id: Float - region_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_pokedex" -""" -input pokemon_v2_pokedex_stddev_pop_order_by { - id: order_by - region_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokedex_stddev_samp_fields { - id: Float - region_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_pokedex" -""" -input pokemon_v2_pokedex_stddev_samp_order_by { - id: order_by - region_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_pokedex" -""" -input pokemon_v2_pokedex_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokedex_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokedex_stream_cursor_value_input { - id: Int - is_main_series: Boolean - name: String - region_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_pokedex_sum_fields { - id: Int - region_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_pokedex" -""" -input pokemon_v2_pokedex_sum_order_by { - id: order_by - region_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokedex_var_pop_fields { - id: Float - region_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_pokedex" -""" -input pokemon_v2_pokedex_var_pop_order_by { - id: order_by - region_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokedex_var_samp_fields { - id: Float - region_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_pokedex" -""" -input pokemon_v2_pokedex_var_samp_order_by { - id: order_by - region_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_pokedex_variance_fields { - id: Float - region_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_pokedex" -""" -input pokemon_v2_pokedex_variance_order_by { - id: order_by - region_id: order_by -} - -""" -columns and relationships of "pokemon_v2_pokedexdescription" -""" -type pokemon_v2_pokedexdescription { - description: String! - id: Int! - language_id: Int - pokedex_id: Int - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_pokedex: pokemon_v2_pokedex -} - -""" -aggregated selection of "pokemon_v2_pokedexdescription" -""" -type pokemon_v2_pokedexdescription_aggregate { - aggregate: pokemon_v2_pokedexdescription_aggregate_fields - nodes: [pokemon_v2_pokedexdescription!]! -} - -input pokemon_v2_pokedexdescription_aggregate_bool_exp { - count: pokemon_v2_pokedexdescription_aggregate_bool_exp_count -} - -input pokemon_v2_pokedexdescription_aggregate_bool_exp_count { - arguments: [pokemon_v2_pokedexdescription_select_column!] - distinct: Boolean - filter: pokemon_v2_pokedexdescription_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_pokedexdescription" -""" -type pokemon_v2_pokedexdescription_aggregate_fields { - avg: pokemon_v2_pokedexdescription_avg_fields - count(columns: [pokemon_v2_pokedexdescription_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokedexdescription_max_fields - min: pokemon_v2_pokedexdescription_min_fields - stddev: pokemon_v2_pokedexdescription_stddev_fields - stddev_pop: pokemon_v2_pokedexdescription_stddev_pop_fields - stddev_samp: pokemon_v2_pokedexdescription_stddev_samp_fields - sum: pokemon_v2_pokedexdescription_sum_fields - var_pop: pokemon_v2_pokedexdescription_var_pop_fields - var_samp: pokemon_v2_pokedexdescription_var_samp_fields - variance: pokemon_v2_pokedexdescription_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_pokedexdescription" -""" -input pokemon_v2_pokedexdescription_aggregate_order_by { - avg: pokemon_v2_pokedexdescription_avg_order_by - count: order_by - max: pokemon_v2_pokedexdescription_max_order_by - min: pokemon_v2_pokedexdescription_min_order_by - stddev: pokemon_v2_pokedexdescription_stddev_order_by - stddev_pop: pokemon_v2_pokedexdescription_stddev_pop_order_by - stddev_samp: pokemon_v2_pokedexdescription_stddev_samp_order_by - sum: pokemon_v2_pokedexdescription_sum_order_by - var_pop: pokemon_v2_pokedexdescription_var_pop_order_by - var_samp: pokemon_v2_pokedexdescription_var_samp_order_by - variance: pokemon_v2_pokedexdescription_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_pokedexdescription_avg_fields { - id: Float - language_id: Float - pokedex_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_pokedexdescription" -""" -input pokemon_v2_pokedexdescription_avg_order_by { - id: order_by - language_id: order_by - pokedex_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokedexdescription". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokedexdescription_bool_exp { - _and: [pokemon_v2_pokedexdescription_bool_exp!] - _not: pokemon_v2_pokedexdescription_bool_exp - _or: [pokemon_v2_pokedexdescription_bool_exp!] - description: String_comparison_exp - id: Int_comparison_exp - language_id: Int_comparison_exp - pokedex_id: Int_comparison_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_pokedex: pokemon_v2_pokedex_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokedexdescription_max_fields { - description: String - id: Int - language_id: Int - pokedex_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_pokedexdescription" -""" -input pokemon_v2_pokedexdescription_max_order_by { - description: order_by - id: order_by - language_id: order_by - pokedex_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_pokedexdescription_min_fields { - description: String - id: Int - language_id: Int - pokedex_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_pokedexdescription" -""" -input pokemon_v2_pokedexdescription_min_order_by { - description: order_by - id: order_by - language_id: order_by - pokedex_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_pokedexdescription". -""" -input pokemon_v2_pokedexdescription_order_by { - description: order_by - id: order_by - language_id: order_by - pokedex_id: order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_pokedex: pokemon_v2_pokedex_order_by -} - -""" -select columns of table "pokemon_v2_pokedexdescription" -""" -enum pokemon_v2_pokedexdescription_select_column { - """column name""" - description - - """column name""" - id - - """column name""" - language_id - - """column name""" - pokedex_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokedexdescription_stddev_fields { - id: Float - language_id: Float - pokedex_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_pokedexdescription" -""" -input pokemon_v2_pokedexdescription_stddev_order_by { - id: order_by - language_id: order_by - pokedex_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokedexdescription_stddev_pop_fields { - id: Float - language_id: Float - pokedex_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_pokedexdescription" -""" -input pokemon_v2_pokedexdescription_stddev_pop_order_by { - id: order_by - language_id: order_by - pokedex_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokedexdescription_stddev_samp_fields { - id: Float - language_id: Float - pokedex_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_pokedexdescription" -""" -input pokemon_v2_pokedexdescription_stddev_samp_order_by { - id: order_by - language_id: order_by - pokedex_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_pokedexdescription" -""" -input pokemon_v2_pokedexdescription_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokedexdescription_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokedexdescription_stream_cursor_value_input { - description: String - id: Int - language_id: Int - pokedex_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_pokedexdescription_sum_fields { - id: Int - language_id: Int - pokedex_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_pokedexdescription" -""" -input pokemon_v2_pokedexdescription_sum_order_by { - id: order_by - language_id: order_by - pokedex_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokedexdescription_var_pop_fields { - id: Float - language_id: Float - pokedex_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_pokedexdescription" -""" -input pokemon_v2_pokedexdescription_var_pop_order_by { - id: order_by - language_id: order_by - pokedex_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokedexdescription_var_samp_fields { - id: Float - language_id: Float - pokedex_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_pokedexdescription" -""" -input pokemon_v2_pokedexdescription_var_samp_order_by { - id: order_by - language_id: order_by - pokedex_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_pokedexdescription_variance_fields { - id: Float - language_id: Float - pokedex_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_pokedexdescription" -""" -input pokemon_v2_pokedexdescription_variance_order_by { - id: order_by - language_id: order_by - pokedex_id: order_by -} - -""" -columns and relationships of "pokemon_v2_pokedexname" -""" -type pokemon_v2_pokedexname { - id: Int! - language_id: Int - name: String! - pokedex_id: Int - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_pokedex: pokemon_v2_pokedex -} - -""" -aggregated selection of "pokemon_v2_pokedexname" -""" -type pokemon_v2_pokedexname_aggregate { - aggregate: pokemon_v2_pokedexname_aggregate_fields - nodes: [pokemon_v2_pokedexname!]! -} - -input pokemon_v2_pokedexname_aggregate_bool_exp { - count: pokemon_v2_pokedexname_aggregate_bool_exp_count -} - -input pokemon_v2_pokedexname_aggregate_bool_exp_count { - arguments: [pokemon_v2_pokedexname_select_column!] - distinct: Boolean - filter: pokemon_v2_pokedexname_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_pokedexname" -""" -type pokemon_v2_pokedexname_aggregate_fields { - avg: pokemon_v2_pokedexname_avg_fields - count(columns: [pokemon_v2_pokedexname_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokedexname_max_fields - min: pokemon_v2_pokedexname_min_fields - stddev: pokemon_v2_pokedexname_stddev_fields - stddev_pop: pokemon_v2_pokedexname_stddev_pop_fields - stddev_samp: pokemon_v2_pokedexname_stddev_samp_fields - sum: pokemon_v2_pokedexname_sum_fields - var_pop: pokemon_v2_pokedexname_var_pop_fields - var_samp: pokemon_v2_pokedexname_var_samp_fields - variance: pokemon_v2_pokedexname_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_pokedexname" -""" -input pokemon_v2_pokedexname_aggregate_order_by { - avg: pokemon_v2_pokedexname_avg_order_by - count: order_by - max: pokemon_v2_pokedexname_max_order_by - min: pokemon_v2_pokedexname_min_order_by - stddev: pokemon_v2_pokedexname_stddev_order_by - stddev_pop: pokemon_v2_pokedexname_stddev_pop_order_by - stddev_samp: pokemon_v2_pokedexname_stddev_samp_order_by - sum: pokemon_v2_pokedexname_sum_order_by - var_pop: pokemon_v2_pokedexname_var_pop_order_by - var_samp: pokemon_v2_pokedexname_var_samp_order_by - variance: pokemon_v2_pokedexname_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_pokedexname_avg_fields { - id: Float - language_id: Float - pokedex_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_pokedexname" -""" -input pokemon_v2_pokedexname_avg_order_by { - id: order_by - language_id: order_by - pokedex_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokedexname". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokedexname_bool_exp { - _and: [pokemon_v2_pokedexname_bool_exp!] - _not: pokemon_v2_pokedexname_bool_exp - _or: [pokemon_v2_pokedexname_bool_exp!] - id: Int_comparison_exp - language_id: Int_comparison_exp - name: String_comparison_exp - pokedex_id: Int_comparison_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_pokedex: pokemon_v2_pokedex_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokedexname_max_fields { - id: Int - language_id: Int - name: String - pokedex_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_pokedexname" -""" -input pokemon_v2_pokedexname_max_order_by { - id: order_by - language_id: order_by - name: order_by - pokedex_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_pokedexname_min_fields { - id: Int - language_id: Int - name: String - pokedex_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_pokedexname" -""" -input pokemon_v2_pokedexname_min_order_by { - id: order_by - language_id: order_by - name: order_by - pokedex_id: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_pokedexname".""" -input pokemon_v2_pokedexname_order_by { - id: order_by - language_id: order_by - name: order_by - pokedex_id: order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_pokedex: pokemon_v2_pokedex_order_by -} - -""" -select columns of table "pokemon_v2_pokedexname" -""" -enum pokemon_v2_pokedexname_select_column { - """column name""" - id - - """column name""" - language_id - - """column name""" - name - - """column name""" - pokedex_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokedexname_stddev_fields { - id: Float - language_id: Float - pokedex_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_pokedexname" -""" -input pokemon_v2_pokedexname_stddev_order_by { - id: order_by - language_id: order_by - pokedex_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokedexname_stddev_pop_fields { - id: Float - language_id: Float - pokedex_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_pokedexname" -""" -input pokemon_v2_pokedexname_stddev_pop_order_by { - id: order_by - language_id: order_by - pokedex_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokedexname_stddev_samp_fields { - id: Float - language_id: Float - pokedex_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_pokedexname" -""" -input pokemon_v2_pokedexname_stddev_samp_order_by { - id: order_by - language_id: order_by - pokedex_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_pokedexname" -""" -input pokemon_v2_pokedexname_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokedexname_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokedexname_stream_cursor_value_input { - id: Int - language_id: Int - name: String - pokedex_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_pokedexname_sum_fields { - id: Int - language_id: Int - pokedex_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_pokedexname" -""" -input pokemon_v2_pokedexname_sum_order_by { - id: order_by - language_id: order_by - pokedex_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokedexname_var_pop_fields { - id: Float - language_id: Float - pokedex_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_pokedexname" -""" -input pokemon_v2_pokedexname_var_pop_order_by { - id: order_by - language_id: order_by - pokedex_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokedexname_var_samp_fields { - id: Float - language_id: Float - pokedex_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_pokedexname" -""" -input pokemon_v2_pokedexname_var_samp_order_by { - id: order_by - language_id: order_by - pokedex_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_pokedexname_variance_fields { - id: Float - language_id: Float - pokedex_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_pokedexname" -""" -input pokemon_v2_pokedexname_variance_order_by { - id: order_by - language_id: order_by - pokedex_id: order_by -} - -""" -columns and relationships of "pokemon_v2_pokedexversiongroup" -""" -type pokemon_v2_pokedexversiongroup { - id: Int! - pokedex_id: Int - - """An object relationship""" - pokemon_v2_pokedex: pokemon_v2_pokedex - - """An object relationship""" - pokemon_v2_versiongroup: pokemon_v2_versiongroup - version_group_id: Int -} - -""" -aggregated selection of "pokemon_v2_pokedexversiongroup" -""" -type pokemon_v2_pokedexversiongroup_aggregate { - aggregate: pokemon_v2_pokedexversiongroup_aggregate_fields - nodes: [pokemon_v2_pokedexversiongroup!]! -} - -input pokemon_v2_pokedexversiongroup_aggregate_bool_exp { - count: pokemon_v2_pokedexversiongroup_aggregate_bool_exp_count -} - -input pokemon_v2_pokedexversiongroup_aggregate_bool_exp_count { - arguments: [pokemon_v2_pokedexversiongroup_select_column!] - distinct: Boolean - filter: pokemon_v2_pokedexversiongroup_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_pokedexversiongroup" -""" -type pokemon_v2_pokedexversiongroup_aggregate_fields { - avg: pokemon_v2_pokedexversiongroup_avg_fields - count(columns: [pokemon_v2_pokedexversiongroup_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokedexversiongroup_max_fields - min: pokemon_v2_pokedexversiongroup_min_fields - stddev: pokemon_v2_pokedexversiongroup_stddev_fields - stddev_pop: pokemon_v2_pokedexversiongroup_stddev_pop_fields - stddev_samp: pokemon_v2_pokedexversiongroup_stddev_samp_fields - sum: pokemon_v2_pokedexversiongroup_sum_fields - var_pop: pokemon_v2_pokedexversiongroup_var_pop_fields - var_samp: pokemon_v2_pokedexversiongroup_var_samp_fields - variance: pokemon_v2_pokedexversiongroup_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_pokedexversiongroup" -""" -input pokemon_v2_pokedexversiongroup_aggregate_order_by { - avg: pokemon_v2_pokedexversiongroup_avg_order_by - count: order_by - max: pokemon_v2_pokedexversiongroup_max_order_by - min: pokemon_v2_pokedexversiongroup_min_order_by - stddev: pokemon_v2_pokedexversiongroup_stddev_order_by - stddev_pop: pokemon_v2_pokedexversiongroup_stddev_pop_order_by - stddev_samp: pokemon_v2_pokedexversiongroup_stddev_samp_order_by - sum: pokemon_v2_pokedexversiongroup_sum_order_by - var_pop: pokemon_v2_pokedexversiongroup_var_pop_order_by - var_samp: pokemon_v2_pokedexversiongroup_var_samp_order_by - variance: pokemon_v2_pokedexversiongroup_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_pokedexversiongroup_avg_fields { - id: Float - pokedex_id: Float - version_group_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_pokedexversiongroup" -""" -input pokemon_v2_pokedexversiongroup_avg_order_by { - id: order_by - pokedex_id: order_by - version_group_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokedexversiongroup". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokedexversiongroup_bool_exp { - _and: [pokemon_v2_pokedexversiongroup_bool_exp!] - _not: pokemon_v2_pokedexversiongroup_bool_exp - _or: [pokemon_v2_pokedexversiongroup_bool_exp!] - id: Int_comparison_exp - pokedex_id: Int_comparison_exp - pokemon_v2_pokedex: pokemon_v2_pokedex_bool_exp - pokemon_v2_versiongroup: pokemon_v2_versiongroup_bool_exp - version_group_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokedexversiongroup_max_fields { - id: Int - pokedex_id: Int - version_group_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_pokedexversiongroup" -""" -input pokemon_v2_pokedexversiongroup_max_order_by { - id: order_by - pokedex_id: order_by - version_group_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_pokedexversiongroup_min_fields { - id: Int - pokedex_id: Int - version_group_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_pokedexversiongroup" -""" -input pokemon_v2_pokedexversiongroup_min_order_by { - id: order_by - pokedex_id: order_by - version_group_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_pokedexversiongroup". -""" -input pokemon_v2_pokedexversiongroup_order_by { - id: order_by - pokedex_id: order_by - pokemon_v2_pokedex: pokemon_v2_pokedex_order_by - pokemon_v2_versiongroup: pokemon_v2_versiongroup_order_by - version_group_id: order_by -} - -""" -select columns of table "pokemon_v2_pokedexversiongroup" -""" -enum pokemon_v2_pokedexversiongroup_select_column { - """column name""" - id - - """column name""" - pokedex_id - - """column name""" - version_group_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokedexversiongroup_stddev_fields { - id: Float - pokedex_id: Float - version_group_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_pokedexversiongroup" -""" -input pokemon_v2_pokedexversiongroup_stddev_order_by { - id: order_by - pokedex_id: order_by - version_group_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokedexversiongroup_stddev_pop_fields { - id: Float - pokedex_id: Float - version_group_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_pokedexversiongroup" -""" -input pokemon_v2_pokedexversiongroup_stddev_pop_order_by { - id: order_by - pokedex_id: order_by - version_group_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokedexversiongroup_stddev_samp_fields { - id: Float - pokedex_id: Float - version_group_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_pokedexversiongroup" -""" -input pokemon_v2_pokedexversiongroup_stddev_samp_order_by { - id: order_by - pokedex_id: order_by - version_group_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_pokedexversiongroup" -""" -input pokemon_v2_pokedexversiongroup_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokedexversiongroup_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokedexversiongroup_stream_cursor_value_input { - id: Int - pokedex_id: Int - version_group_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_pokedexversiongroup_sum_fields { - id: Int - pokedex_id: Int - version_group_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_pokedexversiongroup" -""" -input pokemon_v2_pokedexversiongroup_sum_order_by { - id: order_by - pokedex_id: order_by - version_group_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokedexversiongroup_var_pop_fields { - id: Float - pokedex_id: Float - version_group_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_pokedexversiongroup" -""" -input pokemon_v2_pokedexversiongroup_var_pop_order_by { - id: order_by - pokedex_id: order_by - version_group_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokedexversiongroup_var_samp_fields { - id: Float - pokedex_id: Float - version_group_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_pokedexversiongroup" -""" -input pokemon_v2_pokedexversiongroup_var_samp_order_by { - id: order_by - pokedex_id: order_by - version_group_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_pokedexversiongroup_variance_fields { - id: Float - pokedex_id: Float - version_group_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_pokedexversiongroup" -""" -input pokemon_v2_pokedexversiongroup_variance_order_by { - id: order_by - pokedex_id: order_by - version_group_id: order_by -} - -""" -columns and relationships of "pokemon_v2_pokemon" -""" -type pokemon_v2_pokemon { - base_experience: Int - height: Int - id: Int! - is_default: Boolean! - name: String! - order: Int - pokemon_species_id: Int - - """An array relationship""" - pokemon_v2_encounters( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounter_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounter_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounter_bool_exp - ): [pokemon_v2_encounter!]! - - """An aggregate relationship""" - pokemon_v2_encounters_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounter_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounter_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounter_bool_exp - ): pokemon_v2_encounter_aggregate! - - """An array relationship""" - pokemon_v2_pokemonabilities( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonability_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonability_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonability_bool_exp - ): [pokemon_v2_pokemonability!]! - - """An aggregate relationship""" - pokemon_v2_pokemonabilities_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonability_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonability_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonability_bool_exp - ): pokemon_v2_pokemonability_aggregate! - - """An array relationship""" - pokemon_v2_pokemonabilitypasts( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonabilitypast_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonabilitypast_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonabilitypast_bool_exp - ): [pokemon_v2_pokemonabilitypast!]! - - """An aggregate relationship""" - pokemon_v2_pokemonabilitypasts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonabilitypast_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonabilitypast_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonabilitypast_bool_exp - ): pokemon_v2_pokemonabilitypast_aggregate! - - """An array relationship""" - pokemon_v2_pokemoncries( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemoncries_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemoncries_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemoncries_bool_exp - ): [pokemon_v2_pokemoncries!]! - - """An aggregate relationship""" - pokemon_v2_pokemoncries_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemoncries_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemoncries_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemoncries_bool_exp - ): pokemon_v2_pokemoncries_aggregate! - - """An array relationship""" - pokemon_v2_pokemonforms( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonform_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonform_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonform_bool_exp - ): [pokemon_v2_pokemonform!]! - - """An aggregate relationship""" - pokemon_v2_pokemonforms_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonform_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonform_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonform_bool_exp - ): pokemon_v2_pokemonform_aggregate! - - """An array relationship""" - pokemon_v2_pokemongameindices( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemongameindex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemongameindex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemongameindex_bool_exp - ): [pokemon_v2_pokemongameindex!]! - - """An aggregate relationship""" - pokemon_v2_pokemongameindices_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemongameindex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemongameindex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemongameindex_bool_exp - ): pokemon_v2_pokemongameindex_aggregate! - - """An array relationship""" - pokemon_v2_pokemonitems( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonitem_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonitem_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonitem_bool_exp - ): [pokemon_v2_pokemonitem!]! - - """An aggregate relationship""" - pokemon_v2_pokemonitems_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonitem_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonitem_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonitem_bool_exp - ): pokemon_v2_pokemonitem_aggregate! - - """An array relationship""" - pokemon_v2_pokemonmoves( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonmove_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonmove_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonmove_bool_exp - ): [pokemon_v2_pokemonmove!]! - - """An aggregate relationship""" - pokemon_v2_pokemonmoves_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonmove_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonmove_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonmove_bool_exp - ): pokemon_v2_pokemonmove_aggregate! - - """An object relationship""" - pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies - - """An array relationship""" - pokemon_v2_pokemonsprites( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonsprites_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonsprites_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonsprites_bool_exp - ): [pokemon_v2_pokemonsprites!]! - - """An aggregate relationship""" - pokemon_v2_pokemonsprites_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonsprites_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonsprites_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonsprites_bool_exp - ): pokemon_v2_pokemonsprites_aggregate! - - """An array relationship""" - pokemon_v2_pokemonstats( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonstat_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonstat_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonstat_bool_exp - ): [pokemon_v2_pokemonstat!]! - - """An aggregate relationship""" - pokemon_v2_pokemonstats_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonstat_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonstat_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonstat_bool_exp - ): pokemon_v2_pokemonstat_aggregate! - - """An array relationship""" - pokemon_v2_pokemontypepasts( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemontypepast_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemontypepast_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemontypepast_bool_exp - ): [pokemon_v2_pokemontypepast!]! - - """An aggregate relationship""" - pokemon_v2_pokemontypepasts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemontypepast_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemontypepast_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemontypepast_bool_exp - ): pokemon_v2_pokemontypepast_aggregate! - - """An array relationship""" - pokemon_v2_pokemontypes( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemontype_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemontype_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemontype_bool_exp - ): [pokemon_v2_pokemontype!]! - - """An aggregate relationship""" - pokemon_v2_pokemontypes_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemontype_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemontype_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemontype_bool_exp - ): pokemon_v2_pokemontype_aggregate! - weight: Int -} - -""" -aggregated selection of "pokemon_v2_pokemon" -""" -type pokemon_v2_pokemon_aggregate { - aggregate: pokemon_v2_pokemon_aggregate_fields - nodes: [pokemon_v2_pokemon!]! -} - -input pokemon_v2_pokemon_aggregate_bool_exp { - bool_and: pokemon_v2_pokemon_aggregate_bool_exp_bool_and - bool_or: pokemon_v2_pokemon_aggregate_bool_exp_bool_or - count: pokemon_v2_pokemon_aggregate_bool_exp_count -} - -input pokemon_v2_pokemon_aggregate_bool_exp_bool_and { - arguments: pokemon_v2_pokemon_select_column_pokemon_v2_pokemon_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: pokemon_v2_pokemon_bool_exp - predicate: Boolean_comparison_exp! -} - -input pokemon_v2_pokemon_aggregate_bool_exp_bool_or { - arguments: pokemon_v2_pokemon_select_column_pokemon_v2_pokemon_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: pokemon_v2_pokemon_bool_exp - predicate: Boolean_comparison_exp! -} - -input pokemon_v2_pokemon_aggregate_bool_exp_count { - arguments: [pokemon_v2_pokemon_select_column!] - distinct: Boolean - filter: pokemon_v2_pokemon_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_pokemon" -""" -type pokemon_v2_pokemon_aggregate_fields { - avg: pokemon_v2_pokemon_avg_fields - count(columns: [pokemon_v2_pokemon_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokemon_max_fields - min: pokemon_v2_pokemon_min_fields - stddev: pokemon_v2_pokemon_stddev_fields - stddev_pop: pokemon_v2_pokemon_stddev_pop_fields - stddev_samp: pokemon_v2_pokemon_stddev_samp_fields - sum: pokemon_v2_pokemon_sum_fields - var_pop: pokemon_v2_pokemon_var_pop_fields - var_samp: pokemon_v2_pokemon_var_samp_fields - variance: pokemon_v2_pokemon_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_pokemon" -""" -input pokemon_v2_pokemon_aggregate_order_by { - avg: pokemon_v2_pokemon_avg_order_by - count: order_by - max: pokemon_v2_pokemon_max_order_by - min: pokemon_v2_pokemon_min_order_by - stddev: pokemon_v2_pokemon_stddev_order_by - stddev_pop: pokemon_v2_pokemon_stddev_pop_order_by - stddev_samp: pokemon_v2_pokemon_stddev_samp_order_by - sum: pokemon_v2_pokemon_sum_order_by - var_pop: pokemon_v2_pokemon_var_pop_order_by - var_samp: pokemon_v2_pokemon_var_samp_order_by - variance: pokemon_v2_pokemon_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_pokemon_avg_fields { - base_experience: Float - height: Float - id: Float - order: Float - pokemon_species_id: Float - weight: Float -} - -""" -order by avg() on columns of table "pokemon_v2_pokemon" -""" -input pokemon_v2_pokemon_avg_order_by { - base_experience: order_by - height: order_by - id: order_by - order: order_by - pokemon_species_id: order_by - weight: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokemon". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokemon_bool_exp { - _and: [pokemon_v2_pokemon_bool_exp!] - _not: pokemon_v2_pokemon_bool_exp - _or: [pokemon_v2_pokemon_bool_exp!] - base_experience: Int_comparison_exp - height: Int_comparison_exp - id: Int_comparison_exp - is_default: Boolean_comparison_exp - name: String_comparison_exp - order: Int_comparison_exp - pokemon_species_id: Int_comparison_exp - pokemon_v2_encounters: pokemon_v2_encounter_bool_exp - pokemon_v2_encounters_aggregate: pokemon_v2_encounter_aggregate_bool_exp - pokemon_v2_pokemonabilities: pokemon_v2_pokemonability_bool_exp - pokemon_v2_pokemonabilities_aggregate: pokemon_v2_pokemonability_aggregate_bool_exp - pokemon_v2_pokemonabilitypasts: pokemon_v2_pokemonabilitypast_bool_exp - pokemon_v2_pokemonabilitypasts_aggregate: pokemon_v2_pokemonabilitypast_aggregate_bool_exp - pokemon_v2_pokemoncries: pokemon_v2_pokemoncries_bool_exp - pokemon_v2_pokemoncries_aggregate: pokemon_v2_pokemoncries_aggregate_bool_exp - pokemon_v2_pokemonforms: pokemon_v2_pokemonform_bool_exp - pokemon_v2_pokemonforms_aggregate: pokemon_v2_pokemonform_aggregate_bool_exp - pokemon_v2_pokemongameindices: pokemon_v2_pokemongameindex_bool_exp - pokemon_v2_pokemongameindices_aggregate: pokemon_v2_pokemongameindex_aggregate_bool_exp - pokemon_v2_pokemonitems: pokemon_v2_pokemonitem_bool_exp - pokemon_v2_pokemonitems_aggregate: pokemon_v2_pokemonitem_aggregate_bool_exp - pokemon_v2_pokemonmoves: pokemon_v2_pokemonmove_bool_exp - pokemon_v2_pokemonmoves_aggregate: pokemon_v2_pokemonmove_aggregate_bool_exp - pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_bool_exp - pokemon_v2_pokemonsprites: pokemon_v2_pokemonsprites_bool_exp - pokemon_v2_pokemonsprites_aggregate: pokemon_v2_pokemonsprites_aggregate_bool_exp - pokemon_v2_pokemonstats: pokemon_v2_pokemonstat_bool_exp - pokemon_v2_pokemonstats_aggregate: pokemon_v2_pokemonstat_aggregate_bool_exp - pokemon_v2_pokemontypepasts: pokemon_v2_pokemontypepast_bool_exp - pokemon_v2_pokemontypepasts_aggregate: pokemon_v2_pokemontypepast_aggregate_bool_exp - pokemon_v2_pokemontypes: pokemon_v2_pokemontype_bool_exp - pokemon_v2_pokemontypes_aggregate: pokemon_v2_pokemontype_aggregate_bool_exp - weight: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokemon_max_fields { - base_experience: Int - height: Int - id: Int - name: String - order: Int - pokemon_species_id: Int - weight: Int -} - -""" -order by max() on columns of table "pokemon_v2_pokemon" -""" -input pokemon_v2_pokemon_max_order_by { - base_experience: order_by - height: order_by - id: order_by - name: order_by - order: order_by - pokemon_species_id: order_by - weight: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_pokemon_min_fields { - base_experience: Int - height: Int - id: Int - name: String - order: Int - pokemon_species_id: Int - weight: Int -} - -""" -order by min() on columns of table "pokemon_v2_pokemon" -""" -input pokemon_v2_pokemon_min_order_by { - base_experience: order_by - height: order_by - id: order_by - name: order_by - order: order_by - pokemon_species_id: order_by - weight: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_pokemon".""" -input pokemon_v2_pokemon_order_by { - base_experience: order_by - height: order_by - id: order_by - is_default: order_by - name: order_by - order: order_by - pokemon_species_id: order_by - pokemon_v2_encounters_aggregate: pokemon_v2_encounter_aggregate_order_by - pokemon_v2_pokemonabilities_aggregate: pokemon_v2_pokemonability_aggregate_order_by - pokemon_v2_pokemonabilitypasts_aggregate: pokemon_v2_pokemonabilitypast_aggregate_order_by - pokemon_v2_pokemoncries_aggregate: pokemon_v2_pokemoncries_aggregate_order_by - pokemon_v2_pokemonforms_aggregate: pokemon_v2_pokemonform_aggregate_order_by - pokemon_v2_pokemongameindices_aggregate: pokemon_v2_pokemongameindex_aggregate_order_by - pokemon_v2_pokemonitems_aggregate: pokemon_v2_pokemonitem_aggregate_order_by - pokemon_v2_pokemonmoves_aggregate: pokemon_v2_pokemonmove_aggregate_order_by - pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_order_by - pokemon_v2_pokemonsprites_aggregate: pokemon_v2_pokemonsprites_aggregate_order_by - pokemon_v2_pokemonstats_aggregate: pokemon_v2_pokemonstat_aggregate_order_by - pokemon_v2_pokemontypepasts_aggregate: pokemon_v2_pokemontypepast_aggregate_order_by - pokemon_v2_pokemontypes_aggregate: pokemon_v2_pokemontype_aggregate_order_by - weight: order_by -} - -""" -select columns of table "pokemon_v2_pokemon" -""" -enum pokemon_v2_pokemon_select_column { - """column name""" - base_experience - - """column name""" - height - - """column name""" - id - - """column name""" - is_default - - """column name""" - name - - """column name""" - order - - """column name""" - pokemon_species_id - - """column name""" - weight -} - -""" -select "pokemon_v2_pokemon_aggregate_bool_exp_bool_and_arguments_columns" columns of table "pokemon_v2_pokemon" -""" -enum pokemon_v2_pokemon_select_column_pokemon_v2_pokemon_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - is_default -} - -""" -select "pokemon_v2_pokemon_aggregate_bool_exp_bool_or_arguments_columns" columns of table "pokemon_v2_pokemon" -""" -enum pokemon_v2_pokemon_select_column_pokemon_v2_pokemon_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - is_default -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokemon_stddev_fields { - base_experience: Float - height: Float - id: Float - order: Float - pokemon_species_id: Float - weight: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_pokemon" -""" -input pokemon_v2_pokemon_stddev_order_by { - base_experience: order_by - height: order_by - id: order_by - order: order_by - pokemon_species_id: order_by - weight: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokemon_stddev_pop_fields { - base_experience: Float - height: Float - id: Float - order: Float - pokemon_species_id: Float - weight: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_pokemon" -""" -input pokemon_v2_pokemon_stddev_pop_order_by { - base_experience: order_by - height: order_by - id: order_by - order: order_by - pokemon_species_id: order_by - weight: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokemon_stddev_samp_fields { - base_experience: Float - height: Float - id: Float - order: Float - pokemon_species_id: Float - weight: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_pokemon" -""" -input pokemon_v2_pokemon_stddev_samp_order_by { - base_experience: order_by - height: order_by - id: order_by - order: order_by - pokemon_species_id: order_by - weight: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_pokemon" -""" -input pokemon_v2_pokemon_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokemon_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokemon_stream_cursor_value_input { - base_experience: Int - height: Int - id: Int - is_default: Boolean - name: String - order: Int - pokemon_species_id: Int - weight: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_pokemon_sum_fields { - base_experience: Int - height: Int - id: Int - order: Int - pokemon_species_id: Int - weight: Int -} - -""" -order by sum() on columns of table "pokemon_v2_pokemon" -""" -input pokemon_v2_pokemon_sum_order_by { - base_experience: order_by - height: order_by - id: order_by - order: order_by - pokemon_species_id: order_by - weight: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokemon_var_pop_fields { - base_experience: Float - height: Float - id: Float - order: Float - pokemon_species_id: Float - weight: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_pokemon" -""" -input pokemon_v2_pokemon_var_pop_order_by { - base_experience: order_by - height: order_by - id: order_by - order: order_by - pokemon_species_id: order_by - weight: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokemon_var_samp_fields { - base_experience: Float - height: Float - id: Float - order: Float - pokemon_species_id: Float - weight: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_pokemon" -""" -input pokemon_v2_pokemon_var_samp_order_by { - base_experience: order_by - height: order_by - id: order_by - order: order_by - pokemon_species_id: order_by - weight: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_pokemon_variance_fields { - base_experience: Float - height: Float - id: Float - order: Float - pokemon_species_id: Float - weight: Float -} - -""" -order by variance() on columns of table "pokemon_v2_pokemon" -""" -input pokemon_v2_pokemon_variance_order_by { - base_experience: order_by - height: order_by - id: order_by - order: order_by - pokemon_species_id: order_by - weight: order_by -} - -""" -columns and relationships of "pokemon_v2_pokemonability" -""" -type pokemon_v2_pokemonability { - ability_id: Int - id: Int! - is_hidden: Boolean! - pokemon_id: Int - - """An object relationship""" - pokemon_v2_ability: pokemon_v2_ability - - """An object relationship""" - pokemon_v2_pokemon: pokemon_v2_pokemon - slot: Int! -} - -""" -aggregated selection of "pokemon_v2_pokemonability" -""" -type pokemon_v2_pokemonability_aggregate { - aggregate: pokemon_v2_pokemonability_aggregate_fields - nodes: [pokemon_v2_pokemonability!]! -} - -input pokemon_v2_pokemonability_aggregate_bool_exp { - bool_and: pokemon_v2_pokemonability_aggregate_bool_exp_bool_and - bool_or: pokemon_v2_pokemonability_aggregate_bool_exp_bool_or - count: pokemon_v2_pokemonability_aggregate_bool_exp_count -} - -input pokemon_v2_pokemonability_aggregate_bool_exp_bool_and { - arguments: pokemon_v2_pokemonability_select_column_pokemon_v2_pokemonability_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: pokemon_v2_pokemonability_bool_exp - predicate: Boolean_comparison_exp! -} - -input pokemon_v2_pokemonability_aggregate_bool_exp_bool_or { - arguments: pokemon_v2_pokemonability_select_column_pokemon_v2_pokemonability_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: pokemon_v2_pokemonability_bool_exp - predicate: Boolean_comparison_exp! -} - -input pokemon_v2_pokemonability_aggregate_bool_exp_count { - arguments: [pokemon_v2_pokemonability_select_column!] - distinct: Boolean - filter: pokemon_v2_pokemonability_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_pokemonability" -""" -type pokemon_v2_pokemonability_aggregate_fields { - avg: pokemon_v2_pokemonability_avg_fields - count(columns: [pokemon_v2_pokemonability_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokemonability_max_fields - min: pokemon_v2_pokemonability_min_fields - stddev: pokemon_v2_pokemonability_stddev_fields - stddev_pop: pokemon_v2_pokemonability_stddev_pop_fields - stddev_samp: pokemon_v2_pokemonability_stddev_samp_fields - sum: pokemon_v2_pokemonability_sum_fields - var_pop: pokemon_v2_pokemonability_var_pop_fields - var_samp: pokemon_v2_pokemonability_var_samp_fields - variance: pokemon_v2_pokemonability_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_pokemonability" -""" -input pokemon_v2_pokemonability_aggregate_order_by { - avg: pokemon_v2_pokemonability_avg_order_by - count: order_by - max: pokemon_v2_pokemonability_max_order_by - min: pokemon_v2_pokemonability_min_order_by - stddev: pokemon_v2_pokemonability_stddev_order_by - stddev_pop: pokemon_v2_pokemonability_stddev_pop_order_by - stddev_samp: pokemon_v2_pokemonability_stddev_samp_order_by - sum: pokemon_v2_pokemonability_sum_order_by - var_pop: pokemon_v2_pokemonability_var_pop_order_by - var_samp: pokemon_v2_pokemonability_var_samp_order_by - variance: pokemon_v2_pokemonability_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_pokemonability_avg_fields { - ability_id: Float - id: Float - pokemon_id: Float - slot: Float -} - -""" -order by avg() on columns of table "pokemon_v2_pokemonability" -""" -input pokemon_v2_pokemonability_avg_order_by { - ability_id: order_by - id: order_by - pokemon_id: order_by - slot: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokemonability". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokemonability_bool_exp { - _and: [pokemon_v2_pokemonability_bool_exp!] - _not: pokemon_v2_pokemonability_bool_exp - _or: [pokemon_v2_pokemonability_bool_exp!] - ability_id: Int_comparison_exp - id: Int_comparison_exp - is_hidden: Boolean_comparison_exp - pokemon_id: Int_comparison_exp - pokemon_v2_ability: pokemon_v2_ability_bool_exp - pokemon_v2_pokemon: pokemon_v2_pokemon_bool_exp - slot: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokemonability_max_fields { - ability_id: Int - id: Int - pokemon_id: Int - slot: Int -} - -""" -order by max() on columns of table "pokemon_v2_pokemonability" -""" -input pokemon_v2_pokemonability_max_order_by { - ability_id: order_by - id: order_by - pokemon_id: order_by - slot: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_pokemonability_min_fields { - ability_id: Int - id: Int - pokemon_id: Int - slot: Int -} - -""" -order by min() on columns of table "pokemon_v2_pokemonability" -""" -input pokemon_v2_pokemonability_min_order_by { - ability_id: order_by - id: order_by - pokemon_id: order_by - slot: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_pokemonability".""" -input pokemon_v2_pokemonability_order_by { - ability_id: order_by - id: order_by - is_hidden: order_by - pokemon_id: order_by - pokemon_v2_ability: pokemon_v2_ability_order_by - pokemon_v2_pokemon: pokemon_v2_pokemon_order_by - slot: order_by -} - -""" -select columns of table "pokemon_v2_pokemonability" -""" -enum pokemon_v2_pokemonability_select_column { - """column name""" - ability_id - - """column name""" - id - - """column name""" - is_hidden - - """column name""" - pokemon_id - - """column name""" - slot -} - -""" -select "pokemon_v2_pokemonability_aggregate_bool_exp_bool_and_arguments_columns" columns of table "pokemon_v2_pokemonability" -""" -enum pokemon_v2_pokemonability_select_column_pokemon_v2_pokemonability_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - is_hidden -} - -""" -select "pokemon_v2_pokemonability_aggregate_bool_exp_bool_or_arguments_columns" columns of table "pokemon_v2_pokemonability" -""" -enum pokemon_v2_pokemonability_select_column_pokemon_v2_pokemonability_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - is_hidden -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokemonability_stddev_fields { - ability_id: Float - id: Float - pokemon_id: Float - slot: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_pokemonability" -""" -input pokemon_v2_pokemonability_stddev_order_by { - ability_id: order_by - id: order_by - pokemon_id: order_by - slot: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokemonability_stddev_pop_fields { - ability_id: Float - id: Float - pokemon_id: Float - slot: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_pokemonability" -""" -input pokemon_v2_pokemonability_stddev_pop_order_by { - ability_id: order_by - id: order_by - pokemon_id: order_by - slot: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokemonability_stddev_samp_fields { - ability_id: Float - id: Float - pokemon_id: Float - slot: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_pokemonability" -""" -input pokemon_v2_pokemonability_stddev_samp_order_by { - ability_id: order_by - id: order_by - pokemon_id: order_by - slot: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_pokemonability" -""" -input pokemon_v2_pokemonability_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokemonability_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokemonability_stream_cursor_value_input { - ability_id: Int - id: Int - is_hidden: Boolean - pokemon_id: Int - slot: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_pokemonability_sum_fields { - ability_id: Int - id: Int - pokemon_id: Int - slot: Int -} - -""" -order by sum() on columns of table "pokemon_v2_pokemonability" -""" -input pokemon_v2_pokemonability_sum_order_by { - ability_id: order_by - id: order_by - pokemon_id: order_by - slot: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokemonability_var_pop_fields { - ability_id: Float - id: Float - pokemon_id: Float - slot: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_pokemonability" -""" -input pokemon_v2_pokemonability_var_pop_order_by { - ability_id: order_by - id: order_by - pokemon_id: order_by - slot: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokemonability_var_samp_fields { - ability_id: Float - id: Float - pokemon_id: Float - slot: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_pokemonability" -""" -input pokemon_v2_pokemonability_var_samp_order_by { - ability_id: order_by - id: order_by - pokemon_id: order_by - slot: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_pokemonability_variance_fields { - ability_id: Float - id: Float - pokemon_id: Float - slot: Float -} - -""" -order by variance() on columns of table "pokemon_v2_pokemonability" -""" -input pokemon_v2_pokemonability_variance_order_by { - ability_id: order_by - id: order_by - pokemon_id: order_by - slot: order_by -} - -""" -columns and relationships of "pokemon_v2_pokemonabilitypast" -""" -type pokemon_v2_pokemonabilitypast { - ability_id: Int - generation_id: Int - id: Int! - is_hidden: Boolean! - pokemon_id: Int - - """An object relationship""" - pokemon_v2_ability: pokemon_v2_ability - - """An object relationship""" - pokemon_v2_generation: pokemon_v2_generation - - """An object relationship""" - pokemon_v2_pokemon: pokemon_v2_pokemon - slot: Int! -} - -""" -aggregated selection of "pokemon_v2_pokemonabilitypast" -""" -type pokemon_v2_pokemonabilitypast_aggregate { - aggregate: pokemon_v2_pokemonabilitypast_aggregate_fields - nodes: [pokemon_v2_pokemonabilitypast!]! -} - -input pokemon_v2_pokemonabilitypast_aggregate_bool_exp { - bool_and: pokemon_v2_pokemonabilitypast_aggregate_bool_exp_bool_and - bool_or: pokemon_v2_pokemonabilitypast_aggregate_bool_exp_bool_or - count: pokemon_v2_pokemonabilitypast_aggregate_bool_exp_count -} - -input pokemon_v2_pokemonabilitypast_aggregate_bool_exp_bool_and { - arguments: pokemon_v2_pokemonabilitypast_select_column_pokemon_v2_pokemonabilitypast_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: pokemon_v2_pokemonabilitypast_bool_exp - predicate: Boolean_comparison_exp! -} - -input pokemon_v2_pokemonabilitypast_aggregate_bool_exp_bool_or { - arguments: pokemon_v2_pokemonabilitypast_select_column_pokemon_v2_pokemonabilitypast_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: pokemon_v2_pokemonabilitypast_bool_exp - predicate: Boolean_comparison_exp! -} - -input pokemon_v2_pokemonabilitypast_aggregate_bool_exp_count { - arguments: [pokemon_v2_pokemonabilitypast_select_column!] - distinct: Boolean - filter: pokemon_v2_pokemonabilitypast_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_pokemonabilitypast" -""" -type pokemon_v2_pokemonabilitypast_aggregate_fields { - avg: pokemon_v2_pokemonabilitypast_avg_fields - count(columns: [pokemon_v2_pokemonabilitypast_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokemonabilitypast_max_fields - min: pokemon_v2_pokemonabilitypast_min_fields - stddev: pokemon_v2_pokemonabilitypast_stddev_fields - stddev_pop: pokemon_v2_pokemonabilitypast_stddev_pop_fields - stddev_samp: pokemon_v2_pokemonabilitypast_stddev_samp_fields - sum: pokemon_v2_pokemonabilitypast_sum_fields - var_pop: pokemon_v2_pokemonabilitypast_var_pop_fields - var_samp: pokemon_v2_pokemonabilitypast_var_samp_fields - variance: pokemon_v2_pokemonabilitypast_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_pokemonabilitypast" -""" -input pokemon_v2_pokemonabilitypast_aggregate_order_by { - avg: pokemon_v2_pokemonabilitypast_avg_order_by - count: order_by - max: pokemon_v2_pokemonabilitypast_max_order_by - min: pokemon_v2_pokemonabilitypast_min_order_by - stddev: pokemon_v2_pokemonabilitypast_stddev_order_by - stddev_pop: pokemon_v2_pokemonabilitypast_stddev_pop_order_by - stddev_samp: pokemon_v2_pokemonabilitypast_stddev_samp_order_by - sum: pokemon_v2_pokemonabilitypast_sum_order_by - var_pop: pokemon_v2_pokemonabilitypast_var_pop_order_by - var_samp: pokemon_v2_pokemonabilitypast_var_samp_order_by - variance: pokemon_v2_pokemonabilitypast_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_pokemonabilitypast_avg_fields { - ability_id: Float - generation_id: Float - id: Float - pokemon_id: Float - slot: Float -} - -""" -order by avg() on columns of table "pokemon_v2_pokemonabilitypast" -""" -input pokemon_v2_pokemonabilitypast_avg_order_by { - ability_id: order_by - generation_id: order_by - id: order_by - pokemon_id: order_by - slot: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokemonabilitypast". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokemonabilitypast_bool_exp { - _and: [pokemon_v2_pokemonabilitypast_bool_exp!] - _not: pokemon_v2_pokemonabilitypast_bool_exp - _or: [pokemon_v2_pokemonabilitypast_bool_exp!] - ability_id: Int_comparison_exp - generation_id: Int_comparison_exp - id: Int_comparison_exp - is_hidden: Boolean_comparison_exp - pokemon_id: Int_comparison_exp - pokemon_v2_ability: pokemon_v2_ability_bool_exp - pokemon_v2_generation: pokemon_v2_generation_bool_exp - pokemon_v2_pokemon: pokemon_v2_pokemon_bool_exp - slot: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokemonabilitypast_max_fields { - ability_id: Int - generation_id: Int - id: Int - pokemon_id: Int - slot: Int -} - -""" -order by max() on columns of table "pokemon_v2_pokemonabilitypast" -""" -input pokemon_v2_pokemonabilitypast_max_order_by { - ability_id: order_by - generation_id: order_by - id: order_by - pokemon_id: order_by - slot: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_pokemonabilitypast_min_fields { - ability_id: Int - generation_id: Int - id: Int - pokemon_id: Int - slot: Int -} - -""" -order by min() on columns of table "pokemon_v2_pokemonabilitypast" -""" -input pokemon_v2_pokemonabilitypast_min_order_by { - ability_id: order_by - generation_id: order_by - id: order_by - pokemon_id: order_by - slot: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_pokemonabilitypast". -""" -input pokemon_v2_pokemonabilitypast_order_by { - ability_id: order_by - generation_id: order_by - id: order_by - is_hidden: order_by - pokemon_id: order_by - pokemon_v2_ability: pokemon_v2_ability_order_by - pokemon_v2_generation: pokemon_v2_generation_order_by - pokemon_v2_pokemon: pokemon_v2_pokemon_order_by - slot: order_by -} - -""" -select columns of table "pokemon_v2_pokemonabilitypast" -""" -enum pokemon_v2_pokemonabilitypast_select_column { - """column name""" - ability_id - - """column name""" - generation_id - - """column name""" - id - - """column name""" - is_hidden - - """column name""" - pokemon_id - - """column name""" - slot -} - -""" -select "pokemon_v2_pokemonabilitypast_aggregate_bool_exp_bool_and_arguments_columns" columns of table "pokemon_v2_pokemonabilitypast" -""" -enum pokemon_v2_pokemonabilitypast_select_column_pokemon_v2_pokemonabilitypast_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - is_hidden -} - -""" -select "pokemon_v2_pokemonabilitypast_aggregate_bool_exp_bool_or_arguments_columns" columns of table "pokemon_v2_pokemonabilitypast" -""" -enum pokemon_v2_pokemonabilitypast_select_column_pokemon_v2_pokemonabilitypast_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - is_hidden -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokemonabilitypast_stddev_fields { - ability_id: Float - generation_id: Float - id: Float - pokemon_id: Float - slot: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_pokemonabilitypast" -""" -input pokemon_v2_pokemonabilitypast_stddev_order_by { - ability_id: order_by - generation_id: order_by - id: order_by - pokemon_id: order_by - slot: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokemonabilitypast_stddev_pop_fields { - ability_id: Float - generation_id: Float - id: Float - pokemon_id: Float - slot: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_pokemonabilitypast" -""" -input pokemon_v2_pokemonabilitypast_stddev_pop_order_by { - ability_id: order_by - generation_id: order_by - id: order_by - pokemon_id: order_by - slot: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokemonabilitypast_stddev_samp_fields { - ability_id: Float - generation_id: Float - id: Float - pokemon_id: Float - slot: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_pokemonabilitypast" -""" -input pokemon_v2_pokemonabilitypast_stddev_samp_order_by { - ability_id: order_by - generation_id: order_by - id: order_by - pokemon_id: order_by - slot: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_pokemonabilitypast" -""" -input pokemon_v2_pokemonabilitypast_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokemonabilitypast_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokemonabilitypast_stream_cursor_value_input { - ability_id: Int - generation_id: Int - id: Int - is_hidden: Boolean - pokemon_id: Int - slot: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_pokemonabilitypast_sum_fields { - ability_id: Int - generation_id: Int - id: Int - pokemon_id: Int - slot: Int -} - -""" -order by sum() on columns of table "pokemon_v2_pokemonabilitypast" -""" -input pokemon_v2_pokemonabilitypast_sum_order_by { - ability_id: order_by - generation_id: order_by - id: order_by - pokemon_id: order_by - slot: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokemonabilitypast_var_pop_fields { - ability_id: Float - generation_id: Float - id: Float - pokemon_id: Float - slot: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_pokemonabilitypast" -""" -input pokemon_v2_pokemonabilitypast_var_pop_order_by { - ability_id: order_by - generation_id: order_by - id: order_by - pokemon_id: order_by - slot: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokemonabilitypast_var_samp_fields { - ability_id: Float - generation_id: Float - id: Float - pokemon_id: Float - slot: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_pokemonabilitypast" -""" -input pokemon_v2_pokemonabilitypast_var_samp_order_by { - ability_id: order_by - generation_id: order_by - id: order_by - pokemon_id: order_by - slot: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_pokemonabilitypast_variance_fields { - ability_id: Float - generation_id: Float - id: Float - pokemon_id: Float - slot: Float -} - -""" -order by variance() on columns of table "pokemon_v2_pokemonabilitypast" -""" -input pokemon_v2_pokemonabilitypast_variance_order_by { - ability_id: order_by - generation_id: order_by - id: order_by - pokemon_id: order_by - slot: order_by -} - -""" -columns and relationships of "pokemon_v2_pokemoncolor" -""" -type pokemon_v2_pokemoncolor { - id: Int! - name: String! - - """An array relationship""" - pokemon_v2_pokemoncolornames( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemoncolorname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemoncolorname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemoncolorname_bool_exp - ): [pokemon_v2_pokemoncolorname!]! - - """An aggregate relationship""" - pokemon_v2_pokemoncolornames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemoncolorname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemoncolorname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemoncolorname_bool_exp - ): pokemon_v2_pokemoncolorname_aggregate! - - """An array relationship""" - pokemon_v2_pokemonspecies( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspecies_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspecies_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspecies_bool_exp - ): [pokemon_v2_pokemonspecies!]! - - """An aggregate relationship""" - pokemon_v2_pokemonspecies_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspecies_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspecies_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspecies_bool_exp - ): pokemon_v2_pokemonspecies_aggregate! -} - -""" -aggregated selection of "pokemon_v2_pokemoncolor" -""" -type pokemon_v2_pokemoncolor_aggregate { - aggregate: pokemon_v2_pokemoncolor_aggregate_fields - nodes: [pokemon_v2_pokemoncolor!]! -} - -""" -aggregate fields of "pokemon_v2_pokemoncolor" -""" -type pokemon_v2_pokemoncolor_aggregate_fields { - avg: pokemon_v2_pokemoncolor_avg_fields - count(columns: [pokemon_v2_pokemoncolor_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokemoncolor_max_fields - min: pokemon_v2_pokemoncolor_min_fields - stddev: pokemon_v2_pokemoncolor_stddev_fields - stddev_pop: pokemon_v2_pokemoncolor_stddev_pop_fields - stddev_samp: pokemon_v2_pokemoncolor_stddev_samp_fields - sum: pokemon_v2_pokemoncolor_sum_fields - var_pop: pokemon_v2_pokemoncolor_var_pop_fields - var_samp: pokemon_v2_pokemoncolor_var_samp_fields - variance: pokemon_v2_pokemoncolor_variance_fields -} - -"""aggregate avg on columns""" -type pokemon_v2_pokemoncolor_avg_fields { - id: Float -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokemoncolor". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokemoncolor_bool_exp { - _and: [pokemon_v2_pokemoncolor_bool_exp!] - _not: pokemon_v2_pokemoncolor_bool_exp - _or: [pokemon_v2_pokemoncolor_bool_exp!] - id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_pokemoncolornames: pokemon_v2_pokemoncolorname_bool_exp - pokemon_v2_pokemoncolornames_aggregate: pokemon_v2_pokemoncolorname_aggregate_bool_exp - pokemon_v2_pokemonspecies: pokemon_v2_pokemonspecies_bool_exp - pokemon_v2_pokemonspecies_aggregate: pokemon_v2_pokemonspecies_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokemoncolor_max_fields { - id: Int - name: String -} - -"""aggregate min on columns""" -type pokemon_v2_pokemoncolor_min_fields { - id: Int - name: String -} - -"""Ordering options when selecting data from "pokemon_v2_pokemoncolor".""" -input pokemon_v2_pokemoncolor_order_by { - id: order_by - name: order_by - pokemon_v2_pokemoncolornames_aggregate: pokemon_v2_pokemoncolorname_aggregate_order_by - pokemon_v2_pokemonspecies_aggregate: pokemon_v2_pokemonspecies_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_pokemoncolor" -""" -enum pokemon_v2_pokemoncolor_select_column { - """column name""" - id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokemoncolor_stddev_fields { - id: Float -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokemoncolor_stddev_pop_fields { - id: Float -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokemoncolor_stddev_samp_fields { - id: Float -} - -""" -Streaming cursor of the table "pokemon_v2_pokemoncolor" -""" -input pokemon_v2_pokemoncolor_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokemoncolor_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokemoncolor_stream_cursor_value_input { - id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_pokemoncolor_sum_fields { - id: Int -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokemoncolor_var_pop_fields { - id: Float -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokemoncolor_var_samp_fields { - id: Float -} - -"""aggregate variance on columns""" -type pokemon_v2_pokemoncolor_variance_fields { - id: Float -} - -""" -columns and relationships of "pokemon_v2_pokemoncolorname" -""" -type pokemon_v2_pokemoncolorname { - id: Int! - language_id: Int - name: String! - pokemon_color_id: Int - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_pokemoncolor: pokemon_v2_pokemoncolor -} - -""" -aggregated selection of "pokemon_v2_pokemoncolorname" -""" -type pokemon_v2_pokemoncolorname_aggregate { - aggregate: pokemon_v2_pokemoncolorname_aggregate_fields - nodes: [pokemon_v2_pokemoncolorname!]! -} - -input pokemon_v2_pokemoncolorname_aggregate_bool_exp { - count: pokemon_v2_pokemoncolorname_aggregate_bool_exp_count -} - -input pokemon_v2_pokemoncolorname_aggregate_bool_exp_count { - arguments: [pokemon_v2_pokemoncolorname_select_column!] - distinct: Boolean - filter: pokemon_v2_pokemoncolorname_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_pokemoncolorname" -""" -type pokemon_v2_pokemoncolorname_aggregate_fields { - avg: pokemon_v2_pokemoncolorname_avg_fields - count(columns: [pokemon_v2_pokemoncolorname_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokemoncolorname_max_fields - min: pokemon_v2_pokemoncolorname_min_fields - stddev: pokemon_v2_pokemoncolorname_stddev_fields - stddev_pop: pokemon_v2_pokemoncolorname_stddev_pop_fields - stddev_samp: pokemon_v2_pokemoncolorname_stddev_samp_fields - sum: pokemon_v2_pokemoncolorname_sum_fields - var_pop: pokemon_v2_pokemoncolorname_var_pop_fields - var_samp: pokemon_v2_pokemoncolorname_var_samp_fields - variance: pokemon_v2_pokemoncolorname_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_pokemoncolorname" -""" -input pokemon_v2_pokemoncolorname_aggregate_order_by { - avg: pokemon_v2_pokemoncolorname_avg_order_by - count: order_by - max: pokemon_v2_pokemoncolorname_max_order_by - min: pokemon_v2_pokemoncolorname_min_order_by - stddev: pokemon_v2_pokemoncolorname_stddev_order_by - stddev_pop: pokemon_v2_pokemoncolorname_stddev_pop_order_by - stddev_samp: pokemon_v2_pokemoncolorname_stddev_samp_order_by - sum: pokemon_v2_pokemoncolorname_sum_order_by - var_pop: pokemon_v2_pokemoncolorname_var_pop_order_by - var_samp: pokemon_v2_pokemoncolorname_var_samp_order_by - variance: pokemon_v2_pokemoncolorname_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_pokemoncolorname_avg_fields { - id: Float - language_id: Float - pokemon_color_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_pokemoncolorname" -""" -input pokemon_v2_pokemoncolorname_avg_order_by { - id: order_by - language_id: order_by - pokemon_color_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokemoncolorname". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokemoncolorname_bool_exp { - _and: [pokemon_v2_pokemoncolorname_bool_exp!] - _not: pokemon_v2_pokemoncolorname_bool_exp - _or: [pokemon_v2_pokemoncolorname_bool_exp!] - id: Int_comparison_exp - language_id: Int_comparison_exp - name: String_comparison_exp - pokemon_color_id: Int_comparison_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_pokemoncolor: pokemon_v2_pokemoncolor_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokemoncolorname_max_fields { - id: Int - language_id: Int - name: String - pokemon_color_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_pokemoncolorname" -""" -input pokemon_v2_pokemoncolorname_max_order_by { - id: order_by - language_id: order_by - name: order_by - pokemon_color_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_pokemoncolorname_min_fields { - id: Int - language_id: Int - name: String - pokemon_color_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_pokemoncolorname" -""" -input pokemon_v2_pokemoncolorname_min_order_by { - id: order_by - language_id: order_by - name: order_by - pokemon_color_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_pokemoncolorname". -""" -input pokemon_v2_pokemoncolorname_order_by { - id: order_by - language_id: order_by - name: order_by - pokemon_color_id: order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_pokemoncolor: pokemon_v2_pokemoncolor_order_by -} - -""" -select columns of table "pokemon_v2_pokemoncolorname" -""" -enum pokemon_v2_pokemoncolorname_select_column { - """column name""" - id - - """column name""" - language_id - - """column name""" - name - - """column name""" - pokemon_color_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokemoncolorname_stddev_fields { - id: Float - language_id: Float - pokemon_color_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_pokemoncolorname" -""" -input pokemon_v2_pokemoncolorname_stddev_order_by { - id: order_by - language_id: order_by - pokemon_color_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokemoncolorname_stddev_pop_fields { - id: Float - language_id: Float - pokemon_color_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_pokemoncolorname" -""" -input pokemon_v2_pokemoncolorname_stddev_pop_order_by { - id: order_by - language_id: order_by - pokemon_color_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokemoncolorname_stddev_samp_fields { - id: Float - language_id: Float - pokemon_color_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_pokemoncolorname" -""" -input pokemon_v2_pokemoncolorname_stddev_samp_order_by { - id: order_by - language_id: order_by - pokemon_color_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_pokemoncolorname" -""" -input pokemon_v2_pokemoncolorname_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokemoncolorname_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokemoncolorname_stream_cursor_value_input { - id: Int - language_id: Int - name: String - pokemon_color_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_pokemoncolorname_sum_fields { - id: Int - language_id: Int - pokemon_color_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_pokemoncolorname" -""" -input pokemon_v2_pokemoncolorname_sum_order_by { - id: order_by - language_id: order_by - pokemon_color_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokemoncolorname_var_pop_fields { - id: Float - language_id: Float - pokemon_color_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_pokemoncolorname" -""" -input pokemon_v2_pokemoncolorname_var_pop_order_by { - id: order_by - language_id: order_by - pokemon_color_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokemoncolorname_var_samp_fields { - id: Float - language_id: Float - pokemon_color_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_pokemoncolorname" -""" -input pokemon_v2_pokemoncolorname_var_samp_order_by { - id: order_by - language_id: order_by - pokemon_color_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_pokemoncolorname_variance_fields { - id: Float - language_id: Float - pokemon_color_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_pokemoncolorname" -""" -input pokemon_v2_pokemoncolorname_variance_order_by { - id: order_by - language_id: order_by - pokemon_color_id: order_by -} - -""" -columns and relationships of "pokemon_v2_pokemoncries" -""" -type pokemon_v2_pokemoncries { - cries( - """JSON select path""" - path: String - ): jsonb! - id: Int! - pokemon_id: Int - - """An object relationship""" - pokemon_v2_pokemon: pokemon_v2_pokemon -} - -""" -aggregated selection of "pokemon_v2_pokemoncries" -""" -type pokemon_v2_pokemoncries_aggregate { - aggregate: pokemon_v2_pokemoncries_aggregate_fields - nodes: [pokemon_v2_pokemoncries!]! -} - -input pokemon_v2_pokemoncries_aggregate_bool_exp { - count: pokemon_v2_pokemoncries_aggregate_bool_exp_count -} - -input pokemon_v2_pokemoncries_aggregate_bool_exp_count { - arguments: [pokemon_v2_pokemoncries_select_column!] - distinct: Boolean - filter: pokemon_v2_pokemoncries_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_pokemoncries" -""" -type pokemon_v2_pokemoncries_aggregate_fields { - avg: pokemon_v2_pokemoncries_avg_fields - count(columns: [pokemon_v2_pokemoncries_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokemoncries_max_fields - min: pokemon_v2_pokemoncries_min_fields - stddev: pokemon_v2_pokemoncries_stddev_fields - stddev_pop: pokemon_v2_pokemoncries_stddev_pop_fields - stddev_samp: pokemon_v2_pokemoncries_stddev_samp_fields - sum: pokemon_v2_pokemoncries_sum_fields - var_pop: pokemon_v2_pokemoncries_var_pop_fields - var_samp: pokemon_v2_pokemoncries_var_samp_fields - variance: pokemon_v2_pokemoncries_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_pokemoncries" -""" -input pokemon_v2_pokemoncries_aggregate_order_by { - avg: pokemon_v2_pokemoncries_avg_order_by - count: order_by - max: pokemon_v2_pokemoncries_max_order_by - min: pokemon_v2_pokemoncries_min_order_by - stddev: pokemon_v2_pokemoncries_stddev_order_by - stddev_pop: pokemon_v2_pokemoncries_stddev_pop_order_by - stddev_samp: pokemon_v2_pokemoncries_stddev_samp_order_by - sum: pokemon_v2_pokemoncries_sum_order_by - var_pop: pokemon_v2_pokemoncries_var_pop_order_by - var_samp: pokemon_v2_pokemoncries_var_samp_order_by - variance: pokemon_v2_pokemoncries_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_pokemoncries_avg_fields { - id: Float - pokemon_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_pokemoncries" -""" -input pokemon_v2_pokemoncries_avg_order_by { - id: order_by - pokemon_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokemoncries". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokemoncries_bool_exp { - _and: [pokemon_v2_pokemoncries_bool_exp!] - _not: pokemon_v2_pokemoncries_bool_exp - _or: [pokemon_v2_pokemoncries_bool_exp!] - cries: jsonb_comparison_exp - id: Int_comparison_exp - pokemon_id: Int_comparison_exp - pokemon_v2_pokemon: pokemon_v2_pokemon_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokemoncries_max_fields { - id: Int - pokemon_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_pokemoncries" -""" -input pokemon_v2_pokemoncries_max_order_by { - id: order_by - pokemon_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_pokemoncries_min_fields { - id: Int - pokemon_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_pokemoncries" -""" -input pokemon_v2_pokemoncries_min_order_by { - id: order_by - pokemon_id: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_pokemoncries".""" -input pokemon_v2_pokemoncries_order_by { - cries: order_by - id: order_by - pokemon_id: order_by - pokemon_v2_pokemon: pokemon_v2_pokemon_order_by -} - -""" -select columns of table "pokemon_v2_pokemoncries" -""" -enum pokemon_v2_pokemoncries_select_column { - """column name""" - cries - - """column name""" - id - - """column name""" - pokemon_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokemoncries_stddev_fields { - id: Float - pokemon_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_pokemoncries" -""" -input pokemon_v2_pokemoncries_stddev_order_by { - id: order_by - pokemon_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokemoncries_stddev_pop_fields { - id: Float - pokemon_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_pokemoncries" -""" -input pokemon_v2_pokemoncries_stddev_pop_order_by { - id: order_by - pokemon_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokemoncries_stddev_samp_fields { - id: Float - pokemon_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_pokemoncries" -""" -input pokemon_v2_pokemoncries_stddev_samp_order_by { - id: order_by - pokemon_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_pokemoncries" -""" -input pokemon_v2_pokemoncries_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokemoncries_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokemoncries_stream_cursor_value_input { - cries: jsonb - id: Int - pokemon_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_pokemoncries_sum_fields { - id: Int - pokemon_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_pokemoncries" -""" -input pokemon_v2_pokemoncries_sum_order_by { - id: order_by - pokemon_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokemoncries_var_pop_fields { - id: Float - pokemon_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_pokemoncries" -""" -input pokemon_v2_pokemoncries_var_pop_order_by { - id: order_by - pokemon_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokemoncries_var_samp_fields { - id: Float - pokemon_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_pokemoncries" -""" -input pokemon_v2_pokemoncries_var_samp_order_by { - id: order_by - pokemon_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_pokemoncries_variance_fields { - id: Float - pokemon_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_pokemoncries" -""" -input pokemon_v2_pokemoncries_variance_order_by { - id: order_by - pokemon_id: order_by -} - -""" -columns and relationships of "pokemon_v2_pokemondexnumber" -""" -type pokemon_v2_pokemondexnumber { - id: Int! - pokedex_id: Int - pokedex_number: Int! - pokemon_species_id: Int - - """An object relationship""" - pokemon_v2_pokedex: pokemon_v2_pokedex - - """An object relationship""" - pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies -} - -""" -aggregated selection of "pokemon_v2_pokemondexnumber" -""" -type pokemon_v2_pokemondexnumber_aggregate { - aggregate: pokemon_v2_pokemondexnumber_aggregate_fields - nodes: [pokemon_v2_pokemondexnumber!]! -} - -input pokemon_v2_pokemondexnumber_aggregate_bool_exp { - count: pokemon_v2_pokemondexnumber_aggregate_bool_exp_count -} - -input pokemon_v2_pokemondexnumber_aggregate_bool_exp_count { - arguments: [pokemon_v2_pokemondexnumber_select_column!] - distinct: Boolean - filter: pokemon_v2_pokemondexnumber_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_pokemondexnumber" -""" -type pokemon_v2_pokemondexnumber_aggregate_fields { - avg: pokemon_v2_pokemondexnumber_avg_fields - count(columns: [pokemon_v2_pokemondexnumber_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokemondexnumber_max_fields - min: pokemon_v2_pokemondexnumber_min_fields - stddev: pokemon_v2_pokemondexnumber_stddev_fields - stddev_pop: pokemon_v2_pokemondexnumber_stddev_pop_fields - stddev_samp: pokemon_v2_pokemondexnumber_stddev_samp_fields - sum: pokemon_v2_pokemondexnumber_sum_fields - var_pop: pokemon_v2_pokemondexnumber_var_pop_fields - var_samp: pokemon_v2_pokemondexnumber_var_samp_fields - variance: pokemon_v2_pokemondexnumber_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_pokemondexnumber" -""" -input pokemon_v2_pokemondexnumber_aggregate_order_by { - avg: pokemon_v2_pokemondexnumber_avg_order_by - count: order_by - max: pokemon_v2_pokemondexnumber_max_order_by - min: pokemon_v2_pokemondexnumber_min_order_by - stddev: pokemon_v2_pokemondexnumber_stddev_order_by - stddev_pop: pokemon_v2_pokemondexnumber_stddev_pop_order_by - stddev_samp: pokemon_v2_pokemondexnumber_stddev_samp_order_by - sum: pokemon_v2_pokemondexnumber_sum_order_by - var_pop: pokemon_v2_pokemondexnumber_var_pop_order_by - var_samp: pokemon_v2_pokemondexnumber_var_samp_order_by - variance: pokemon_v2_pokemondexnumber_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_pokemondexnumber_avg_fields { - id: Float - pokedex_id: Float - pokedex_number: Float - pokemon_species_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_pokemondexnumber" -""" -input pokemon_v2_pokemondexnumber_avg_order_by { - id: order_by - pokedex_id: order_by - pokedex_number: order_by - pokemon_species_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokemondexnumber". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokemondexnumber_bool_exp { - _and: [pokemon_v2_pokemondexnumber_bool_exp!] - _not: pokemon_v2_pokemondexnumber_bool_exp - _or: [pokemon_v2_pokemondexnumber_bool_exp!] - id: Int_comparison_exp - pokedex_id: Int_comparison_exp - pokedex_number: Int_comparison_exp - pokemon_species_id: Int_comparison_exp - pokemon_v2_pokedex: pokemon_v2_pokedex_bool_exp - pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokemondexnumber_max_fields { - id: Int - pokedex_id: Int - pokedex_number: Int - pokemon_species_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_pokemondexnumber" -""" -input pokemon_v2_pokemondexnumber_max_order_by { - id: order_by - pokedex_id: order_by - pokedex_number: order_by - pokemon_species_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_pokemondexnumber_min_fields { - id: Int - pokedex_id: Int - pokedex_number: Int - pokemon_species_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_pokemondexnumber" -""" -input pokemon_v2_pokemondexnumber_min_order_by { - id: order_by - pokedex_id: order_by - pokedex_number: order_by - pokemon_species_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_pokemondexnumber". -""" -input pokemon_v2_pokemondexnumber_order_by { - id: order_by - pokedex_id: order_by - pokedex_number: order_by - pokemon_species_id: order_by - pokemon_v2_pokedex: pokemon_v2_pokedex_order_by - pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_order_by -} - -""" -select columns of table "pokemon_v2_pokemondexnumber" -""" -enum pokemon_v2_pokemondexnumber_select_column { - """column name""" - id - - """column name""" - pokedex_id - - """column name""" - pokedex_number - - """column name""" - pokemon_species_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokemondexnumber_stddev_fields { - id: Float - pokedex_id: Float - pokedex_number: Float - pokemon_species_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_pokemondexnumber" -""" -input pokemon_v2_pokemondexnumber_stddev_order_by { - id: order_by - pokedex_id: order_by - pokedex_number: order_by - pokemon_species_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokemondexnumber_stddev_pop_fields { - id: Float - pokedex_id: Float - pokedex_number: Float - pokemon_species_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_pokemondexnumber" -""" -input pokemon_v2_pokemondexnumber_stddev_pop_order_by { - id: order_by - pokedex_id: order_by - pokedex_number: order_by - pokemon_species_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokemondexnumber_stddev_samp_fields { - id: Float - pokedex_id: Float - pokedex_number: Float - pokemon_species_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_pokemondexnumber" -""" -input pokemon_v2_pokemondexnumber_stddev_samp_order_by { - id: order_by - pokedex_id: order_by - pokedex_number: order_by - pokemon_species_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_pokemondexnumber" -""" -input pokemon_v2_pokemondexnumber_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokemondexnumber_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokemondexnumber_stream_cursor_value_input { - id: Int - pokedex_id: Int - pokedex_number: Int - pokemon_species_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_pokemondexnumber_sum_fields { - id: Int - pokedex_id: Int - pokedex_number: Int - pokemon_species_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_pokemondexnumber" -""" -input pokemon_v2_pokemondexnumber_sum_order_by { - id: order_by - pokedex_id: order_by - pokedex_number: order_by - pokemon_species_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokemondexnumber_var_pop_fields { - id: Float - pokedex_id: Float - pokedex_number: Float - pokemon_species_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_pokemondexnumber" -""" -input pokemon_v2_pokemondexnumber_var_pop_order_by { - id: order_by - pokedex_id: order_by - pokedex_number: order_by - pokemon_species_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokemondexnumber_var_samp_fields { - id: Float - pokedex_id: Float - pokedex_number: Float - pokemon_species_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_pokemondexnumber" -""" -input pokemon_v2_pokemondexnumber_var_samp_order_by { - id: order_by - pokedex_id: order_by - pokedex_number: order_by - pokemon_species_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_pokemondexnumber_variance_fields { - id: Float - pokedex_id: Float - pokedex_number: Float - pokemon_species_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_pokemondexnumber" -""" -input pokemon_v2_pokemondexnumber_variance_order_by { - id: order_by - pokedex_id: order_by - pokedex_number: order_by - pokemon_species_id: order_by -} - -""" -columns and relationships of "pokemon_v2_pokemonegggroup" -""" -type pokemon_v2_pokemonegggroup { - egg_group_id: Int - id: Int! - pokemon_species_id: Int - - """An object relationship""" - pokemon_v2_egggroup: pokemon_v2_egggroup - - """An object relationship""" - pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies -} - -""" -aggregated selection of "pokemon_v2_pokemonegggroup" -""" -type pokemon_v2_pokemonegggroup_aggregate { - aggregate: pokemon_v2_pokemonegggroup_aggregate_fields - nodes: [pokemon_v2_pokemonegggroup!]! -} - -input pokemon_v2_pokemonegggroup_aggregate_bool_exp { - count: pokemon_v2_pokemonegggroup_aggregate_bool_exp_count -} - -input pokemon_v2_pokemonegggroup_aggregate_bool_exp_count { - arguments: [pokemon_v2_pokemonegggroup_select_column!] - distinct: Boolean - filter: pokemon_v2_pokemonegggroup_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_pokemonegggroup" -""" -type pokemon_v2_pokemonegggroup_aggregate_fields { - avg: pokemon_v2_pokemonegggroup_avg_fields - count(columns: [pokemon_v2_pokemonegggroup_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokemonegggroup_max_fields - min: pokemon_v2_pokemonegggroup_min_fields - stddev: pokemon_v2_pokemonegggroup_stddev_fields - stddev_pop: pokemon_v2_pokemonegggroup_stddev_pop_fields - stddev_samp: pokemon_v2_pokemonegggroup_stddev_samp_fields - sum: pokemon_v2_pokemonegggroup_sum_fields - var_pop: pokemon_v2_pokemonegggroup_var_pop_fields - var_samp: pokemon_v2_pokemonegggroup_var_samp_fields - variance: pokemon_v2_pokemonegggroup_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_pokemonegggroup" -""" -input pokemon_v2_pokemonegggroup_aggregate_order_by { - avg: pokemon_v2_pokemonegggroup_avg_order_by - count: order_by - max: pokemon_v2_pokemonegggroup_max_order_by - min: pokemon_v2_pokemonegggroup_min_order_by - stddev: pokemon_v2_pokemonegggroup_stddev_order_by - stddev_pop: pokemon_v2_pokemonegggroup_stddev_pop_order_by - stddev_samp: pokemon_v2_pokemonegggroup_stddev_samp_order_by - sum: pokemon_v2_pokemonegggroup_sum_order_by - var_pop: pokemon_v2_pokemonegggroup_var_pop_order_by - var_samp: pokemon_v2_pokemonegggroup_var_samp_order_by - variance: pokemon_v2_pokemonegggroup_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_pokemonegggroup_avg_fields { - egg_group_id: Float - id: Float - pokemon_species_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_pokemonegggroup" -""" -input pokemon_v2_pokemonegggroup_avg_order_by { - egg_group_id: order_by - id: order_by - pokemon_species_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokemonegggroup". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokemonegggroup_bool_exp { - _and: [pokemon_v2_pokemonegggroup_bool_exp!] - _not: pokemon_v2_pokemonegggroup_bool_exp - _or: [pokemon_v2_pokemonegggroup_bool_exp!] - egg_group_id: Int_comparison_exp - id: Int_comparison_exp - pokemon_species_id: Int_comparison_exp - pokemon_v2_egggroup: pokemon_v2_egggroup_bool_exp - pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokemonegggroup_max_fields { - egg_group_id: Int - id: Int - pokemon_species_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_pokemonegggroup" -""" -input pokemon_v2_pokemonegggroup_max_order_by { - egg_group_id: order_by - id: order_by - pokemon_species_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_pokemonegggroup_min_fields { - egg_group_id: Int - id: Int - pokemon_species_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_pokemonegggroup" -""" -input pokemon_v2_pokemonegggroup_min_order_by { - egg_group_id: order_by - id: order_by - pokemon_species_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_pokemonegggroup". -""" -input pokemon_v2_pokemonegggroup_order_by { - egg_group_id: order_by - id: order_by - pokemon_species_id: order_by - pokemon_v2_egggroup: pokemon_v2_egggroup_order_by - pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_order_by -} - -""" -select columns of table "pokemon_v2_pokemonegggroup" -""" -enum pokemon_v2_pokemonegggroup_select_column { - """column name""" - egg_group_id - - """column name""" - id - - """column name""" - pokemon_species_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokemonegggroup_stddev_fields { - egg_group_id: Float - id: Float - pokemon_species_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_pokemonegggroup" -""" -input pokemon_v2_pokemonegggroup_stddev_order_by { - egg_group_id: order_by - id: order_by - pokemon_species_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokemonegggroup_stddev_pop_fields { - egg_group_id: Float - id: Float - pokemon_species_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_pokemonegggroup" -""" -input pokemon_v2_pokemonegggroup_stddev_pop_order_by { - egg_group_id: order_by - id: order_by - pokemon_species_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokemonegggroup_stddev_samp_fields { - egg_group_id: Float - id: Float - pokemon_species_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_pokemonegggroup" -""" -input pokemon_v2_pokemonegggroup_stddev_samp_order_by { - egg_group_id: order_by - id: order_by - pokemon_species_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_pokemonegggroup" -""" -input pokemon_v2_pokemonegggroup_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokemonegggroup_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokemonegggroup_stream_cursor_value_input { - egg_group_id: Int - id: Int - pokemon_species_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_pokemonegggroup_sum_fields { - egg_group_id: Int - id: Int - pokemon_species_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_pokemonegggroup" -""" -input pokemon_v2_pokemonegggroup_sum_order_by { - egg_group_id: order_by - id: order_by - pokemon_species_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokemonegggroup_var_pop_fields { - egg_group_id: Float - id: Float - pokemon_species_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_pokemonegggroup" -""" -input pokemon_v2_pokemonegggroup_var_pop_order_by { - egg_group_id: order_by - id: order_by - pokemon_species_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokemonegggroup_var_samp_fields { - egg_group_id: Float - id: Float - pokemon_species_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_pokemonegggroup" -""" -input pokemon_v2_pokemonegggroup_var_samp_order_by { - egg_group_id: order_by - id: order_by - pokemon_species_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_pokemonegggroup_variance_fields { - egg_group_id: Float - id: Float - pokemon_species_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_pokemonegggroup" -""" -input pokemon_v2_pokemonegggroup_variance_order_by { - egg_group_id: order_by - id: order_by - pokemon_species_id: order_by -} - -""" -columns and relationships of "pokemon_v2_pokemonevolution" -""" -type pokemon_v2_pokemonevolution { - evolution_item_id: Int - evolution_trigger_id: Int - evolved_species_id: Int - gender_id: Int - held_item_id: Int - id: Int! - known_move_id: Int - known_move_type_id: Int - location_id: Int - min_affection: Int - min_beauty: Int - min_happiness: Int - min_level: Int - needs_overworld_rain: Boolean! - party_species_id: Int - party_type_id: Int - - """An object relationship""" - pokemonV2ItemByHeldItemId: pokemon_v2_item - - """An object relationship""" - pokemonV2PokemonspecyByPartySpeciesId: pokemon_v2_pokemonspecies - - """An object relationship""" - pokemonV2PokemonspecyByTradeSpeciesId: pokemon_v2_pokemonspecies - - """An object relationship""" - pokemonV2TypeByPartyTypeId: pokemon_v2_type - - """An object relationship""" - pokemon_v2_evolutiontrigger: pokemon_v2_evolutiontrigger - - """An object relationship""" - pokemon_v2_gender: pokemon_v2_gender - - """An object relationship""" - pokemon_v2_item: pokemon_v2_item - - """An object relationship""" - pokemon_v2_location: pokemon_v2_location - - """An object relationship""" - pokemon_v2_move: pokemon_v2_move - - """An object relationship""" - pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies - - """An object relationship""" - pokemon_v2_type: pokemon_v2_type - relative_physical_stats: Int - time_of_day: String - trade_species_id: Int - turn_upside_down: Boolean! -} - -""" -aggregated selection of "pokemon_v2_pokemonevolution" -""" -type pokemon_v2_pokemonevolution_aggregate { - aggregate: pokemon_v2_pokemonevolution_aggregate_fields - nodes: [pokemon_v2_pokemonevolution!]! -} - -input pokemon_v2_pokemonevolution_aggregate_bool_exp { - bool_and: pokemon_v2_pokemonevolution_aggregate_bool_exp_bool_and - bool_or: pokemon_v2_pokemonevolution_aggregate_bool_exp_bool_or - count: pokemon_v2_pokemonevolution_aggregate_bool_exp_count -} - -input pokemon_v2_pokemonevolution_aggregate_bool_exp_bool_and { - arguments: pokemon_v2_pokemonevolution_select_column_pokemon_v2_pokemonevolution_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: pokemon_v2_pokemonevolution_bool_exp - predicate: Boolean_comparison_exp! -} - -input pokemon_v2_pokemonevolution_aggregate_bool_exp_bool_or { - arguments: pokemon_v2_pokemonevolution_select_column_pokemon_v2_pokemonevolution_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: pokemon_v2_pokemonevolution_bool_exp - predicate: Boolean_comparison_exp! -} - -input pokemon_v2_pokemonevolution_aggregate_bool_exp_count { - arguments: [pokemon_v2_pokemonevolution_select_column!] - distinct: Boolean - filter: pokemon_v2_pokemonevolution_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_pokemonevolution" -""" -type pokemon_v2_pokemonevolution_aggregate_fields { - avg: pokemon_v2_pokemonevolution_avg_fields - count(columns: [pokemon_v2_pokemonevolution_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokemonevolution_max_fields - min: pokemon_v2_pokemonevolution_min_fields - stddev: pokemon_v2_pokemonevolution_stddev_fields - stddev_pop: pokemon_v2_pokemonevolution_stddev_pop_fields - stddev_samp: pokemon_v2_pokemonevolution_stddev_samp_fields - sum: pokemon_v2_pokemonevolution_sum_fields - var_pop: pokemon_v2_pokemonevolution_var_pop_fields - var_samp: pokemon_v2_pokemonevolution_var_samp_fields - variance: pokemon_v2_pokemonevolution_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_pokemonevolution" -""" -input pokemon_v2_pokemonevolution_aggregate_order_by { - avg: pokemon_v2_pokemonevolution_avg_order_by - count: order_by - max: pokemon_v2_pokemonevolution_max_order_by - min: pokemon_v2_pokemonevolution_min_order_by - stddev: pokemon_v2_pokemonevolution_stddev_order_by - stddev_pop: pokemon_v2_pokemonevolution_stddev_pop_order_by - stddev_samp: pokemon_v2_pokemonevolution_stddev_samp_order_by - sum: pokemon_v2_pokemonevolution_sum_order_by - var_pop: pokemon_v2_pokemonevolution_var_pop_order_by - var_samp: pokemon_v2_pokemonevolution_var_samp_order_by - variance: pokemon_v2_pokemonevolution_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_pokemonevolution_avg_fields { - evolution_item_id: Float - evolution_trigger_id: Float - evolved_species_id: Float - gender_id: Float - held_item_id: Float - id: Float - known_move_id: Float - known_move_type_id: Float - location_id: Float - min_affection: Float - min_beauty: Float - min_happiness: Float - min_level: Float - party_species_id: Float - party_type_id: Float - relative_physical_stats: Float - trade_species_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_pokemonevolution" -""" -input pokemon_v2_pokemonevolution_avg_order_by { - evolution_item_id: order_by - evolution_trigger_id: order_by - evolved_species_id: order_by - gender_id: order_by - held_item_id: order_by - id: order_by - known_move_id: order_by - known_move_type_id: order_by - location_id: order_by - min_affection: order_by - min_beauty: order_by - min_happiness: order_by - min_level: order_by - party_species_id: order_by - party_type_id: order_by - relative_physical_stats: order_by - trade_species_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokemonevolution". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokemonevolution_bool_exp { - _and: [pokemon_v2_pokemonevolution_bool_exp!] - _not: pokemon_v2_pokemonevolution_bool_exp - _or: [pokemon_v2_pokemonevolution_bool_exp!] - evolution_item_id: Int_comparison_exp - evolution_trigger_id: Int_comparison_exp - evolved_species_id: Int_comparison_exp - gender_id: Int_comparison_exp - held_item_id: Int_comparison_exp - id: Int_comparison_exp - known_move_id: Int_comparison_exp - known_move_type_id: Int_comparison_exp - location_id: Int_comparison_exp - min_affection: Int_comparison_exp - min_beauty: Int_comparison_exp - min_happiness: Int_comparison_exp - min_level: Int_comparison_exp - needs_overworld_rain: Boolean_comparison_exp - party_species_id: Int_comparison_exp - party_type_id: Int_comparison_exp - pokemonV2ItemByHeldItemId: pokemon_v2_item_bool_exp - pokemonV2PokemonspecyByPartySpeciesId: pokemon_v2_pokemonspecies_bool_exp - pokemonV2PokemonspecyByTradeSpeciesId: pokemon_v2_pokemonspecies_bool_exp - pokemonV2TypeByPartyTypeId: pokemon_v2_type_bool_exp - pokemon_v2_evolutiontrigger: pokemon_v2_evolutiontrigger_bool_exp - pokemon_v2_gender: pokemon_v2_gender_bool_exp - pokemon_v2_item: pokemon_v2_item_bool_exp - pokemon_v2_location: pokemon_v2_location_bool_exp - pokemon_v2_move: pokemon_v2_move_bool_exp - pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_bool_exp - pokemon_v2_type: pokemon_v2_type_bool_exp - relative_physical_stats: Int_comparison_exp - time_of_day: String_comparison_exp - trade_species_id: Int_comparison_exp - turn_upside_down: Boolean_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokemonevolution_max_fields { - evolution_item_id: Int - evolution_trigger_id: Int - evolved_species_id: Int - gender_id: Int - held_item_id: Int - id: Int - known_move_id: Int - known_move_type_id: Int - location_id: Int - min_affection: Int - min_beauty: Int - min_happiness: Int - min_level: Int - party_species_id: Int - party_type_id: Int - relative_physical_stats: Int - time_of_day: String - trade_species_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_pokemonevolution" -""" -input pokemon_v2_pokemonevolution_max_order_by { - evolution_item_id: order_by - evolution_trigger_id: order_by - evolved_species_id: order_by - gender_id: order_by - held_item_id: order_by - id: order_by - known_move_id: order_by - known_move_type_id: order_by - location_id: order_by - min_affection: order_by - min_beauty: order_by - min_happiness: order_by - min_level: order_by - party_species_id: order_by - party_type_id: order_by - relative_physical_stats: order_by - time_of_day: order_by - trade_species_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_pokemonevolution_min_fields { - evolution_item_id: Int - evolution_trigger_id: Int - evolved_species_id: Int - gender_id: Int - held_item_id: Int - id: Int - known_move_id: Int - known_move_type_id: Int - location_id: Int - min_affection: Int - min_beauty: Int - min_happiness: Int - min_level: Int - party_species_id: Int - party_type_id: Int - relative_physical_stats: Int - time_of_day: String - trade_species_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_pokemonevolution" -""" -input pokemon_v2_pokemonevolution_min_order_by { - evolution_item_id: order_by - evolution_trigger_id: order_by - evolved_species_id: order_by - gender_id: order_by - held_item_id: order_by - id: order_by - known_move_id: order_by - known_move_type_id: order_by - location_id: order_by - min_affection: order_by - min_beauty: order_by - min_happiness: order_by - min_level: order_by - party_species_id: order_by - party_type_id: order_by - relative_physical_stats: order_by - time_of_day: order_by - trade_species_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_pokemonevolution". -""" -input pokemon_v2_pokemonevolution_order_by { - evolution_item_id: order_by - evolution_trigger_id: order_by - evolved_species_id: order_by - gender_id: order_by - held_item_id: order_by - id: order_by - known_move_id: order_by - known_move_type_id: order_by - location_id: order_by - min_affection: order_by - min_beauty: order_by - min_happiness: order_by - min_level: order_by - needs_overworld_rain: order_by - party_species_id: order_by - party_type_id: order_by - pokemonV2ItemByHeldItemId: pokemon_v2_item_order_by - pokemonV2PokemonspecyByPartySpeciesId: pokemon_v2_pokemonspecies_order_by - pokemonV2PokemonspecyByTradeSpeciesId: pokemon_v2_pokemonspecies_order_by - pokemonV2TypeByPartyTypeId: pokemon_v2_type_order_by - pokemon_v2_evolutiontrigger: pokemon_v2_evolutiontrigger_order_by - pokemon_v2_gender: pokemon_v2_gender_order_by - pokemon_v2_item: pokemon_v2_item_order_by - pokemon_v2_location: pokemon_v2_location_order_by - pokemon_v2_move: pokemon_v2_move_order_by - pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_order_by - pokemon_v2_type: pokemon_v2_type_order_by - relative_physical_stats: order_by - time_of_day: order_by - trade_species_id: order_by - turn_upside_down: order_by -} - -""" -select columns of table "pokemon_v2_pokemonevolution" -""" -enum pokemon_v2_pokemonevolution_select_column { - """column name""" - evolution_item_id - - """column name""" - evolution_trigger_id - - """column name""" - evolved_species_id - - """column name""" - gender_id - - """column name""" - held_item_id - - """column name""" - id - - """column name""" - known_move_id - - """column name""" - known_move_type_id - - """column name""" - location_id - - """column name""" - min_affection - - """column name""" - min_beauty - - """column name""" - min_happiness - - """column name""" - min_level - - """column name""" - needs_overworld_rain - - """column name""" - party_species_id - - """column name""" - party_type_id - - """column name""" - relative_physical_stats - - """column name""" - time_of_day - - """column name""" - trade_species_id - - """column name""" - turn_upside_down -} - -""" -select "pokemon_v2_pokemonevolution_aggregate_bool_exp_bool_and_arguments_columns" columns of table "pokemon_v2_pokemonevolution" -""" -enum pokemon_v2_pokemonevolution_select_column_pokemon_v2_pokemonevolution_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - needs_overworld_rain - - """column name""" - turn_upside_down -} - -""" -select "pokemon_v2_pokemonevolution_aggregate_bool_exp_bool_or_arguments_columns" columns of table "pokemon_v2_pokemonevolution" -""" -enum pokemon_v2_pokemonevolution_select_column_pokemon_v2_pokemonevolution_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - needs_overworld_rain - - """column name""" - turn_upside_down -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokemonevolution_stddev_fields { - evolution_item_id: Float - evolution_trigger_id: Float - evolved_species_id: Float - gender_id: Float - held_item_id: Float - id: Float - known_move_id: Float - known_move_type_id: Float - location_id: Float - min_affection: Float - min_beauty: Float - min_happiness: Float - min_level: Float - party_species_id: Float - party_type_id: Float - relative_physical_stats: Float - trade_species_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_pokemonevolution" -""" -input pokemon_v2_pokemonevolution_stddev_order_by { - evolution_item_id: order_by - evolution_trigger_id: order_by - evolved_species_id: order_by - gender_id: order_by - held_item_id: order_by - id: order_by - known_move_id: order_by - known_move_type_id: order_by - location_id: order_by - min_affection: order_by - min_beauty: order_by - min_happiness: order_by - min_level: order_by - party_species_id: order_by - party_type_id: order_by - relative_physical_stats: order_by - trade_species_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokemonevolution_stddev_pop_fields { - evolution_item_id: Float - evolution_trigger_id: Float - evolved_species_id: Float - gender_id: Float - held_item_id: Float - id: Float - known_move_id: Float - known_move_type_id: Float - location_id: Float - min_affection: Float - min_beauty: Float - min_happiness: Float - min_level: Float - party_species_id: Float - party_type_id: Float - relative_physical_stats: Float - trade_species_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_pokemonevolution" -""" -input pokemon_v2_pokemonevolution_stddev_pop_order_by { - evolution_item_id: order_by - evolution_trigger_id: order_by - evolved_species_id: order_by - gender_id: order_by - held_item_id: order_by - id: order_by - known_move_id: order_by - known_move_type_id: order_by - location_id: order_by - min_affection: order_by - min_beauty: order_by - min_happiness: order_by - min_level: order_by - party_species_id: order_by - party_type_id: order_by - relative_physical_stats: order_by - trade_species_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokemonevolution_stddev_samp_fields { - evolution_item_id: Float - evolution_trigger_id: Float - evolved_species_id: Float - gender_id: Float - held_item_id: Float - id: Float - known_move_id: Float - known_move_type_id: Float - location_id: Float - min_affection: Float - min_beauty: Float - min_happiness: Float - min_level: Float - party_species_id: Float - party_type_id: Float - relative_physical_stats: Float - trade_species_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_pokemonevolution" -""" -input pokemon_v2_pokemonevolution_stddev_samp_order_by { - evolution_item_id: order_by - evolution_trigger_id: order_by - evolved_species_id: order_by - gender_id: order_by - held_item_id: order_by - id: order_by - known_move_id: order_by - known_move_type_id: order_by - location_id: order_by - min_affection: order_by - min_beauty: order_by - min_happiness: order_by - min_level: order_by - party_species_id: order_by - party_type_id: order_by - relative_physical_stats: order_by - trade_species_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_pokemonevolution" -""" -input pokemon_v2_pokemonevolution_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokemonevolution_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokemonevolution_stream_cursor_value_input { - evolution_item_id: Int - evolution_trigger_id: Int - evolved_species_id: Int - gender_id: Int - held_item_id: Int - id: Int - known_move_id: Int - known_move_type_id: Int - location_id: Int - min_affection: Int - min_beauty: Int - min_happiness: Int - min_level: Int - needs_overworld_rain: Boolean - party_species_id: Int - party_type_id: Int - relative_physical_stats: Int - time_of_day: String - trade_species_id: Int - turn_upside_down: Boolean -} - -"""aggregate sum on columns""" -type pokemon_v2_pokemonevolution_sum_fields { - evolution_item_id: Int - evolution_trigger_id: Int - evolved_species_id: Int - gender_id: Int - held_item_id: Int - id: Int - known_move_id: Int - known_move_type_id: Int - location_id: Int - min_affection: Int - min_beauty: Int - min_happiness: Int - min_level: Int - party_species_id: Int - party_type_id: Int - relative_physical_stats: Int - trade_species_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_pokemonevolution" -""" -input pokemon_v2_pokemonevolution_sum_order_by { - evolution_item_id: order_by - evolution_trigger_id: order_by - evolved_species_id: order_by - gender_id: order_by - held_item_id: order_by - id: order_by - known_move_id: order_by - known_move_type_id: order_by - location_id: order_by - min_affection: order_by - min_beauty: order_by - min_happiness: order_by - min_level: order_by - party_species_id: order_by - party_type_id: order_by - relative_physical_stats: order_by - trade_species_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokemonevolution_var_pop_fields { - evolution_item_id: Float - evolution_trigger_id: Float - evolved_species_id: Float - gender_id: Float - held_item_id: Float - id: Float - known_move_id: Float - known_move_type_id: Float - location_id: Float - min_affection: Float - min_beauty: Float - min_happiness: Float - min_level: Float - party_species_id: Float - party_type_id: Float - relative_physical_stats: Float - trade_species_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_pokemonevolution" -""" -input pokemon_v2_pokemonevolution_var_pop_order_by { - evolution_item_id: order_by - evolution_trigger_id: order_by - evolved_species_id: order_by - gender_id: order_by - held_item_id: order_by - id: order_by - known_move_id: order_by - known_move_type_id: order_by - location_id: order_by - min_affection: order_by - min_beauty: order_by - min_happiness: order_by - min_level: order_by - party_species_id: order_by - party_type_id: order_by - relative_physical_stats: order_by - trade_species_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokemonevolution_var_samp_fields { - evolution_item_id: Float - evolution_trigger_id: Float - evolved_species_id: Float - gender_id: Float - held_item_id: Float - id: Float - known_move_id: Float - known_move_type_id: Float - location_id: Float - min_affection: Float - min_beauty: Float - min_happiness: Float - min_level: Float - party_species_id: Float - party_type_id: Float - relative_physical_stats: Float - trade_species_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_pokemonevolution" -""" -input pokemon_v2_pokemonevolution_var_samp_order_by { - evolution_item_id: order_by - evolution_trigger_id: order_by - evolved_species_id: order_by - gender_id: order_by - held_item_id: order_by - id: order_by - known_move_id: order_by - known_move_type_id: order_by - location_id: order_by - min_affection: order_by - min_beauty: order_by - min_happiness: order_by - min_level: order_by - party_species_id: order_by - party_type_id: order_by - relative_physical_stats: order_by - trade_species_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_pokemonevolution_variance_fields { - evolution_item_id: Float - evolution_trigger_id: Float - evolved_species_id: Float - gender_id: Float - held_item_id: Float - id: Float - known_move_id: Float - known_move_type_id: Float - location_id: Float - min_affection: Float - min_beauty: Float - min_happiness: Float - min_level: Float - party_species_id: Float - party_type_id: Float - relative_physical_stats: Float - trade_species_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_pokemonevolution" -""" -input pokemon_v2_pokemonevolution_variance_order_by { - evolution_item_id: order_by - evolution_trigger_id: order_by - evolved_species_id: order_by - gender_id: order_by - held_item_id: order_by - id: order_by - known_move_id: order_by - known_move_type_id: order_by - location_id: order_by - min_affection: order_by - min_beauty: order_by - min_happiness: order_by - min_level: order_by - party_species_id: order_by - party_type_id: order_by - relative_physical_stats: order_by - trade_species_id: order_by -} - -""" -columns and relationships of "pokemon_v2_pokemonform" -""" -type pokemon_v2_pokemonform { - form_name: String! - form_order: Int - id: Int! - is_battle_only: Boolean! - is_default: Boolean! - is_mega: Boolean! - name: String! - order: Int - pokemon_id: Int - - """An object relationship""" - pokemon_v2_pokemon: pokemon_v2_pokemon - - """An array relationship""" - pokemon_v2_pokemonformgenerations( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonformgeneration_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonformgeneration_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonformgeneration_bool_exp - ): [pokemon_v2_pokemonformgeneration!]! - - """An aggregate relationship""" - pokemon_v2_pokemonformgenerations_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonformgeneration_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonformgeneration_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonformgeneration_bool_exp - ): pokemon_v2_pokemonformgeneration_aggregate! - - """An array relationship""" - pokemon_v2_pokemonformnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonformname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonformname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonformname_bool_exp - ): [pokemon_v2_pokemonformname!]! - - """An aggregate relationship""" - pokemon_v2_pokemonformnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonformname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonformname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonformname_bool_exp - ): pokemon_v2_pokemonformname_aggregate! - - """An array relationship""" - pokemon_v2_pokemonformsprites( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonformsprites_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonformsprites_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonformsprites_bool_exp - ): [pokemon_v2_pokemonformsprites!]! - - """An aggregate relationship""" - pokemon_v2_pokemonformsprites_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonformsprites_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonformsprites_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonformsprites_bool_exp - ): pokemon_v2_pokemonformsprites_aggregate! - - """An array relationship""" - pokemon_v2_pokemonformtypes( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonformtype_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonformtype_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonformtype_bool_exp - ): [pokemon_v2_pokemonformtype!]! - - """An aggregate relationship""" - pokemon_v2_pokemonformtypes_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonformtype_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonformtype_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonformtype_bool_exp - ): pokemon_v2_pokemonformtype_aggregate! - - """An object relationship""" - pokemon_v2_versiongroup: pokemon_v2_versiongroup - version_group_id: Int -} - -""" -aggregated selection of "pokemon_v2_pokemonform" -""" -type pokemon_v2_pokemonform_aggregate { - aggregate: pokemon_v2_pokemonform_aggregate_fields - nodes: [pokemon_v2_pokemonform!]! -} - -input pokemon_v2_pokemonform_aggregate_bool_exp { - bool_and: pokemon_v2_pokemonform_aggregate_bool_exp_bool_and - bool_or: pokemon_v2_pokemonform_aggregate_bool_exp_bool_or - count: pokemon_v2_pokemonform_aggregate_bool_exp_count -} - -input pokemon_v2_pokemonform_aggregate_bool_exp_bool_and { - arguments: pokemon_v2_pokemonform_select_column_pokemon_v2_pokemonform_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: pokemon_v2_pokemonform_bool_exp - predicate: Boolean_comparison_exp! -} - -input pokemon_v2_pokemonform_aggregate_bool_exp_bool_or { - arguments: pokemon_v2_pokemonform_select_column_pokemon_v2_pokemonform_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: pokemon_v2_pokemonform_bool_exp - predicate: Boolean_comparison_exp! -} - -input pokemon_v2_pokemonform_aggregate_bool_exp_count { - arguments: [pokemon_v2_pokemonform_select_column!] - distinct: Boolean - filter: pokemon_v2_pokemonform_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_pokemonform" -""" -type pokemon_v2_pokemonform_aggregate_fields { - avg: pokemon_v2_pokemonform_avg_fields - count(columns: [pokemon_v2_pokemonform_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokemonform_max_fields - min: pokemon_v2_pokemonform_min_fields - stddev: pokemon_v2_pokemonform_stddev_fields - stddev_pop: pokemon_v2_pokemonform_stddev_pop_fields - stddev_samp: pokemon_v2_pokemonform_stddev_samp_fields - sum: pokemon_v2_pokemonform_sum_fields - var_pop: pokemon_v2_pokemonform_var_pop_fields - var_samp: pokemon_v2_pokemonform_var_samp_fields - variance: pokemon_v2_pokemonform_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_pokemonform" -""" -input pokemon_v2_pokemonform_aggregate_order_by { - avg: pokemon_v2_pokemonform_avg_order_by - count: order_by - max: pokemon_v2_pokemonform_max_order_by - min: pokemon_v2_pokemonform_min_order_by - stddev: pokemon_v2_pokemonform_stddev_order_by - stddev_pop: pokemon_v2_pokemonform_stddev_pop_order_by - stddev_samp: pokemon_v2_pokemonform_stddev_samp_order_by - sum: pokemon_v2_pokemonform_sum_order_by - var_pop: pokemon_v2_pokemonform_var_pop_order_by - var_samp: pokemon_v2_pokemonform_var_samp_order_by - variance: pokemon_v2_pokemonform_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_pokemonform_avg_fields { - form_order: Float - id: Float - order: Float - pokemon_id: Float - version_group_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_pokemonform" -""" -input pokemon_v2_pokemonform_avg_order_by { - form_order: order_by - id: order_by - order: order_by - pokemon_id: order_by - version_group_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokemonform". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokemonform_bool_exp { - _and: [pokemon_v2_pokemonform_bool_exp!] - _not: pokemon_v2_pokemonform_bool_exp - _or: [pokemon_v2_pokemonform_bool_exp!] - form_name: String_comparison_exp - form_order: Int_comparison_exp - id: Int_comparison_exp - is_battle_only: Boolean_comparison_exp - is_default: Boolean_comparison_exp - is_mega: Boolean_comparison_exp - name: String_comparison_exp - order: Int_comparison_exp - pokemon_id: Int_comparison_exp - pokemon_v2_pokemon: pokemon_v2_pokemon_bool_exp - pokemon_v2_pokemonformgenerations: pokemon_v2_pokemonformgeneration_bool_exp - pokemon_v2_pokemonformgenerations_aggregate: pokemon_v2_pokemonformgeneration_aggregate_bool_exp - pokemon_v2_pokemonformnames: pokemon_v2_pokemonformname_bool_exp - pokemon_v2_pokemonformnames_aggregate: pokemon_v2_pokemonformname_aggregate_bool_exp - pokemon_v2_pokemonformsprites: pokemon_v2_pokemonformsprites_bool_exp - pokemon_v2_pokemonformsprites_aggregate: pokemon_v2_pokemonformsprites_aggregate_bool_exp - pokemon_v2_pokemonformtypes: pokemon_v2_pokemonformtype_bool_exp - pokemon_v2_pokemonformtypes_aggregate: pokemon_v2_pokemonformtype_aggregate_bool_exp - pokemon_v2_versiongroup: pokemon_v2_versiongroup_bool_exp - version_group_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokemonform_max_fields { - form_name: String - form_order: Int - id: Int - name: String - order: Int - pokemon_id: Int - version_group_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_pokemonform" -""" -input pokemon_v2_pokemonform_max_order_by { - form_name: order_by - form_order: order_by - id: order_by - name: order_by - order: order_by - pokemon_id: order_by - version_group_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_pokemonform_min_fields { - form_name: String - form_order: Int - id: Int - name: String - order: Int - pokemon_id: Int - version_group_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_pokemonform" -""" -input pokemon_v2_pokemonform_min_order_by { - form_name: order_by - form_order: order_by - id: order_by - name: order_by - order: order_by - pokemon_id: order_by - version_group_id: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_pokemonform".""" -input pokemon_v2_pokemonform_order_by { - form_name: order_by - form_order: order_by - id: order_by - is_battle_only: order_by - is_default: order_by - is_mega: order_by - name: order_by - order: order_by - pokemon_id: order_by - pokemon_v2_pokemon: pokemon_v2_pokemon_order_by - pokemon_v2_pokemonformgenerations_aggregate: pokemon_v2_pokemonformgeneration_aggregate_order_by - pokemon_v2_pokemonformnames_aggregate: pokemon_v2_pokemonformname_aggregate_order_by - pokemon_v2_pokemonformsprites_aggregate: pokemon_v2_pokemonformsprites_aggregate_order_by - pokemon_v2_pokemonformtypes_aggregate: pokemon_v2_pokemonformtype_aggregate_order_by - pokemon_v2_versiongroup: pokemon_v2_versiongroup_order_by - version_group_id: order_by -} - -""" -select columns of table "pokemon_v2_pokemonform" -""" -enum pokemon_v2_pokemonform_select_column { - """column name""" - form_name - - """column name""" - form_order - - """column name""" - id - - """column name""" - is_battle_only - - """column name""" - is_default - - """column name""" - is_mega - - """column name""" - name - - """column name""" - order - - """column name""" - pokemon_id - - """column name""" - version_group_id -} - -""" -select "pokemon_v2_pokemonform_aggregate_bool_exp_bool_and_arguments_columns" columns of table "pokemon_v2_pokemonform" -""" -enum pokemon_v2_pokemonform_select_column_pokemon_v2_pokemonform_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - is_battle_only - - """column name""" - is_default - - """column name""" - is_mega -} - -""" -select "pokemon_v2_pokemonform_aggregate_bool_exp_bool_or_arguments_columns" columns of table "pokemon_v2_pokemonform" -""" -enum pokemon_v2_pokemonform_select_column_pokemon_v2_pokemonform_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - is_battle_only - - """column name""" - is_default - - """column name""" - is_mega -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokemonform_stddev_fields { - form_order: Float - id: Float - order: Float - pokemon_id: Float - version_group_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_pokemonform" -""" -input pokemon_v2_pokemonform_stddev_order_by { - form_order: order_by - id: order_by - order: order_by - pokemon_id: order_by - version_group_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokemonform_stddev_pop_fields { - form_order: Float - id: Float - order: Float - pokemon_id: Float - version_group_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_pokemonform" -""" -input pokemon_v2_pokemonform_stddev_pop_order_by { - form_order: order_by - id: order_by - order: order_by - pokemon_id: order_by - version_group_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokemonform_stddev_samp_fields { - form_order: Float - id: Float - order: Float - pokemon_id: Float - version_group_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_pokemonform" -""" -input pokemon_v2_pokemonform_stddev_samp_order_by { - form_order: order_by - id: order_by - order: order_by - pokemon_id: order_by - version_group_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_pokemonform" -""" -input pokemon_v2_pokemonform_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokemonform_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokemonform_stream_cursor_value_input { - form_name: String - form_order: Int - id: Int - is_battle_only: Boolean - is_default: Boolean - is_mega: Boolean - name: String - order: Int - pokemon_id: Int - version_group_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_pokemonform_sum_fields { - form_order: Int - id: Int - order: Int - pokemon_id: Int - version_group_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_pokemonform" -""" -input pokemon_v2_pokemonform_sum_order_by { - form_order: order_by - id: order_by - order: order_by - pokemon_id: order_by - version_group_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokemonform_var_pop_fields { - form_order: Float - id: Float - order: Float - pokemon_id: Float - version_group_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_pokemonform" -""" -input pokemon_v2_pokemonform_var_pop_order_by { - form_order: order_by - id: order_by - order: order_by - pokemon_id: order_by - version_group_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokemonform_var_samp_fields { - form_order: Float - id: Float - order: Float - pokemon_id: Float - version_group_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_pokemonform" -""" -input pokemon_v2_pokemonform_var_samp_order_by { - form_order: order_by - id: order_by - order: order_by - pokemon_id: order_by - version_group_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_pokemonform_variance_fields { - form_order: Float - id: Float - order: Float - pokemon_id: Float - version_group_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_pokemonform" -""" -input pokemon_v2_pokemonform_variance_order_by { - form_order: order_by - id: order_by - order: order_by - pokemon_id: order_by - version_group_id: order_by -} - -""" -columns and relationships of "pokemon_v2_pokemonformgeneration" -""" -type pokemon_v2_pokemonformgeneration { - game_index: Int! - generation_id: Int - id: Int! - pokemon_form_id: Int - - """An object relationship""" - pokemon_v2_generation: pokemon_v2_generation - - """An object relationship""" - pokemon_v2_pokemonform: pokemon_v2_pokemonform -} - -""" -aggregated selection of "pokemon_v2_pokemonformgeneration" -""" -type pokemon_v2_pokemonformgeneration_aggregate { - aggregate: pokemon_v2_pokemonformgeneration_aggregate_fields - nodes: [pokemon_v2_pokemonformgeneration!]! -} - -input pokemon_v2_pokemonformgeneration_aggregate_bool_exp { - count: pokemon_v2_pokemonformgeneration_aggregate_bool_exp_count -} - -input pokemon_v2_pokemonformgeneration_aggregate_bool_exp_count { - arguments: [pokemon_v2_pokemonformgeneration_select_column!] - distinct: Boolean - filter: pokemon_v2_pokemonformgeneration_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_pokemonformgeneration" -""" -type pokemon_v2_pokemonformgeneration_aggregate_fields { - avg: pokemon_v2_pokemonformgeneration_avg_fields - count(columns: [pokemon_v2_pokemonformgeneration_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokemonformgeneration_max_fields - min: pokemon_v2_pokemonformgeneration_min_fields - stddev: pokemon_v2_pokemonformgeneration_stddev_fields - stddev_pop: pokemon_v2_pokemonformgeneration_stddev_pop_fields - stddev_samp: pokemon_v2_pokemonformgeneration_stddev_samp_fields - sum: pokemon_v2_pokemonformgeneration_sum_fields - var_pop: pokemon_v2_pokemonformgeneration_var_pop_fields - var_samp: pokemon_v2_pokemonformgeneration_var_samp_fields - variance: pokemon_v2_pokemonformgeneration_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_pokemonformgeneration" -""" -input pokemon_v2_pokemonformgeneration_aggregate_order_by { - avg: pokemon_v2_pokemonformgeneration_avg_order_by - count: order_by - max: pokemon_v2_pokemonformgeneration_max_order_by - min: pokemon_v2_pokemonformgeneration_min_order_by - stddev: pokemon_v2_pokemonformgeneration_stddev_order_by - stddev_pop: pokemon_v2_pokemonformgeneration_stddev_pop_order_by - stddev_samp: pokemon_v2_pokemonformgeneration_stddev_samp_order_by - sum: pokemon_v2_pokemonformgeneration_sum_order_by - var_pop: pokemon_v2_pokemonformgeneration_var_pop_order_by - var_samp: pokemon_v2_pokemonformgeneration_var_samp_order_by - variance: pokemon_v2_pokemonformgeneration_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_pokemonformgeneration_avg_fields { - game_index: Float - generation_id: Float - id: Float - pokemon_form_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_pokemonformgeneration" -""" -input pokemon_v2_pokemonformgeneration_avg_order_by { - game_index: order_by - generation_id: order_by - id: order_by - pokemon_form_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokemonformgeneration". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokemonformgeneration_bool_exp { - _and: [pokemon_v2_pokemonformgeneration_bool_exp!] - _not: pokemon_v2_pokemonformgeneration_bool_exp - _or: [pokemon_v2_pokemonformgeneration_bool_exp!] - game_index: Int_comparison_exp - generation_id: Int_comparison_exp - id: Int_comparison_exp - pokemon_form_id: Int_comparison_exp - pokemon_v2_generation: pokemon_v2_generation_bool_exp - pokemon_v2_pokemonform: pokemon_v2_pokemonform_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokemonformgeneration_max_fields { - game_index: Int - generation_id: Int - id: Int - pokemon_form_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_pokemonformgeneration" -""" -input pokemon_v2_pokemonformgeneration_max_order_by { - game_index: order_by - generation_id: order_by - id: order_by - pokemon_form_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_pokemonformgeneration_min_fields { - game_index: Int - generation_id: Int - id: Int - pokemon_form_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_pokemonformgeneration" -""" -input pokemon_v2_pokemonformgeneration_min_order_by { - game_index: order_by - generation_id: order_by - id: order_by - pokemon_form_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_pokemonformgeneration". -""" -input pokemon_v2_pokemonformgeneration_order_by { - game_index: order_by - generation_id: order_by - id: order_by - pokemon_form_id: order_by - pokemon_v2_generation: pokemon_v2_generation_order_by - pokemon_v2_pokemonform: pokemon_v2_pokemonform_order_by -} - -""" -select columns of table "pokemon_v2_pokemonformgeneration" -""" -enum pokemon_v2_pokemonformgeneration_select_column { - """column name""" - game_index - - """column name""" - generation_id - - """column name""" - id - - """column name""" - pokemon_form_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokemonformgeneration_stddev_fields { - game_index: Float - generation_id: Float - id: Float - pokemon_form_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_pokemonformgeneration" -""" -input pokemon_v2_pokemonformgeneration_stddev_order_by { - game_index: order_by - generation_id: order_by - id: order_by - pokemon_form_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokemonformgeneration_stddev_pop_fields { - game_index: Float - generation_id: Float - id: Float - pokemon_form_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_pokemonformgeneration" -""" -input pokemon_v2_pokemonformgeneration_stddev_pop_order_by { - game_index: order_by - generation_id: order_by - id: order_by - pokemon_form_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokemonformgeneration_stddev_samp_fields { - game_index: Float - generation_id: Float - id: Float - pokemon_form_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_pokemonformgeneration" -""" -input pokemon_v2_pokemonformgeneration_stddev_samp_order_by { - game_index: order_by - generation_id: order_by - id: order_by - pokemon_form_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_pokemonformgeneration" -""" -input pokemon_v2_pokemonformgeneration_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokemonformgeneration_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokemonformgeneration_stream_cursor_value_input { - game_index: Int - generation_id: Int - id: Int - pokemon_form_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_pokemonformgeneration_sum_fields { - game_index: Int - generation_id: Int - id: Int - pokemon_form_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_pokemonformgeneration" -""" -input pokemon_v2_pokemonformgeneration_sum_order_by { - game_index: order_by - generation_id: order_by - id: order_by - pokemon_form_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokemonformgeneration_var_pop_fields { - game_index: Float - generation_id: Float - id: Float - pokemon_form_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_pokemonformgeneration" -""" -input pokemon_v2_pokemonformgeneration_var_pop_order_by { - game_index: order_by - generation_id: order_by - id: order_by - pokemon_form_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokemonformgeneration_var_samp_fields { - game_index: Float - generation_id: Float - id: Float - pokemon_form_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_pokemonformgeneration" -""" -input pokemon_v2_pokemonformgeneration_var_samp_order_by { - game_index: order_by - generation_id: order_by - id: order_by - pokemon_form_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_pokemonformgeneration_variance_fields { - game_index: Float - generation_id: Float - id: Float - pokemon_form_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_pokemonformgeneration" -""" -input pokemon_v2_pokemonformgeneration_variance_order_by { - game_index: order_by - generation_id: order_by - id: order_by - pokemon_form_id: order_by -} - -""" -columns and relationships of "pokemon_v2_pokemonformname" -""" -type pokemon_v2_pokemonformname { - id: Int! - language_id: Int - name: String! - pokemon_form_id: Int - pokemon_name: String! - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_pokemonform: pokemon_v2_pokemonform -} - -""" -aggregated selection of "pokemon_v2_pokemonformname" -""" -type pokemon_v2_pokemonformname_aggregate { - aggregate: pokemon_v2_pokemonformname_aggregate_fields - nodes: [pokemon_v2_pokemonformname!]! -} - -input pokemon_v2_pokemonformname_aggregate_bool_exp { - count: pokemon_v2_pokemonformname_aggregate_bool_exp_count -} - -input pokemon_v2_pokemonformname_aggregate_bool_exp_count { - arguments: [pokemon_v2_pokemonformname_select_column!] - distinct: Boolean - filter: pokemon_v2_pokemonformname_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_pokemonformname" -""" -type pokemon_v2_pokemonformname_aggregate_fields { - avg: pokemon_v2_pokemonformname_avg_fields - count(columns: [pokemon_v2_pokemonformname_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokemonformname_max_fields - min: pokemon_v2_pokemonformname_min_fields - stddev: pokemon_v2_pokemonformname_stddev_fields - stddev_pop: pokemon_v2_pokemonformname_stddev_pop_fields - stddev_samp: pokemon_v2_pokemonformname_stddev_samp_fields - sum: pokemon_v2_pokemonformname_sum_fields - var_pop: pokemon_v2_pokemonformname_var_pop_fields - var_samp: pokemon_v2_pokemonformname_var_samp_fields - variance: pokemon_v2_pokemonformname_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_pokemonformname" -""" -input pokemon_v2_pokemonformname_aggregate_order_by { - avg: pokemon_v2_pokemonformname_avg_order_by - count: order_by - max: pokemon_v2_pokemonformname_max_order_by - min: pokemon_v2_pokemonformname_min_order_by - stddev: pokemon_v2_pokemonformname_stddev_order_by - stddev_pop: pokemon_v2_pokemonformname_stddev_pop_order_by - stddev_samp: pokemon_v2_pokemonformname_stddev_samp_order_by - sum: pokemon_v2_pokemonformname_sum_order_by - var_pop: pokemon_v2_pokemonformname_var_pop_order_by - var_samp: pokemon_v2_pokemonformname_var_samp_order_by - variance: pokemon_v2_pokemonformname_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_pokemonformname_avg_fields { - id: Float - language_id: Float - pokemon_form_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_pokemonformname" -""" -input pokemon_v2_pokemonformname_avg_order_by { - id: order_by - language_id: order_by - pokemon_form_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokemonformname". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokemonformname_bool_exp { - _and: [pokemon_v2_pokemonformname_bool_exp!] - _not: pokemon_v2_pokemonformname_bool_exp - _or: [pokemon_v2_pokemonformname_bool_exp!] - id: Int_comparison_exp - language_id: Int_comparison_exp - name: String_comparison_exp - pokemon_form_id: Int_comparison_exp - pokemon_name: String_comparison_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_pokemonform: pokemon_v2_pokemonform_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokemonformname_max_fields { - id: Int - language_id: Int - name: String - pokemon_form_id: Int - pokemon_name: String -} - -""" -order by max() on columns of table "pokemon_v2_pokemonformname" -""" -input pokemon_v2_pokemonformname_max_order_by { - id: order_by - language_id: order_by - name: order_by - pokemon_form_id: order_by - pokemon_name: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_pokemonformname_min_fields { - id: Int - language_id: Int - name: String - pokemon_form_id: Int - pokemon_name: String -} - -""" -order by min() on columns of table "pokemon_v2_pokemonformname" -""" -input pokemon_v2_pokemonformname_min_order_by { - id: order_by - language_id: order_by - name: order_by - pokemon_form_id: order_by - pokemon_name: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_pokemonformname". -""" -input pokemon_v2_pokemonformname_order_by { - id: order_by - language_id: order_by - name: order_by - pokemon_form_id: order_by - pokemon_name: order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_pokemonform: pokemon_v2_pokemonform_order_by -} - -""" -select columns of table "pokemon_v2_pokemonformname" -""" -enum pokemon_v2_pokemonformname_select_column { - """column name""" - id - - """column name""" - language_id - - """column name""" - name - - """column name""" - pokemon_form_id - - """column name""" - pokemon_name -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokemonformname_stddev_fields { - id: Float - language_id: Float - pokemon_form_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_pokemonformname" -""" -input pokemon_v2_pokemonformname_stddev_order_by { - id: order_by - language_id: order_by - pokemon_form_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokemonformname_stddev_pop_fields { - id: Float - language_id: Float - pokemon_form_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_pokemonformname" -""" -input pokemon_v2_pokemonformname_stddev_pop_order_by { - id: order_by - language_id: order_by - pokemon_form_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokemonformname_stddev_samp_fields { - id: Float - language_id: Float - pokemon_form_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_pokemonformname" -""" -input pokemon_v2_pokemonformname_stddev_samp_order_by { - id: order_by - language_id: order_by - pokemon_form_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_pokemonformname" -""" -input pokemon_v2_pokemonformname_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokemonformname_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokemonformname_stream_cursor_value_input { - id: Int - language_id: Int - name: String - pokemon_form_id: Int - pokemon_name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_pokemonformname_sum_fields { - id: Int - language_id: Int - pokemon_form_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_pokemonformname" -""" -input pokemon_v2_pokemonformname_sum_order_by { - id: order_by - language_id: order_by - pokemon_form_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokemonformname_var_pop_fields { - id: Float - language_id: Float - pokemon_form_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_pokemonformname" -""" -input pokemon_v2_pokemonformname_var_pop_order_by { - id: order_by - language_id: order_by - pokemon_form_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokemonformname_var_samp_fields { - id: Float - language_id: Float - pokemon_form_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_pokemonformname" -""" -input pokemon_v2_pokemonformname_var_samp_order_by { - id: order_by - language_id: order_by - pokemon_form_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_pokemonformname_variance_fields { - id: Float - language_id: Float - pokemon_form_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_pokemonformname" -""" -input pokemon_v2_pokemonformname_variance_order_by { - id: order_by - language_id: order_by - pokemon_form_id: order_by -} - -""" -columns and relationships of "pokemon_v2_pokemonformsprites" -""" -type pokemon_v2_pokemonformsprites { - id: Int! - pokemon_form_id: Int - - """An object relationship""" - pokemon_v2_pokemonform: pokemon_v2_pokemonform - sprites( - """JSON select path""" - path: String - ): jsonb! -} - -""" -aggregated selection of "pokemon_v2_pokemonformsprites" -""" -type pokemon_v2_pokemonformsprites_aggregate { - aggregate: pokemon_v2_pokemonformsprites_aggregate_fields - nodes: [pokemon_v2_pokemonformsprites!]! -} - -input pokemon_v2_pokemonformsprites_aggregate_bool_exp { - count: pokemon_v2_pokemonformsprites_aggregate_bool_exp_count -} - -input pokemon_v2_pokemonformsprites_aggregate_bool_exp_count { - arguments: [pokemon_v2_pokemonformsprites_select_column!] - distinct: Boolean - filter: pokemon_v2_pokemonformsprites_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_pokemonformsprites" -""" -type pokemon_v2_pokemonformsprites_aggregate_fields { - avg: pokemon_v2_pokemonformsprites_avg_fields - count(columns: [pokemon_v2_pokemonformsprites_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokemonformsprites_max_fields - min: pokemon_v2_pokemonformsprites_min_fields - stddev: pokemon_v2_pokemonformsprites_stddev_fields - stddev_pop: pokemon_v2_pokemonformsprites_stddev_pop_fields - stddev_samp: pokemon_v2_pokemonformsprites_stddev_samp_fields - sum: pokemon_v2_pokemonformsprites_sum_fields - var_pop: pokemon_v2_pokemonformsprites_var_pop_fields - var_samp: pokemon_v2_pokemonformsprites_var_samp_fields - variance: pokemon_v2_pokemonformsprites_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_pokemonformsprites" -""" -input pokemon_v2_pokemonformsprites_aggregate_order_by { - avg: pokemon_v2_pokemonformsprites_avg_order_by - count: order_by - max: pokemon_v2_pokemonformsprites_max_order_by - min: pokemon_v2_pokemonformsprites_min_order_by - stddev: pokemon_v2_pokemonformsprites_stddev_order_by - stddev_pop: pokemon_v2_pokemonformsprites_stddev_pop_order_by - stddev_samp: pokemon_v2_pokemonformsprites_stddev_samp_order_by - sum: pokemon_v2_pokemonformsprites_sum_order_by - var_pop: pokemon_v2_pokemonformsprites_var_pop_order_by - var_samp: pokemon_v2_pokemonformsprites_var_samp_order_by - variance: pokemon_v2_pokemonformsprites_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_pokemonformsprites_avg_fields { - id: Float - pokemon_form_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_pokemonformsprites" -""" -input pokemon_v2_pokemonformsprites_avg_order_by { - id: order_by - pokemon_form_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokemonformsprites". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokemonformsprites_bool_exp { - _and: [pokemon_v2_pokemonformsprites_bool_exp!] - _not: pokemon_v2_pokemonformsprites_bool_exp - _or: [pokemon_v2_pokemonformsprites_bool_exp!] - id: Int_comparison_exp - pokemon_form_id: Int_comparison_exp - pokemon_v2_pokemonform: pokemon_v2_pokemonform_bool_exp - sprites: jsonb_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokemonformsprites_max_fields { - id: Int - pokemon_form_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_pokemonformsprites" -""" -input pokemon_v2_pokemonformsprites_max_order_by { - id: order_by - pokemon_form_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_pokemonformsprites_min_fields { - id: Int - pokemon_form_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_pokemonformsprites" -""" -input pokemon_v2_pokemonformsprites_min_order_by { - id: order_by - pokemon_form_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_pokemonformsprites". -""" -input pokemon_v2_pokemonformsprites_order_by { - id: order_by - pokemon_form_id: order_by - pokemon_v2_pokemonform: pokemon_v2_pokemonform_order_by - sprites: order_by -} - -""" -select columns of table "pokemon_v2_pokemonformsprites" -""" -enum pokemon_v2_pokemonformsprites_select_column { - """column name""" - id - - """column name""" - pokemon_form_id - - """column name""" - sprites -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokemonformsprites_stddev_fields { - id: Float - pokemon_form_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_pokemonformsprites" -""" -input pokemon_v2_pokemonformsprites_stddev_order_by { - id: order_by - pokemon_form_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokemonformsprites_stddev_pop_fields { - id: Float - pokemon_form_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_pokemonformsprites" -""" -input pokemon_v2_pokemonformsprites_stddev_pop_order_by { - id: order_by - pokemon_form_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokemonformsprites_stddev_samp_fields { - id: Float - pokemon_form_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_pokemonformsprites" -""" -input pokemon_v2_pokemonformsprites_stddev_samp_order_by { - id: order_by - pokemon_form_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_pokemonformsprites" -""" -input pokemon_v2_pokemonformsprites_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokemonformsprites_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokemonformsprites_stream_cursor_value_input { - id: Int - pokemon_form_id: Int - sprites: jsonb -} - -"""aggregate sum on columns""" -type pokemon_v2_pokemonformsprites_sum_fields { - id: Int - pokemon_form_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_pokemonformsprites" -""" -input pokemon_v2_pokemonformsprites_sum_order_by { - id: order_by - pokemon_form_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokemonformsprites_var_pop_fields { - id: Float - pokemon_form_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_pokemonformsprites" -""" -input pokemon_v2_pokemonformsprites_var_pop_order_by { - id: order_by - pokemon_form_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokemonformsprites_var_samp_fields { - id: Float - pokemon_form_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_pokemonformsprites" -""" -input pokemon_v2_pokemonformsprites_var_samp_order_by { - id: order_by - pokemon_form_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_pokemonformsprites_variance_fields { - id: Float - pokemon_form_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_pokemonformsprites" -""" -input pokemon_v2_pokemonformsprites_variance_order_by { - id: order_by - pokemon_form_id: order_by -} - -""" -columns and relationships of "pokemon_v2_pokemonformtype" -""" -type pokemon_v2_pokemonformtype { - id: Int! - pokemon_form_id: Int - - """An object relationship""" - pokemon_v2_pokemonform: pokemon_v2_pokemonform - - """An object relationship""" - pokemon_v2_type: pokemon_v2_type - slot: Int! - type_id: Int -} - -""" -aggregated selection of "pokemon_v2_pokemonformtype" -""" -type pokemon_v2_pokemonformtype_aggregate { - aggregate: pokemon_v2_pokemonformtype_aggregate_fields - nodes: [pokemon_v2_pokemonformtype!]! -} - -input pokemon_v2_pokemonformtype_aggregate_bool_exp { - count: pokemon_v2_pokemonformtype_aggregate_bool_exp_count -} - -input pokemon_v2_pokemonformtype_aggregate_bool_exp_count { - arguments: [pokemon_v2_pokemonformtype_select_column!] - distinct: Boolean - filter: pokemon_v2_pokemonformtype_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_pokemonformtype" -""" -type pokemon_v2_pokemonformtype_aggregate_fields { - avg: pokemon_v2_pokemonformtype_avg_fields - count(columns: [pokemon_v2_pokemonformtype_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokemonformtype_max_fields - min: pokemon_v2_pokemonformtype_min_fields - stddev: pokemon_v2_pokemonformtype_stddev_fields - stddev_pop: pokemon_v2_pokemonformtype_stddev_pop_fields - stddev_samp: pokemon_v2_pokemonformtype_stddev_samp_fields - sum: pokemon_v2_pokemonformtype_sum_fields - var_pop: pokemon_v2_pokemonformtype_var_pop_fields - var_samp: pokemon_v2_pokemonformtype_var_samp_fields - variance: pokemon_v2_pokemonformtype_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_pokemonformtype" -""" -input pokemon_v2_pokemonformtype_aggregate_order_by { - avg: pokemon_v2_pokemonformtype_avg_order_by - count: order_by - max: pokemon_v2_pokemonformtype_max_order_by - min: pokemon_v2_pokemonformtype_min_order_by - stddev: pokemon_v2_pokemonformtype_stddev_order_by - stddev_pop: pokemon_v2_pokemonformtype_stddev_pop_order_by - stddev_samp: pokemon_v2_pokemonformtype_stddev_samp_order_by - sum: pokemon_v2_pokemonformtype_sum_order_by - var_pop: pokemon_v2_pokemonformtype_var_pop_order_by - var_samp: pokemon_v2_pokemonformtype_var_samp_order_by - variance: pokemon_v2_pokemonformtype_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_pokemonformtype_avg_fields { - id: Float - pokemon_form_id: Float - slot: Float - type_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_pokemonformtype" -""" -input pokemon_v2_pokemonformtype_avg_order_by { - id: order_by - pokemon_form_id: order_by - slot: order_by - type_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokemonformtype". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokemonformtype_bool_exp { - _and: [pokemon_v2_pokemonformtype_bool_exp!] - _not: pokemon_v2_pokemonformtype_bool_exp - _or: [pokemon_v2_pokemonformtype_bool_exp!] - id: Int_comparison_exp - pokemon_form_id: Int_comparison_exp - pokemon_v2_pokemonform: pokemon_v2_pokemonform_bool_exp - pokemon_v2_type: pokemon_v2_type_bool_exp - slot: Int_comparison_exp - type_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokemonformtype_max_fields { - id: Int - pokemon_form_id: Int - slot: Int - type_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_pokemonformtype" -""" -input pokemon_v2_pokemonformtype_max_order_by { - id: order_by - pokemon_form_id: order_by - slot: order_by - type_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_pokemonformtype_min_fields { - id: Int - pokemon_form_id: Int - slot: Int - type_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_pokemonformtype" -""" -input pokemon_v2_pokemonformtype_min_order_by { - id: order_by - pokemon_form_id: order_by - slot: order_by - type_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_pokemonformtype". -""" -input pokemon_v2_pokemonformtype_order_by { - id: order_by - pokemon_form_id: order_by - pokemon_v2_pokemonform: pokemon_v2_pokemonform_order_by - pokemon_v2_type: pokemon_v2_type_order_by - slot: order_by - type_id: order_by -} - -""" -select columns of table "pokemon_v2_pokemonformtype" -""" -enum pokemon_v2_pokemonformtype_select_column { - """column name""" - id - - """column name""" - pokemon_form_id - - """column name""" - slot - - """column name""" - type_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokemonformtype_stddev_fields { - id: Float - pokemon_form_id: Float - slot: Float - type_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_pokemonformtype" -""" -input pokemon_v2_pokemonformtype_stddev_order_by { - id: order_by - pokemon_form_id: order_by - slot: order_by - type_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokemonformtype_stddev_pop_fields { - id: Float - pokemon_form_id: Float - slot: Float - type_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_pokemonformtype" -""" -input pokemon_v2_pokemonformtype_stddev_pop_order_by { - id: order_by - pokemon_form_id: order_by - slot: order_by - type_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokemonformtype_stddev_samp_fields { - id: Float - pokemon_form_id: Float - slot: Float - type_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_pokemonformtype" -""" -input pokemon_v2_pokemonformtype_stddev_samp_order_by { - id: order_by - pokemon_form_id: order_by - slot: order_by - type_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_pokemonformtype" -""" -input pokemon_v2_pokemonformtype_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokemonformtype_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokemonformtype_stream_cursor_value_input { - id: Int - pokemon_form_id: Int - slot: Int - type_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_pokemonformtype_sum_fields { - id: Int - pokemon_form_id: Int - slot: Int - type_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_pokemonformtype" -""" -input pokemon_v2_pokemonformtype_sum_order_by { - id: order_by - pokemon_form_id: order_by - slot: order_by - type_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokemonformtype_var_pop_fields { - id: Float - pokemon_form_id: Float - slot: Float - type_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_pokemonformtype" -""" -input pokemon_v2_pokemonformtype_var_pop_order_by { - id: order_by - pokemon_form_id: order_by - slot: order_by - type_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokemonformtype_var_samp_fields { - id: Float - pokemon_form_id: Float - slot: Float - type_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_pokemonformtype" -""" -input pokemon_v2_pokemonformtype_var_samp_order_by { - id: order_by - pokemon_form_id: order_by - slot: order_by - type_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_pokemonformtype_variance_fields { - id: Float - pokemon_form_id: Float - slot: Float - type_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_pokemonformtype" -""" -input pokemon_v2_pokemonformtype_variance_order_by { - id: order_by - pokemon_form_id: order_by - slot: order_by - type_id: order_by -} - -""" -columns and relationships of "pokemon_v2_pokemongameindex" -""" -type pokemon_v2_pokemongameindex { - game_index: Int! - id: Int! - pokemon_id: Int - - """An object relationship""" - pokemon_v2_pokemon: pokemon_v2_pokemon - - """An object relationship""" - pokemon_v2_version: pokemon_v2_version - version_id: Int -} - -""" -aggregated selection of "pokemon_v2_pokemongameindex" -""" -type pokemon_v2_pokemongameindex_aggregate { - aggregate: pokemon_v2_pokemongameindex_aggregate_fields - nodes: [pokemon_v2_pokemongameindex!]! -} - -input pokemon_v2_pokemongameindex_aggregate_bool_exp { - count: pokemon_v2_pokemongameindex_aggregate_bool_exp_count -} - -input pokemon_v2_pokemongameindex_aggregate_bool_exp_count { - arguments: [pokemon_v2_pokemongameindex_select_column!] - distinct: Boolean - filter: pokemon_v2_pokemongameindex_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_pokemongameindex" -""" -type pokemon_v2_pokemongameindex_aggregate_fields { - avg: pokemon_v2_pokemongameindex_avg_fields - count(columns: [pokemon_v2_pokemongameindex_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokemongameindex_max_fields - min: pokemon_v2_pokemongameindex_min_fields - stddev: pokemon_v2_pokemongameindex_stddev_fields - stddev_pop: pokemon_v2_pokemongameindex_stddev_pop_fields - stddev_samp: pokemon_v2_pokemongameindex_stddev_samp_fields - sum: pokemon_v2_pokemongameindex_sum_fields - var_pop: pokemon_v2_pokemongameindex_var_pop_fields - var_samp: pokemon_v2_pokemongameindex_var_samp_fields - variance: pokemon_v2_pokemongameindex_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_pokemongameindex" -""" -input pokemon_v2_pokemongameindex_aggregate_order_by { - avg: pokemon_v2_pokemongameindex_avg_order_by - count: order_by - max: pokemon_v2_pokemongameindex_max_order_by - min: pokemon_v2_pokemongameindex_min_order_by - stddev: pokemon_v2_pokemongameindex_stddev_order_by - stddev_pop: pokemon_v2_pokemongameindex_stddev_pop_order_by - stddev_samp: pokemon_v2_pokemongameindex_stddev_samp_order_by - sum: pokemon_v2_pokemongameindex_sum_order_by - var_pop: pokemon_v2_pokemongameindex_var_pop_order_by - var_samp: pokemon_v2_pokemongameindex_var_samp_order_by - variance: pokemon_v2_pokemongameindex_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_pokemongameindex_avg_fields { - game_index: Float - id: Float - pokemon_id: Float - version_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_pokemongameindex" -""" -input pokemon_v2_pokemongameindex_avg_order_by { - game_index: order_by - id: order_by - pokemon_id: order_by - version_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokemongameindex". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokemongameindex_bool_exp { - _and: [pokemon_v2_pokemongameindex_bool_exp!] - _not: pokemon_v2_pokemongameindex_bool_exp - _or: [pokemon_v2_pokemongameindex_bool_exp!] - game_index: Int_comparison_exp - id: Int_comparison_exp - pokemon_id: Int_comparison_exp - pokemon_v2_pokemon: pokemon_v2_pokemon_bool_exp - pokemon_v2_version: pokemon_v2_version_bool_exp - version_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokemongameindex_max_fields { - game_index: Int - id: Int - pokemon_id: Int - version_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_pokemongameindex" -""" -input pokemon_v2_pokemongameindex_max_order_by { - game_index: order_by - id: order_by - pokemon_id: order_by - version_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_pokemongameindex_min_fields { - game_index: Int - id: Int - pokemon_id: Int - version_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_pokemongameindex" -""" -input pokemon_v2_pokemongameindex_min_order_by { - game_index: order_by - id: order_by - pokemon_id: order_by - version_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_pokemongameindex". -""" -input pokemon_v2_pokemongameindex_order_by { - game_index: order_by - id: order_by - pokemon_id: order_by - pokemon_v2_pokemon: pokemon_v2_pokemon_order_by - pokemon_v2_version: pokemon_v2_version_order_by - version_id: order_by -} - -""" -select columns of table "pokemon_v2_pokemongameindex" -""" -enum pokemon_v2_pokemongameindex_select_column { - """column name""" - game_index - - """column name""" - id - - """column name""" - pokemon_id - - """column name""" - version_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokemongameindex_stddev_fields { - game_index: Float - id: Float - pokemon_id: Float - version_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_pokemongameindex" -""" -input pokemon_v2_pokemongameindex_stddev_order_by { - game_index: order_by - id: order_by - pokemon_id: order_by - version_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokemongameindex_stddev_pop_fields { - game_index: Float - id: Float - pokemon_id: Float - version_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_pokemongameindex" -""" -input pokemon_v2_pokemongameindex_stddev_pop_order_by { - game_index: order_by - id: order_by - pokemon_id: order_by - version_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokemongameindex_stddev_samp_fields { - game_index: Float - id: Float - pokemon_id: Float - version_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_pokemongameindex" -""" -input pokemon_v2_pokemongameindex_stddev_samp_order_by { - game_index: order_by - id: order_by - pokemon_id: order_by - version_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_pokemongameindex" -""" -input pokemon_v2_pokemongameindex_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokemongameindex_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokemongameindex_stream_cursor_value_input { - game_index: Int - id: Int - pokemon_id: Int - version_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_pokemongameindex_sum_fields { - game_index: Int - id: Int - pokemon_id: Int - version_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_pokemongameindex" -""" -input pokemon_v2_pokemongameindex_sum_order_by { - game_index: order_by - id: order_by - pokemon_id: order_by - version_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokemongameindex_var_pop_fields { - game_index: Float - id: Float - pokemon_id: Float - version_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_pokemongameindex" -""" -input pokemon_v2_pokemongameindex_var_pop_order_by { - game_index: order_by - id: order_by - pokemon_id: order_by - version_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokemongameindex_var_samp_fields { - game_index: Float - id: Float - pokemon_id: Float - version_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_pokemongameindex" -""" -input pokemon_v2_pokemongameindex_var_samp_order_by { - game_index: order_by - id: order_by - pokemon_id: order_by - version_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_pokemongameindex_variance_fields { - game_index: Float - id: Float - pokemon_id: Float - version_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_pokemongameindex" -""" -input pokemon_v2_pokemongameindex_variance_order_by { - game_index: order_by - id: order_by - pokemon_id: order_by - version_id: order_by -} - -""" -columns and relationships of "pokemon_v2_pokemonhabitat" -""" -type pokemon_v2_pokemonhabitat { - id: Int! - name: String! - - """An array relationship""" - pokemon_v2_pokemonhabitatnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonhabitatname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonhabitatname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonhabitatname_bool_exp - ): [pokemon_v2_pokemonhabitatname!]! - - """An aggregate relationship""" - pokemon_v2_pokemonhabitatnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonhabitatname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonhabitatname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonhabitatname_bool_exp - ): pokemon_v2_pokemonhabitatname_aggregate! - - """An array relationship""" - pokemon_v2_pokemonspecies( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspecies_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspecies_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspecies_bool_exp - ): [pokemon_v2_pokemonspecies!]! - - """An aggregate relationship""" - pokemon_v2_pokemonspecies_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspecies_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspecies_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspecies_bool_exp - ): pokemon_v2_pokemonspecies_aggregate! -} - -""" -aggregated selection of "pokemon_v2_pokemonhabitat" -""" -type pokemon_v2_pokemonhabitat_aggregate { - aggregate: pokemon_v2_pokemonhabitat_aggregate_fields - nodes: [pokemon_v2_pokemonhabitat!]! -} - -""" -aggregate fields of "pokemon_v2_pokemonhabitat" -""" -type pokemon_v2_pokemonhabitat_aggregate_fields { - avg: pokemon_v2_pokemonhabitat_avg_fields - count(columns: [pokemon_v2_pokemonhabitat_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokemonhabitat_max_fields - min: pokemon_v2_pokemonhabitat_min_fields - stddev: pokemon_v2_pokemonhabitat_stddev_fields - stddev_pop: pokemon_v2_pokemonhabitat_stddev_pop_fields - stddev_samp: pokemon_v2_pokemonhabitat_stddev_samp_fields - sum: pokemon_v2_pokemonhabitat_sum_fields - var_pop: pokemon_v2_pokemonhabitat_var_pop_fields - var_samp: pokemon_v2_pokemonhabitat_var_samp_fields - variance: pokemon_v2_pokemonhabitat_variance_fields -} - -"""aggregate avg on columns""" -type pokemon_v2_pokemonhabitat_avg_fields { - id: Float -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokemonhabitat". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokemonhabitat_bool_exp { - _and: [pokemon_v2_pokemonhabitat_bool_exp!] - _not: pokemon_v2_pokemonhabitat_bool_exp - _or: [pokemon_v2_pokemonhabitat_bool_exp!] - id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_pokemonhabitatnames: pokemon_v2_pokemonhabitatname_bool_exp - pokemon_v2_pokemonhabitatnames_aggregate: pokemon_v2_pokemonhabitatname_aggregate_bool_exp - pokemon_v2_pokemonspecies: pokemon_v2_pokemonspecies_bool_exp - pokemon_v2_pokemonspecies_aggregate: pokemon_v2_pokemonspecies_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokemonhabitat_max_fields { - id: Int - name: String -} - -"""aggregate min on columns""" -type pokemon_v2_pokemonhabitat_min_fields { - id: Int - name: String -} - -"""Ordering options when selecting data from "pokemon_v2_pokemonhabitat".""" -input pokemon_v2_pokemonhabitat_order_by { - id: order_by - name: order_by - pokemon_v2_pokemonhabitatnames_aggregate: pokemon_v2_pokemonhabitatname_aggregate_order_by - pokemon_v2_pokemonspecies_aggregate: pokemon_v2_pokemonspecies_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_pokemonhabitat" -""" -enum pokemon_v2_pokemonhabitat_select_column { - """column name""" - id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokemonhabitat_stddev_fields { - id: Float -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokemonhabitat_stddev_pop_fields { - id: Float -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokemonhabitat_stddev_samp_fields { - id: Float -} - -""" -Streaming cursor of the table "pokemon_v2_pokemonhabitat" -""" -input pokemon_v2_pokemonhabitat_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokemonhabitat_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokemonhabitat_stream_cursor_value_input { - id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_pokemonhabitat_sum_fields { - id: Int -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokemonhabitat_var_pop_fields { - id: Float -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokemonhabitat_var_samp_fields { - id: Float -} - -"""aggregate variance on columns""" -type pokemon_v2_pokemonhabitat_variance_fields { - id: Float -} - -""" -columns and relationships of "pokemon_v2_pokemonhabitatname" -""" -type pokemon_v2_pokemonhabitatname { - id: Int! - language_id: Int - name: String! - pokemon_habitat_id: Int - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_pokemonhabitat: pokemon_v2_pokemonhabitat -} - -""" -aggregated selection of "pokemon_v2_pokemonhabitatname" -""" -type pokemon_v2_pokemonhabitatname_aggregate { - aggregate: pokemon_v2_pokemonhabitatname_aggregate_fields - nodes: [pokemon_v2_pokemonhabitatname!]! -} - -input pokemon_v2_pokemonhabitatname_aggregate_bool_exp { - count: pokemon_v2_pokemonhabitatname_aggregate_bool_exp_count -} - -input pokemon_v2_pokemonhabitatname_aggregate_bool_exp_count { - arguments: [pokemon_v2_pokemonhabitatname_select_column!] - distinct: Boolean - filter: pokemon_v2_pokemonhabitatname_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_pokemonhabitatname" -""" -type pokemon_v2_pokemonhabitatname_aggregate_fields { - avg: pokemon_v2_pokemonhabitatname_avg_fields - count(columns: [pokemon_v2_pokemonhabitatname_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokemonhabitatname_max_fields - min: pokemon_v2_pokemonhabitatname_min_fields - stddev: pokemon_v2_pokemonhabitatname_stddev_fields - stddev_pop: pokemon_v2_pokemonhabitatname_stddev_pop_fields - stddev_samp: pokemon_v2_pokemonhabitatname_stddev_samp_fields - sum: pokemon_v2_pokemonhabitatname_sum_fields - var_pop: pokemon_v2_pokemonhabitatname_var_pop_fields - var_samp: pokemon_v2_pokemonhabitatname_var_samp_fields - variance: pokemon_v2_pokemonhabitatname_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_pokemonhabitatname" -""" -input pokemon_v2_pokemonhabitatname_aggregate_order_by { - avg: pokemon_v2_pokemonhabitatname_avg_order_by - count: order_by - max: pokemon_v2_pokemonhabitatname_max_order_by - min: pokemon_v2_pokemonhabitatname_min_order_by - stddev: pokemon_v2_pokemonhabitatname_stddev_order_by - stddev_pop: pokemon_v2_pokemonhabitatname_stddev_pop_order_by - stddev_samp: pokemon_v2_pokemonhabitatname_stddev_samp_order_by - sum: pokemon_v2_pokemonhabitatname_sum_order_by - var_pop: pokemon_v2_pokemonhabitatname_var_pop_order_by - var_samp: pokemon_v2_pokemonhabitatname_var_samp_order_by - variance: pokemon_v2_pokemonhabitatname_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_pokemonhabitatname_avg_fields { - id: Float - language_id: Float - pokemon_habitat_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_pokemonhabitatname" -""" -input pokemon_v2_pokemonhabitatname_avg_order_by { - id: order_by - language_id: order_by - pokemon_habitat_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokemonhabitatname". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokemonhabitatname_bool_exp { - _and: [pokemon_v2_pokemonhabitatname_bool_exp!] - _not: pokemon_v2_pokemonhabitatname_bool_exp - _or: [pokemon_v2_pokemonhabitatname_bool_exp!] - id: Int_comparison_exp - language_id: Int_comparison_exp - name: String_comparison_exp - pokemon_habitat_id: Int_comparison_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_pokemonhabitat: pokemon_v2_pokemonhabitat_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokemonhabitatname_max_fields { - id: Int - language_id: Int - name: String - pokemon_habitat_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_pokemonhabitatname" -""" -input pokemon_v2_pokemonhabitatname_max_order_by { - id: order_by - language_id: order_by - name: order_by - pokemon_habitat_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_pokemonhabitatname_min_fields { - id: Int - language_id: Int - name: String - pokemon_habitat_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_pokemonhabitatname" -""" -input pokemon_v2_pokemonhabitatname_min_order_by { - id: order_by - language_id: order_by - name: order_by - pokemon_habitat_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_pokemonhabitatname". -""" -input pokemon_v2_pokemonhabitatname_order_by { - id: order_by - language_id: order_by - name: order_by - pokemon_habitat_id: order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_pokemonhabitat: pokemon_v2_pokemonhabitat_order_by -} - -""" -select columns of table "pokemon_v2_pokemonhabitatname" -""" -enum pokemon_v2_pokemonhabitatname_select_column { - """column name""" - id - - """column name""" - language_id - - """column name""" - name - - """column name""" - pokemon_habitat_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokemonhabitatname_stddev_fields { - id: Float - language_id: Float - pokemon_habitat_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_pokemonhabitatname" -""" -input pokemon_v2_pokemonhabitatname_stddev_order_by { - id: order_by - language_id: order_by - pokemon_habitat_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokemonhabitatname_stddev_pop_fields { - id: Float - language_id: Float - pokemon_habitat_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_pokemonhabitatname" -""" -input pokemon_v2_pokemonhabitatname_stddev_pop_order_by { - id: order_by - language_id: order_by - pokemon_habitat_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokemonhabitatname_stddev_samp_fields { - id: Float - language_id: Float - pokemon_habitat_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_pokemonhabitatname" -""" -input pokemon_v2_pokemonhabitatname_stddev_samp_order_by { - id: order_by - language_id: order_by - pokemon_habitat_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_pokemonhabitatname" -""" -input pokemon_v2_pokemonhabitatname_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokemonhabitatname_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokemonhabitatname_stream_cursor_value_input { - id: Int - language_id: Int - name: String - pokemon_habitat_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_pokemonhabitatname_sum_fields { - id: Int - language_id: Int - pokemon_habitat_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_pokemonhabitatname" -""" -input pokemon_v2_pokemonhabitatname_sum_order_by { - id: order_by - language_id: order_by - pokemon_habitat_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokemonhabitatname_var_pop_fields { - id: Float - language_id: Float - pokemon_habitat_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_pokemonhabitatname" -""" -input pokemon_v2_pokemonhabitatname_var_pop_order_by { - id: order_by - language_id: order_by - pokemon_habitat_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokemonhabitatname_var_samp_fields { - id: Float - language_id: Float - pokemon_habitat_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_pokemonhabitatname" -""" -input pokemon_v2_pokemonhabitatname_var_samp_order_by { - id: order_by - language_id: order_by - pokemon_habitat_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_pokemonhabitatname_variance_fields { - id: Float - language_id: Float - pokemon_habitat_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_pokemonhabitatname" -""" -input pokemon_v2_pokemonhabitatname_variance_order_by { - id: order_by - language_id: order_by - pokemon_habitat_id: order_by -} - -""" -columns and relationships of "pokemon_v2_pokemonitem" -""" -type pokemon_v2_pokemonitem { - id: Int! - item_id: Int - pokemon_id: Int - - """An object relationship""" - pokemon_v2_item: pokemon_v2_item - - """An object relationship""" - pokemon_v2_pokemon: pokemon_v2_pokemon - - """An object relationship""" - pokemon_v2_version: pokemon_v2_version - rarity: Int! - version_id: Int -} - -""" -aggregated selection of "pokemon_v2_pokemonitem" -""" -type pokemon_v2_pokemonitem_aggregate { - aggregate: pokemon_v2_pokemonitem_aggregate_fields - nodes: [pokemon_v2_pokemonitem!]! -} - -input pokemon_v2_pokemonitem_aggregate_bool_exp { - count: pokemon_v2_pokemonitem_aggregate_bool_exp_count -} - -input pokemon_v2_pokemonitem_aggregate_bool_exp_count { - arguments: [pokemon_v2_pokemonitem_select_column!] - distinct: Boolean - filter: pokemon_v2_pokemonitem_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_pokemonitem" -""" -type pokemon_v2_pokemonitem_aggregate_fields { - avg: pokemon_v2_pokemonitem_avg_fields - count(columns: [pokemon_v2_pokemonitem_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokemonitem_max_fields - min: pokemon_v2_pokemonitem_min_fields - stddev: pokemon_v2_pokemonitem_stddev_fields - stddev_pop: pokemon_v2_pokemonitem_stddev_pop_fields - stddev_samp: pokemon_v2_pokemonitem_stddev_samp_fields - sum: pokemon_v2_pokemonitem_sum_fields - var_pop: pokemon_v2_pokemonitem_var_pop_fields - var_samp: pokemon_v2_pokemonitem_var_samp_fields - variance: pokemon_v2_pokemonitem_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_pokemonitem" -""" -input pokemon_v2_pokemonitem_aggregate_order_by { - avg: pokemon_v2_pokemonitem_avg_order_by - count: order_by - max: pokemon_v2_pokemonitem_max_order_by - min: pokemon_v2_pokemonitem_min_order_by - stddev: pokemon_v2_pokemonitem_stddev_order_by - stddev_pop: pokemon_v2_pokemonitem_stddev_pop_order_by - stddev_samp: pokemon_v2_pokemonitem_stddev_samp_order_by - sum: pokemon_v2_pokemonitem_sum_order_by - var_pop: pokemon_v2_pokemonitem_var_pop_order_by - var_samp: pokemon_v2_pokemonitem_var_samp_order_by - variance: pokemon_v2_pokemonitem_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_pokemonitem_avg_fields { - id: Float - item_id: Float - pokemon_id: Float - rarity: Float - version_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_pokemonitem" -""" -input pokemon_v2_pokemonitem_avg_order_by { - id: order_by - item_id: order_by - pokemon_id: order_by - rarity: order_by - version_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokemonitem". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokemonitem_bool_exp { - _and: [pokemon_v2_pokemonitem_bool_exp!] - _not: pokemon_v2_pokemonitem_bool_exp - _or: [pokemon_v2_pokemonitem_bool_exp!] - id: Int_comparison_exp - item_id: Int_comparison_exp - pokemon_id: Int_comparison_exp - pokemon_v2_item: pokemon_v2_item_bool_exp - pokemon_v2_pokemon: pokemon_v2_pokemon_bool_exp - pokemon_v2_version: pokemon_v2_version_bool_exp - rarity: Int_comparison_exp - version_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokemonitem_max_fields { - id: Int - item_id: Int - pokemon_id: Int - rarity: Int - version_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_pokemonitem" -""" -input pokemon_v2_pokemonitem_max_order_by { - id: order_by - item_id: order_by - pokemon_id: order_by - rarity: order_by - version_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_pokemonitem_min_fields { - id: Int - item_id: Int - pokemon_id: Int - rarity: Int - version_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_pokemonitem" -""" -input pokemon_v2_pokemonitem_min_order_by { - id: order_by - item_id: order_by - pokemon_id: order_by - rarity: order_by - version_id: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_pokemonitem".""" -input pokemon_v2_pokemonitem_order_by { - id: order_by - item_id: order_by - pokemon_id: order_by - pokemon_v2_item: pokemon_v2_item_order_by - pokemon_v2_pokemon: pokemon_v2_pokemon_order_by - pokemon_v2_version: pokemon_v2_version_order_by - rarity: order_by - version_id: order_by -} - -""" -select columns of table "pokemon_v2_pokemonitem" -""" -enum pokemon_v2_pokemonitem_select_column { - """column name""" - id - - """column name""" - item_id - - """column name""" - pokemon_id - - """column name""" - rarity - - """column name""" - version_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokemonitem_stddev_fields { - id: Float - item_id: Float - pokemon_id: Float - rarity: Float - version_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_pokemonitem" -""" -input pokemon_v2_pokemonitem_stddev_order_by { - id: order_by - item_id: order_by - pokemon_id: order_by - rarity: order_by - version_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokemonitem_stddev_pop_fields { - id: Float - item_id: Float - pokemon_id: Float - rarity: Float - version_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_pokemonitem" -""" -input pokemon_v2_pokemonitem_stddev_pop_order_by { - id: order_by - item_id: order_by - pokemon_id: order_by - rarity: order_by - version_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokemonitem_stddev_samp_fields { - id: Float - item_id: Float - pokemon_id: Float - rarity: Float - version_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_pokemonitem" -""" -input pokemon_v2_pokemonitem_stddev_samp_order_by { - id: order_by - item_id: order_by - pokemon_id: order_by - rarity: order_by - version_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_pokemonitem" -""" -input pokemon_v2_pokemonitem_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokemonitem_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokemonitem_stream_cursor_value_input { - id: Int - item_id: Int - pokemon_id: Int - rarity: Int - version_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_pokemonitem_sum_fields { - id: Int - item_id: Int - pokemon_id: Int - rarity: Int - version_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_pokemonitem" -""" -input pokemon_v2_pokemonitem_sum_order_by { - id: order_by - item_id: order_by - pokemon_id: order_by - rarity: order_by - version_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokemonitem_var_pop_fields { - id: Float - item_id: Float - pokemon_id: Float - rarity: Float - version_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_pokemonitem" -""" -input pokemon_v2_pokemonitem_var_pop_order_by { - id: order_by - item_id: order_by - pokemon_id: order_by - rarity: order_by - version_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokemonitem_var_samp_fields { - id: Float - item_id: Float - pokemon_id: Float - rarity: Float - version_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_pokemonitem" -""" -input pokemon_v2_pokemonitem_var_samp_order_by { - id: order_by - item_id: order_by - pokemon_id: order_by - rarity: order_by - version_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_pokemonitem_variance_fields { - id: Float - item_id: Float - pokemon_id: Float - rarity: Float - version_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_pokemonitem" -""" -input pokemon_v2_pokemonitem_variance_order_by { - id: order_by - item_id: order_by - pokemon_id: order_by - rarity: order_by - version_id: order_by -} - -""" -columns and relationships of "pokemon_v2_pokemonmove" -""" -type pokemon_v2_pokemonmove { - id: Int! - level: Int! - mastery: Int - move_id: Int - move_learn_method_id: Int - order: Int - pokemon_id: Int - - """An object relationship""" - pokemon_v2_move: pokemon_v2_move - - """An object relationship""" - pokemon_v2_movelearnmethod: pokemon_v2_movelearnmethod - - """An object relationship""" - pokemon_v2_pokemon: pokemon_v2_pokemon - - """An object relationship""" - pokemon_v2_versiongroup: pokemon_v2_versiongroup - version_group_id: Int -} - -""" -aggregated selection of "pokemon_v2_pokemonmove" -""" -type pokemon_v2_pokemonmove_aggregate { - aggregate: pokemon_v2_pokemonmove_aggregate_fields - nodes: [pokemon_v2_pokemonmove!]! -} - -input pokemon_v2_pokemonmove_aggregate_bool_exp { - count: pokemon_v2_pokemonmove_aggregate_bool_exp_count -} - -input pokemon_v2_pokemonmove_aggregate_bool_exp_count { - arguments: [pokemon_v2_pokemonmove_select_column!] - distinct: Boolean - filter: pokemon_v2_pokemonmove_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_pokemonmove" -""" -type pokemon_v2_pokemonmove_aggregate_fields { - avg: pokemon_v2_pokemonmove_avg_fields - count(columns: [pokemon_v2_pokemonmove_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokemonmove_max_fields - min: pokemon_v2_pokemonmove_min_fields - stddev: pokemon_v2_pokemonmove_stddev_fields - stddev_pop: pokemon_v2_pokemonmove_stddev_pop_fields - stddev_samp: pokemon_v2_pokemonmove_stddev_samp_fields - sum: pokemon_v2_pokemonmove_sum_fields - var_pop: pokemon_v2_pokemonmove_var_pop_fields - var_samp: pokemon_v2_pokemonmove_var_samp_fields - variance: pokemon_v2_pokemonmove_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_pokemonmove" -""" -input pokemon_v2_pokemonmove_aggregate_order_by { - avg: pokemon_v2_pokemonmove_avg_order_by - count: order_by - max: pokemon_v2_pokemonmove_max_order_by - min: pokemon_v2_pokemonmove_min_order_by - stddev: pokemon_v2_pokemonmove_stddev_order_by - stddev_pop: pokemon_v2_pokemonmove_stddev_pop_order_by - stddev_samp: pokemon_v2_pokemonmove_stddev_samp_order_by - sum: pokemon_v2_pokemonmove_sum_order_by - var_pop: pokemon_v2_pokemonmove_var_pop_order_by - var_samp: pokemon_v2_pokemonmove_var_samp_order_by - variance: pokemon_v2_pokemonmove_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_pokemonmove_avg_fields { - id: Float - level: Float - mastery: Float - move_id: Float - move_learn_method_id: Float - order: Float - pokemon_id: Float - version_group_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_pokemonmove" -""" -input pokemon_v2_pokemonmove_avg_order_by { - id: order_by - level: order_by - mastery: order_by - move_id: order_by - move_learn_method_id: order_by - order: order_by - pokemon_id: order_by - version_group_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokemonmove". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokemonmove_bool_exp { - _and: [pokemon_v2_pokemonmove_bool_exp!] - _not: pokemon_v2_pokemonmove_bool_exp - _or: [pokemon_v2_pokemonmove_bool_exp!] - id: Int_comparison_exp - level: Int_comparison_exp - mastery: Int_comparison_exp - move_id: Int_comparison_exp - move_learn_method_id: Int_comparison_exp - order: Int_comparison_exp - pokemon_id: Int_comparison_exp - pokemon_v2_move: pokemon_v2_move_bool_exp - pokemon_v2_movelearnmethod: pokemon_v2_movelearnmethod_bool_exp - pokemon_v2_pokemon: pokemon_v2_pokemon_bool_exp - pokemon_v2_versiongroup: pokemon_v2_versiongroup_bool_exp - version_group_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokemonmove_max_fields { - id: Int - level: Int - mastery: Int - move_id: Int - move_learn_method_id: Int - order: Int - pokemon_id: Int - version_group_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_pokemonmove" -""" -input pokemon_v2_pokemonmove_max_order_by { - id: order_by - level: order_by - mastery: order_by - move_id: order_by - move_learn_method_id: order_by - order: order_by - pokemon_id: order_by - version_group_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_pokemonmove_min_fields { - id: Int - level: Int - mastery: Int - move_id: Int - move_learn_method_id: Int - order: Int - pokemon_id: Int - version_group_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_pokemonmove" -""" -input pokemon_v2_pokemonmove_min_order_by { - id: order_by - level: order_by - mastery: order_by - move_id: order_by - move_learn_method_id: order_by - order: order_by - pokemon_id: order_by - version_group_id: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_pokemonmove".""" -input pokemon_v2_pokemonmove_order_by { - id: order_by - level: order_by - mastery: order_by - move_id: order_by - move_learn_method_id: order_by - order: order_by - pokemon_id: order_by - pokemon_v2_move: pokemon_v2_move_order_by - pokemon_v2_movelearnmethod: pokemon_v2_movelearnmethod_order_by - pokemon_v2_pokemon: pokemon_v2_pokemon_order_by - pokemon_v2_versiongroup: pokemon_v2_versiongroup_order_by - version_group_id: order_by -} - -""" -select columns of table "pokemon_v2_pokemonmove" -""" -enum pokemon_v2_pokemonmove_select_column { - """column name""" - id - - """column name""" - level - - """column name""" - mastery - - """column name""" - move_id - - """column name""" - move_learn_method_id - - """column name""" - order - - """column name""" - pokemon_id - - """column name""" - version_group_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokemonmove_stddev_fields { - id: Float - level: Float - mastery: Float - move_id: Float - move_learn_method_id: Float - order: Float - pokemon_id: Float - version_group_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_pokemonmove" -""" -input pokemon_v2_pokemonmove_stddev_order_by { - id: order_by - level: order_by - mastery: order_by - move_id: order_by - move_learn_method_id: order_by - order: order_by - pokemon_id: order_by - version_group_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokemonmove_stddev_pop_fields { - id: Float - level: Float - mastery: Float - move_id: Float - move_learn_method_id: Float - order: Float - pokemon_id: Float - version_group_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_pokemonmove" -""" -input pokemon_v2_pokemonmove_stddev_pop_order_by { - id: order_by - level: order_by - mastery: order_by - move_id: order_by - move_learn_method_id: order_by - order: order_by - pokemon_id: order_by - version_group_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokemonmove_stddev_samp_fields { - id: Float - level: Float - mastery: Float - move_id: Float - move_learn_method_id: Float - order: Float - pokemon_id: Float - version_group_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_pokemonmove" -""" -input pokemon_v2_pokemonmove_stddev_samp_order_by { - id: order_by - level: order_by - mastery: order_by - move_id: order_by - move_learn_method_id: order_by - order: order_by - pokemon_id: order_by - version_group_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_pokemonmove" -""" -input pokemon_v2_pokemonmove_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokemonmove_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokemonmove_stream_cursor_value_input { - id: Int - level: Int - mastery: Int - move_id: Int - move_learn_method_id: Int - order: Int - pokemon_id: Int - version_group_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_pokemonmove_sum_fields { - id: Int - level: Int - mastery: Int - move_id: Int - move_learn_method_id: Int - order: Int - pokemon_id: Int - version_group_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_pokemonmove" -""" -input pokemon_v2_pokemonmove_sum_order_by { - id: order_by - level: order_by - mastery: order_by - move_id: order_by - move_learn_method_id: order_by - order: order_by - pokemon_id: order_by - version_group_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokemonmove_var_pop_fields { - id: Float - level: Float - mastery: Float - move_id: Float - move_learn_method_id: Float - order: Float - pokemon_id: Float - version_group_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_pokemonmove" -""" -input pokemon_v2_pokemonmove_var_pop_order_by { - id: order_by - level: order_by - mastery: order_by - move_id: order_by - move_learn_method_id: order_by - order: order_by - pokemon_id: order_by - version_group_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokemonmove_var_samp_fields { - id: Float - level: Float - mastery: Float - move_id: Float - move_learn_method_id: Float - order: Float - pokemon_id: Float - version_group_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_pokemonmove" -""" -input pokemon_v2_pokemonmove_var_samp_order_by { - id: order_by - level: order_by - mastery: order_by - move_id: order_by - move_learn_method_id: order_by - order: order_by - pokemon_id: order_by - version_group_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_pokemonmove_variance_fields { - id: Float - level: Float - mastery: Float - move_id: Float - move_learn_method_id: Float - order: Float - pokemon_id: Float - version_group_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_pokemonmove" -""" -input pokemon_v2_pokemonmove_variance_order_by { - id: order_by - level: order_by - mastery: order_by - move_id: order_by - move_learn_method_id: order_by - order: order_by - pokemon_id: order_by - version_group_id: order_by -} - -""" -columns and relationships of "pokemon_v2_pokemonshape" -""" -type pokemon_v2_pokemonshape { - id: Int! - name: String! - - """An array relationship""" - pokemon_v2_pokemonshapenames( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonshapename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonshapename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonshapename_bool_exp - ): [pokemon_v2_pokemonshapename!]! - - """An aggregate relationship""" - pokemon_v2_pokemonshapenames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonshapename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonshapename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonshapename_bool_exp - ): pokemon_v2_pokemonshapename_aggregate! - - """An array relationship""" - pokemon_v2_pokemonspecies( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspecies_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspecies_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspecies_bool_exp - ): [pokemon_v2_pokemonspecies!]! - - """An aggregate relationship""" - pokemon_v2_pokemonspecies_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspecies_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspecies_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspecies_bool_exp - ): pokemon_v2_pokemonspecies_aggregate! -} - -""" -aggregated selection of "pokemon_v2_pokemonshape" -""" -type pokemon_v2_pokemonshape_aggregate { - aggregate: pokemon_v2_pokemonshape_aggregate_fields - nodes: [pokemon_v2_pokemonshape!]! -} - -""" -aggregate fields of "pokemon_v2_pokemonshape" -""" -type pokemon_v2_pokemonshape_aggregate_fields { - avg: pokemon_v2_pokemonshape_avg_fields - count(columns: [pokemon_v2_pokemonshape_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokemonshape_max_fields - min: pokemon_v2_pokemonshape_min_fields - stddev: pokemon_v2_pokemonshape_stddev_fields - stddev_pop: pokemon_v2_pokemonshape_stddev_pop_fields - stddev_samp: pokemon_v2_pokemonshape_stddev_samp_fields - sum: pokemon_v2_pokemonshape_sum_fields - var_pop: pokemon_v2_pokemonshape_var_pop_fields - var_samp: pokemon_v2_pokemonshape_var_samp_fields - variance: pokemon_v2_pokemonshape_variance_fields -} - -"""aggregate avg on columns""" -type pokemon_v2_pokemonshape_avg_fields { - id: Float -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokemonshape". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokemonshape_bool_exp { - _and: [pokemon_v2_pokemonshape_bool_exp!] - _not: pokemon_v2_pokemonshape_bool_exp - _or: [pokemon_v2_pokemonshape_bool_exp!] - id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_pokemonshapenames: pokemon_v2_pokemonshapename_bool_exp - pokemon_v2_pokemonshapenames_aggregate: pokemon_v2_pokemonshapename_aggregate_bool_exp - pokemon_v2_pokemonspecies: pokemon_v2_pokemonspecies_bool_exp - pokemon_v2_pokemonspecies_aggregate: pokemon_v2_pokemonspecies_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokemonshape_max_fields { - id: Int - name: String -} - -"""aggregate min on columns""" -type pokemon_v2_pokemonshape_min_fields { - id: Int - name: String -} - -"""Ordering options when selecting data from "pokemon_v2_pokemonshape".""" -input pokemon_v2_pokemonshape_order_by { - id: order_by - name: order_by - pokemon_v2_pokemonshapenames_aggregate: pokemon_v2_pokemonshapename_aggregate_order_by - pokemon_v2_pokemonspecies_aggregate: pokemon_v2_pokemonspecies_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_pokemonshape" -""" -enum pokemon_v2_pokemonshape_select_column { - """column name""" - id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokemonshape_stddev_fields { - id: Float -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokemonshape_stddev_pop_fields { - id: Float -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokemonshape_stddev_samp_fields { - id: Float -} - -""" -Streaming cursor of the table "pokemon_v2_pokemonshape" -""" -input pokemon_v2_pokemonshape_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokemonshape_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokemonshape_stream_cursor_value_input { - id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_pokemonshape_sum_fields { - id: Int -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokemonshape_var_pop_fields { - id: Float -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokemonshape_var_samp_fields { - id: Float -} - -"""aggregate variance on columns""" -type pokemon_v2_pokemonshape_variance_fields { - id: Float -} - -""" -columns and relationships of "pokemon_v2_pokemonshapename" -""" -type pokemon_v2_pokemonshapename { - awesome_name: String! - id: Int! - language_id: Int - name: String! - pokemon_shape_id: Int - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_pokemonshape: pokemon_v2_pokemonshape -} - -""" -aggregated selection of "pokemon_v2_pokemonshapename" -""" -type pokemon_v2_pokemonshapename_aggregate { - aggregate: pokemon_v2_pokemonshapename_aggregate_fields - nodes: [pokemon_v2_pokemonshapename!]! -} - -input pokemon_v2_pokemonshapename_aggregate_bool_exp { - count: pokemon_v2_pokemonshapename_aggregate_bool_exp_count -} - -input pokemon_v2_pokemonshapename_aggregate_bool_exp_count { - arguments: [pokemon_v2_pokemonshapename_select_column!] - distinct: Boolean - filter: pokemon_v2_pokemonshapename_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_pokemonshapename" -""" -type pokemon_v2_pokemonshapename_aggregate_fields { - avg: pokemon_v2_pokemonshapename_avg_fields - count(columns: [pokemon_v2_pokemonshapename_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokemonshapename_max_fields - min: pokemon_v2_pokemonshapename_min_fields - stddev: pokemon_v2_pokemonshapename_stddev_fields - stddev_pop: pokemon_v2_pokemonshapename_stddev_pop_fields - stddev_samp: pokemon_v2_pokemonshapename_stddev_samp_fields - sum: pokemon_v2_pokemonshapename_sum_fields - var_pop: pokemon_v2_pokemonshapename_var_pop_fields - var_samp: pokemon_v2_pokemonshapename_var_samp_fields - variance: pokemon_v2_pokemonshapename_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_pokemonshapename" -""" -input pokemon_v2_pokemonshapename_aggregate_order_by { - avg: pokemon_v2_pokemonshapename_avg_order_by - count: order_by - max: pokemon_v2_pokemonshapename_max_order_by - min: pokemon_v2_pokemonshapename_min_order_by - stddev: pokemon_v2_pokemonshapename_stddev_order_by - stddev_pop: pokemon_v2_pokemonshapename_stddev_pop_order_by - stddev_samp: pokemon_v2_pokemonshapename_stddev_samp_order_by - sum: pokemon_v2_pokemonshapename_sum_order_by - var_pop: pokemon_v2_pokemonshapename_var_pop_order_by - var_samp: pokemon_v2_pokemonshapename_var_samp_order_by - variance: pokemon_v2_pokemonshapename_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_pokemonshapename_avg_fields { - id: Float - language_id: Float - pokemon_shape_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_pokemonshapename" -""" -input pokemon_v2_pokemonshapename_avg_order_by { - id: order_by - language_id: order_by - pokemon_shape_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokemonshapename". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokemonshapename_bool_exp { - _and: [pokemon_v2_pokemonshapename_bool_exp!] - _not: pokemon_v2_pokemonshapename_bool_exp - _or: [pokemon_v2_pokemonshapename_bool_exp!] - awesome_name: String_comparison_exp - id: Int_comparison_exp - language_id: Int_comparison_exp - name: String_comparison_exp - pokemon_shape_id: Int_comparison_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_pokemonshape: pokemon_v2_pokemonshape_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokemonshapename_max_fields { - awesome_name: String - id: Int - language_id: Int - name: String - pokemon_shape_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_pokemonshapename" -""" -input pokemon_v2_pokemonshapename_max_order_by { - awesome_name: order_by - id: order_by - language_id: order_by - name: order_by - pokemon_shape_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_pokemonshapename_min_fields { - awesome_name: String - id: Int - language_id: Int - name: String - pokemon_shape_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_pokemonshapename" -""" -input pokemon_v2_pokemonshapename_min_order_by { - awesome_name: order_by - id: order_by - language_id: order_by - name: order_by - pokemon_shape_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_pokemonshapename". -""" -input pokemon_v2_pokemonshapename_order_by { - awesome_name: order_by - id: order_by - language_id: order_by - name: order_by - pokemon_shape_id: order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_pokemonshape: pokemon_v2_pokemonshape_order_by -} - -""" -select columns of table "pokemon_v2_pokemonshapename" -""" -enum pokemon_v2_pokemonshapename_select_column { - """column name""" - awesome_name - - """column name""" - id - - """column name""" - language_id - - """column name""" - name - - """column name""" - pokemon_shape_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokemonshapename_stddev_fields { - id: Float - language_id: Float - pokemon_shape_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_pokemonshapename" -""" -input pokemon_v2_pokemonshapename_stddev_order_by { - id: order_by - language_id: order_by - pokemon_shape_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokemonshapename_stddev_pop_fields { - id: Float - language_id: Float - pokemon_shape_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_pokemonshapename" -""" -input pokemon_v2_pokemonshapename_stddev_pop_order_by { - id: order_by - language_id: order_by - pokemon_shape_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokemonshapename_stddev_samp_fields { - id: Float - language_id: Float - pokemon_shape_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_pokemonshapename" -""" -input pokemon_v2_pokemonshapename_stddev_samp_order_by { - id: order_by - language_id: order_by - pokemon_shape_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_pokemonshapename" -""" -input pokemon_v2_pokemonshapename_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokemonshapename_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokemonshapename_stream_cursor_value_input { - awesome_name: String - id: Int - language_id: Int - name: String - pokemon_shape_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_pokemonshapename_sum_fields { - id: Int - language_id: Int - pokemon_shape_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_pokemonshapename" -""" -input pokemon_v2_pokemonshapename_sum_order_by { - id: order_by - language_id: order_by - pokemon_shape_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokemonshapename_var_pop_fields { - id: Float - language_id: Float - pokemon_shape_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_pokemonshapename" -""" -input pokemon_v2_pokemonshapename_var_pop_order_by { - id: order_by - language_id: order_by - pokemon_shape_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokemonshapename_var_samp_fields { - id: Float - language_id: Float - pokemon_shape_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_pokemonshapename" -""" -input pokemon_v2_pokemonshapename_var_samp_order_by { - id: order_by - language_id: order_by - pokemon_shape_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_pokemonshapename_variance_fields { - id: Float - language_id: Float - pokemon_shape_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_pokemonshapename" -""" -input pokemon_v2_pokemonshapename_variance_order_by { - id: order_by - language_id: order_by - pokemon_shape_id: order_by -} - -""" -columns and relationships of "pokemon_v2_pokemonspecies" -""" -type pokemon_v2_pokemonspecies { - base_happiness: Int - capture_rate: Int - evolution_chain_id: Int - evolves_from_species_id: Int - forms_switchable: Boolean! - gender_rate: Int - generation_id: Int - growth_rate_id: Int - has_gender_differences: Boolean! - hatch_counter: Int - id: Int! - is_baby: Boolean! - is_legendary: Boolean! - is_mythical: Boolean! - name: String! - order: Int - - """An array relationship""" - pokemonV2PokemonevolutionsByPartySpeciesId( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonevolution_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonevolution_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonevolution_bool_exp - ): [pokemon_v2_pokemonevolution!]! - - """An aggregate relationship""" - pokemonV2PokemonevolutionsByPartySpeciesId_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonevolution_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonevolution_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonevolution_bool_exp - ): pokemon_v2_pokemonevolution_aggregate! - - """An array relationship""" - pokemonV2PokemonevolutionsByTradeSpeciesId( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonevolution_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonevolution_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonevolution_bool_exp - ): [pokemon_v2_pokemonevolution!]! - - """An aggregate relationship""" - pokemonV2PokemonevolutionsByTradeSpeciesId_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonevolution_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonevolution_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonevolution_bool_exp - ): pokemon_v2_pokemonevolution_aggregate! - pokemon_color_id: Int - pokemon_habitat_id: Int - pokemon_shape_id: Int - - """An object relationship""" - pokemon_v2_evolutionchain: pokemon_v2_evolutionchain - - """An object relationship""" - pokemon_v2_generation: pokemon_v2_generation - - """An object relationship""" - pokemon_v2_growthrate: pokemon_v2_growthrate - - """An array relationship""" - pokemon_v2_palparks( - """distinct select on columns""" - distinct_on: [pokemon_v2_palpark_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_palpark_order_by!] - - """filter the rows returned""" - where: pokemon_v2_palpark_bool_exp - ): [pokemon_v2_palpark!]! - - """An aggregate relationship""" - pokemon_v2_palparks_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_palpark_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_palpark_order_by!] - - """filter the rows returned""" - where: pokemon_v2_palpark_bool_exp - ): pokemon_v2_palpark_aggregate! - - """An object relationship""" - pokemon_v2_pokemoncolor: pokemon_v2_pokemoncolor - - """An array relationship""" - pokemon_v2_pokemondexnumbers( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemondexnumber_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemondexnumber_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemondexnumber_bool_exp - ): [pokemon_v2_pokemondexnumber!]! - - """An aggregate relationship""" - pokemon_v2_pokemondexnumbers_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemondexnumber_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemondexnumber_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemondexnumber_bool_exp - ): pokemon_v2_pokemondexnumber_aggregate! - - """An array relationship""" - pokemon_v2_pokemonegggroups( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonegggroup_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonegggroup_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonegggroup_bool_exp - ): [pokemon_v2_pokemonegggroup!]! - - """An aggregate relationship""" - pokemon_v2_pokemonegggroups_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonegggroup_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonegggroup_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonegggroup_bool_exp - ): pokemon_v2_pokemonegggroup_aggregate! - - """An array relationship""" - pokemon_v2_pokemonevolutions( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonevolution_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonevolution_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonevolution_bool_exp - ): [pokemon_v2_pokemonevolution!]! - - """An aggregate relationship""" - pokemon_v2_pokemonevolutions_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonevolution_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonevolution_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonevolution_bool_exp - ): pokemon_v2_pokemonevolution_aggregate! - - """An object relationship""" - pokemon_v2_pokemonhabitat: pokemon_v2_pokemonhabitat - - """An array relationship""" - pokemon_v2_pokemons( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemon_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemon_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemon_bool_exp - ): [pokemon_v2_pokemon!]! - - """An aggregate relationship""" - pokemon_v2_pokemons_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemon_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemon_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemon_bool_exp - ): pokemon_v2_pokemon_aggregate! - - """An object relationship""" - pokemon_v2_pokemonshape: pokemon_v2_pokemonshape - - """An array relationship""" - pokemon_v2_pokemonspecies( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspecies_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspecies_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspecies_bool_exp - ): [pokemon_v2_pokemonspecies!]! - - """An aggregate relationship""" - pokemon_v2_pokemonspecies_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspecies_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspecies_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspecies_bool_exp - ): pokemon_v2_pokemonspecies_aggregate! - - """An array relationship""" - pokemon_v2_pokemonspeciesdescriptions( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspeciesdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspeciesdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspeciesdescription_bool_exp - ): [pokemon_v2_pokemonspeciesdescription!]! - - """An aggregate relationship""" - pokemon_v2_pokemonspeciesdescriptions_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspeciesdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspeciesdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspeciesdescription_bool_exp - ): pokemon_v2_pokemonspeciesdescription_aggregate! - - """An array relationship""" - pokemon_v2_pokemonspeciesflavortexts( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspeciesflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspeciesflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspeciesflavortext_bool_exp - ): [pokemon_v2_pokemonspeciesflavortext!]! - - """An aggregate relationship""" - pokemon_v2_pokemonspeciesflavortexts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspeciesflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspeciesflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspeciesflavortext_bool_exp - ): pokemon_v2_pokemonspeciesflavortext_aggregate! - - """An array relationship""" - pokemon_v2_pokemonspeciesnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspeciesname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspeciesname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspeciesname_bool_exp - ): [pokemon_v2_pokemonspeciesname!]! - - """An aggregate relationship""" - pokemon_v2_pokemonspeciesnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspeciesname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspeciesname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspeciesname_bool_exp - ): pokemon_v2_pokemonspeciesname_aggregate! - - """An object relationship""" - pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies -} - -""" -aggregated selection of "pokemon_v2_pokemonspecies" -""" -type pokemon_v2_pokemonspecies_aggregate { - aggregate: pokemon_v2_pokemonspecies_aggregate_fields - nodes: [pokemon_v2_pokemonspecies!]! -} - -input pokemon_v2_pokemonspecies_aggregate_bool_exp { - bool_and: pokemon_v2_pokemonspecies_aggregate_bool_exp_bool_and - bool_or: pokemon_v2_pokemonspecies_aggregate_bool_exp_bool_or - count: pokemon_v2_pokemonspecies_aggregate_bool_exp_count -} - -input pokemon_v2_pokemonspecies_aggregate_bool_exp_bool_and { - arguments: pokemon_v2_pokemonspecies_select_column_pokemon_v2_pokemonspecies_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: pokemon_v2_pokemonspecies_bool_exp - predicate: Boolean_comparison_exp! -} - -input pokemon_v2_pokemonspecies_aggregate_bool_exp_bool_or { - arguments: pokemon_v2_pokemonspecies_select_column_pokemon_v2_pokemonspecies_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: pokemon_v2_pokemonspecies_bool_exp - predicate: Boolean_comparison_exp! -} - -input pokemon_v2_pokemonspecies_aggregate_bool_exp_count { - arguments: [pokemon_v2_pokemonspecies_select_column!] - distinct: Boolean - filter: pokemon_v2_pokemonspecies_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_pokemonspecies" -""" -type pokemon_v2_pokemonspecies_aggregate_fields { - avg: pokemon_v2_pokemonspecies_avg_fields - count(columns: [pokemon_v2_pokemonspecies_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokemonspecies_max_fields - min: pokemon_v2_pokemonspecies_min_fields - stddev: pokemon_v2_pokemonspecies_stddev_fields - stddev_pop: pokemon_v2_pokemonspecies_stddev_pop_fields - stddev_samp: pokemon_v2_pokemonspecies_stddev_samp_fields - sum: pokemon_v2_pokemonspecies_sum_fields - var_pop: pokemon_v2_pokemonspecies_var_pop_fields - var_samp: pokemon_v2_pokemonspecies_var_samp_fields - variance: pokemon_v2_pokemonspecies_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_pokemonspecies" -""" -input pokemon_v2_pokemonspecies_aggregate_order_by { - avg: pokemon_v2_pokemonspecies_avg_order_by - count: order_by - max: pokemon_v2_pokemonspecies_max_order_by - min: pokemon_v2_pokemonspecies_min_order_by - stddev: pokemon_v2_pokemonspecies_stddev_order_by - stddev_pop: pokemon_v2_pokemonspecies_stddev_pop_order_by - stddev_samp: pokemon_v2_pokemonspecies_stddev_samp_order_by - sum: pokemon_v2_pokemonspecies_sum_order_by - var_pop: pokemon_v2_pokemonspecies_var_pop_order_by - var_samp: pokemon_v2_pokemonspecies_var_samp_order_by - variance: pokemon_v2_pokemonspecies_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_pokemonspecies_avg_fields { - base_happiness: Float - capture_rate: Float - evolution_chain_id: Float - evolves_from_species_id: Float - gender_rate: Float - generation_id: Float - growth_rate_id: Float - hatch_counter: Float - id: Float - order: Float - pokemon_color_id: Float - pokemon_habitat_id: Float - pokemon_shape_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_pokemonspecies" -""" -input pokemon_v2_pokemonspecies_avg_order_by { - base_happiness: order_by - capture_rate: order_by - evolution_chain_id: order_by - evolves_from_species_id: order_by - gender_rate: order_by - generation_id: order_by - growth_rate_id: order_by - hatch_counter: order_by - id: order_by - order: order_by - pokemon_color_id: order_by - pokemon_habitat_id: order_by - pokemon_shape_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokemonspecies". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokemonspecies_bool_exp { - _and: [pokemon_v2_pokemonspecies_bool_exp!] - _not: pokemon_v2_pokemonspecies_bool_exp - _or: [pokemon_v2_pokemonspecies_bool_exp!] - base_happiness: Int_comparison_exp - capture_rate: Int_comparison_exp - evolution_chain_id: Int_comparison_exp - evolves_from_species_id: Int_comparison_exp - forms_switchable: Boolean_comparison_exp - gender_rate: Int_comparison_exp - generation_id: Int_comparison_exp - growth_rate_id: Int_comparison_exp - has_gender_differences: Boolean_comparison_exp - hatch_counter: Int_comparison_exp - id: Int_comparison_exp - is_baby: Boolean_comparison_exp - is_legendary: Boolean_comparison_exp - is_mythical: Boolean_comparison_exp - name: String_comparison_exp - order: Int_comparison_exp - pokemonV2PokemonevolutionsByPartySpeciesId: pokemon_v2_pokemonevolution_bool_exp - pokemonV2PokemonevolutionsByPartySpeciesId_aggregate: pokemon_v2_pokemonevolution_aggregate_bool_exp - pokemonV2PokemonevolutionsByTradeSpeciesId: pokemon_v2_pokemonevolution_bool_exp - pokemonV2PokemonevolutionsByTradeSpeciesId_aggregate: pokemon_v2_pokemonevolution_aggregate_bool_exp - pokemon_color_id: Int_comparison_exp - pokemon_habitat_id: Int_comparison_exp - pokemon_shape_id: Int_comparison_exp - pokemon_v2_evolutionchain: pokemon_v2_evolutionchain_bool_exp - pokemon_v2_generation: pokemon_v2_generation_bool_exp - pokemon_v2_growthrate: pokemon_v2_growthrate_bool_exp - pokemon_v2_palparks: pokemon_v2_palpark_bool_exp - pokemon_v2_palparks_aggregate: pokemon_v2_palpark_aggregate_bool_exp - pokemon_v2_pokemoncolor: pokemon_v2_pokemoncolor_bool_exp - pokemon_v2_pokemondexnumbers: pokemon_v2_pokemondexnumber_bool_exp - pokemon_v2_pokemondexnumbers_aggregate: pokemon_v2_pokemondexnumber_aggregate_bool_exp - pokemon_v2_pokemonegggroups: pokemon_v2_pokemonegggroup_bool_exp - pokemon_v2_pokemonegggroups_aggregate: pokemon_v2_pokemonegggroup_aggregate_bool_exp - pokemon_v2_pokemonevolutions: pokemon_v2_pokemonevolution_bool_exp - pokemon_v2_pokemonevolutions_aggregate: pokemon_v2_pokemonevolution_aggregate_bool_exp - pokemon_v2_pokemonhabitat: pokemon_v2_pokemonhabitat_bool_exp - pokemon_v2_pokemons: pokemon_v2_pokemon_bool_exp - pokemon_v2_pokemons_aggregate: pokemon_v2_pokemon_aggregate_bool_exp - pokemon_v2_pokemonshape: pokemon_v2_pokemonshape_bool_exp - pokemon_v2_pokemonspecies: pokemon_v2_pokemonspecies_bool_exp - pokemon_v2_pokemonspecies_aggregate: pokemon_v2_pokemonspecies_aggregate_bool_exp - pokemon_v2_pokemonspeciesdescriptions: pokemon_v2_pokemonspeciesdescription_bool_exp - pokemon_v2_pokemonspeciesdescriptions_aggregate: pokemon_v2_pokemonspeciesdescription_aggregate_bool_exp - pokemon_v2_pokemonspeciesflavortexts: pokemon_v2_pokemonspeciesflavortext_bool_exp - pokemon_v2_pokemonspeciesflavortexts_aggregate: pokemon_v2_pokemonspeciesflavortext_aggregate_bool_exp - pokemon_v2_pokemonspeciesnames: pokemon_v2_pokemonspeciesname_bool_exp - pokemon_v2_pokemonspeciesnames_aggregate: pokemon_v2_pokemonspeciesname_aggregate_bool_exp - pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokemonspecies_max_fields { - base_happiness: Int - capture_rate: Int - evolution_chain_id: Int - evolves_from_species_id: Int - gender_rate: Int - generation_id: Int - growth_rate_id: Int - hatch_counter: Int - id: Int - name: String - order: Int - pokemon_color_id: Int - pokemon_habitat_id: Int - pokemon_shape_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_pokemonspecies" -""" -input pokemon_v2_pokemonspecies_max_order_by { - base_happiness: order_by - capture_rate: order_by - evolution_chain_id: order_by - evolves_from_species_id: order_by - gender_rate: order_by - generation_id: order_by - growth_rate_id: order_by - hatch_counter: order_by - id: order_by - name: order_by - order: order_by - pokemon_color_id: order_by - pokemon_habitat_id: order_by - pokemon_shape_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_pokemonspecies_min_fields { - base_happiness: Int - capture_rate: Int - evolution_chain_id: Int - evolves_from_species_id: Int - gender_rate: Int - generation_id: Int - growth_rate_id: Int - hatch_counter: Int - id: Int - name: String - order: Int - pokemon_color_id: Int - pokemon_habitat_id: Int - pokemon_shape_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_pokemonspecies" -""" -input pokemon_v2_pokemonspecies_min_order_by { - base_happiness: order_by - capture_rate: order_by - evolution_chain_id: order_by - evolves_from_species_id: order_by - gender_rate: order_by - generation_id: order_by - growth_rate_id: order_by - hatch_counter: order_by - id: order_by - name: order_by - order: order_by - pokemon_color_id: order_by - pokemon_habitat_id: order_by - pokemon_shape_id: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_pokemonspecies".""" -input pokemon_v2_pokemonspecies_order_by { - base_happiness: order_by - capture_rate: order_by - evolution_chain_id: order_by - evolves_from_species_id: order_by - forms_switchable: order_by - gender_rate: order_by - generation_id: order_by - growth_rate_id: order_by - has_gender_differences: order_by - hatch_counter: order_by - id: order_by - is_baby: order_by - is_legendary: order_by - is_mythical: order_by - name: order_by - order: order_by - pokemonV2PokemonevolutionsByPartySpeciesId_aggregate: pokemon_v2_pokemonevolution_aggregate_order_by - pokemonV2PokemonevolutionsByTradeSpeciesId_aggregate: pokemon_v2_pokemonevolution_aggregate_order_by - pokemon_color_id: order_by - pokemon_habitat_id: order_by - pokemon_shape_id: order_by - pokemon_v2_evolutionchain: pokemon_v2_evolutionchain_order_by - pokemon_v2_generation: pokemon_v2_generation_order_by - pokemon_v2_growthrate: pokemon_v2_growthrate_order_by - pokemon_v2_palparks_aggregate: pokemon_v2_palpark_aggregate_order_by - pokemon_v2_pokemoncolor: pokemon_v2_pokemoncolor_order_by - pokemon_v2_pokemondexnumbers_aggregate: pokemon_v2_pokemondexnumber_aggregate_order_by - pokemon_v2_pokemonegggroups_aggregate: pokemon_v2_pokemonegggroup_aggregate_order_by - pokemon_v2_pokemonevolutions_aggregate: pokemon_v2_pokemonevolution_aggregate_order_by - pokemon_v2_pokemonhabitat: pokemon_v2_pokemonhabitat_order_by - pokemon_v2_pokemons_aggregate: pokemon_v2_pokemon_aggregate_order_by - pokemon_v2_pokemonshape: pokemon_v2_pokemonshape_order_by - pokemon_v2_pokemonspecies_aggregate: pokemon_v2_pokemonspecies_aggregate_order_by - pokemon_v2_pokemonspeciesdescriptions_aggregate: pokemon_v2_pokemonspeciesdescription_aggregate_order_by - pokemon_v2_pokemonspeciesflavortexts_aggregate: pokemon_v2_pokemonspeciesflavortext_aggregate_order_by - pokemon_v2_pokemonspeciesnames_aggregate: pokemon_v2_pokemonspeciesname_aggregate_order_by - pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_order_by -} - -""" -select columns of table "pokemon_v2_pokemonspecies" -""" -enum pokemon_v2_pokemonspecies_select_column { - """column name""" - base_happiness - - """column name""" - capture_rate - - """column name""" - evolution_chain_id - - """column name""" - evolves_from_species_id - - """column name""" - forms_switchable - - """column name""" - gender_rate - - """column name""" - generation_id - - """column name""" - growth_rate_id - - """column name""" - has_gender_differences - - """column name""" - hatch_counter - - """column name""" - id - - """column name""" - is_baby - - """column name""" - is_legendary - - """column name""" - is_mythical - - """column name""" - name - - """column name""" - order - - """column name""" - pokemon_color_id - - """column name""" - pokemon_habitat_id - - """column name""" - pokemon_shape_id -} - -""" -select "pokemon_v2_pokemonspecies_aggregate_bool_exp_bool_and_arguments_columns" columns of table "pokemon_v2_pokemonspecies" -""" -enum pokemon_v2_pokemonspecies_select_column_pokemon_v2_pokemonspecies_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - forms_switchable - - """column name""" - has_gender_differences - - """column name""" - is_baby - - """column name""" - is_legendary - - """column name""" - is_mythical -} - -""" -select "pokemon_v2_pokemonspecies_aggregate_bool_exp_bool_or_arguments_columns" columns of table "pokemon_v2_pokemonspecies" -""" -enum pokemon_v2_pokemonspecies_select_column_pokemon_v2_pokemonspecies_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - forms_switchable - - """column name""" - has_gender_differences - - """column name""" - is_baby - - """column name""" - is_legendary - - """column name""" - is_mythical -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokemonspecies_stddev_fields { - base_happiness: Float - capture_rate: Float - evolution_chain_id: Float - evolves_from_species_id: Float - gender_rate: Float - generation_id: Float - growth_rate_id: Float - hatch_counter: Float - id: Float - order: Float - pokemon_color_id: Float - pokemon_habitat_id: Float - pokemon_shape_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_pokemonspecies" -""" -input pokemon_v2_pokemonspecies_stddev_order_by { - base_happiness: order_by - capture_rate: order_by - evolution_chain_id: order_by - evolves_from_species_id: order_by - gender_rate: order_by - generation_id: order_by - growth_rate_id: order_by - hatch_counter: order_by - id: order_by - order: order_by - pokemon_color_id: order_by - pokemon_habitat_id: order_by - pokemon_shape_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokemonspecies_stddev_pop_fields { - base_happiness: Float - capture_rate: Float - evolution_chain_id: Float - evolves_from_species_id: Float - gender_rate: Float - generation_id: Float - growth_rate_id: Float - hatch_counter: Float - id: Float - order: Float - pokemon_color_id: Float - pokemon_habitat_id: Float - pokemon_shape_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_pokemonspecies" -""" -input pokemon_v2_pokemonspecies_stddev_pop_order_by { - base_happiness: order_by - capture_rate: order_by - evolution_chain_id: order_by - evolves_from_species_id: order_by - gender_rate: order_by - generation_id: order_by - growth_rate_id: order_by - hatch_counter: order_by - id: order_by - order: order_by - pokemon_color_id: order_by - pokemon_habitat_id: order_by - pokemon_shape_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokemonspecies_stddev_samp_fields { - base_happiness: Float - capture_rate: Float - evolution_chain_id: Float - evolves_from_species_id: Float - gender_rate: Float - generation_id: Float - growth_rate_id: Float - hatch_counter: Float - id: Float - order: Float - pokemon_color_id: Float - pokemon_habitat_id: Float - pokemon_shape_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_pokemonspecies" -""" -input pokemon_v2_pokemonspecies_stddev_samp_order_by { - base_happiness: order_by - capture_rate: order_by - evolution_chain_id: order_by - evolves_from_species_id: order_by - gender_rate: order_by - generation_id: order_by - growth_rate_id: order_by - hatch_counter: order_by - id: order_by - order: order_by - pokemon_color_id: order_by - pokemon_habitat_id: order_by - pokemon_shape_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_pokemonspecies" -""" -input pokemon_v2_pokemonspecies_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokemonspecies_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokemonspecies_stream_cursor_value_input { - base_happiness: Int - capture_rate: Int - evolution_chain_id: Int - evolves_from_species_id: Int - forms_switchable: Boolean - gender_rate: Int - generation_id: Int - growth_rate_id: Int - has_gender_differences: Boolean - hatch_counter: Int - id: Int - is_baby: Boolean - is_legendary: Boolean - is_mythical: Boolean - name: String - order: Int - pokemon_color_id: Int - pokemon_habitat_id: Int - pokemon_shape_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_pokemonspecies_sum_fields { - base_happiness: Int - capture_rate: Int - evolution_chain_id: Int - evolves_from_species_id: Int - gender_rate: Int - generation_id: Int - growth_rate_id: Int - hatch_counter: Int - id: Int - order: Int - pokemon_color_id: Int - pokemon_habitat_id: Int - pokemon_shape_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_pokemonspecies" -""" -input pokemon_v2_pokemonspecies_sum_order_by { - base_happiness: order_by - capture_rate: order_by - evolution_chain_id: order_by - evolves_from_species_id: order_by - gender_rate: order_by - generation_id: order_by - growth_rate_id: order_by - hatch_counter: order_by - id: order_by - order: order_by - pokemon_color_id: order_by - pokemon_habitat_id: order_by - pokemon_shape_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokemonspecies_var_pop_fields { - base_happiness: Float - capture_rate: Float - evolution_chain_id: Float - evolves_from_species_id: Float - gender_rate: Float - generation_id: Float - growth_rate_id: Float - hatch_counter: Float - id: Float - order: Float - pokemon_color_id: Float - pokemon_habitat_id: Float - pokemon_shape_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_pokemonspecies" -""" -input pokemon_v2_pokemonspecies_var_pop_order_by { - base_happiness: order_by - capture_rate: order_by - evolution_chain_id: order_by - evolves_from_species_id: order_by - gender_rate: order_by - generation_id: order_by - growth_rate_id: order_by - hatch_counter: order_by - id: order_by - order: order_by - pokemon_color_id: order_by - pokemon_habitat_id: order_by - pokemon_shape_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokemonspecies_var_samp_fields { - base_happiness: Float - capture_rate: Float - evolution_chain_id: Float - evolves_from_species_id: Float - gender_rate: Float - generation_id: Float - growth_rate_id: Float - hatch_counter: Float - id: Float - order: Float - pokemon_color_id: Float - pokemon_habitat_id: Float - pokemon_shape_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_pokemonspecies" -""" -input pokemon_v2_pokemonspecies_var_samp_order_by { - base_happiness: order_by - capture_rate: order_by - evolution_chain_id: order_by - evolves_from_species_id: order_by - gender_rate: order_by - generation_id: order_by - growth_rate_id: order_by - hatch_counter: order_by - id: order_by - order: order_by - pokemon_color_id: order_by - pokemon_habitat_id: order_by - pokemon_shape_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_pokemonspecies_variance_fields { - base_happiness: Float - capture_rate: Float - evolution_chain_id: Float - evolves_from_species_id: Float - gender_rate: Float - generation_id: Float - growth_rate_id: Float - hatch_counter: Float - id: Float - order: Float - pokemon_color_id: Float - pokemon_habitat_id: Float - pokemon_shape_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_pokemonspecies" -""" -input pokemon_v2_pokemonspecies_variance_order_by { - base_happiness: order_by - capture_rate: order_by - evolution_chain_id: order_by - evolves_from_species_id: order_by - gender_rate: order_by - generation_id: order_by - growth_rate_id: order_by - hatch_counter: order_by - id: order_by - order: order_by - pokemon_color_id: order_by - pokemon_habitat_id: order_by - pokemon_shape_id: order_by -} - -""" -columns and relationships of "pokemon_v2_pokemonspeciesdescription" -""" -type pokemon_v2_pokemonspeciesdescription { - description: String! - id: Int! - language_id: Int - pokemon_species_id: Int - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies -} - -""" -aggregated selection of "pokemon_v2_pokemonspeciesdescription" -""" -type pokemon_v2_pokemonspeciesdescription_aggregate { - aggregate: pokemon_v2_pokemonspeciesdescription_aggregate_fields - nodes: [pokemon_v2_pokemonspeciesdescription!]! -} - -input pokemon_v2_pokemonspeciesdescription_aggregate_bool_exp { - count: pokemon_v2_pokemonspeciesdescription_aggregate_bool_exp_count -} - -input pokemon_v2_pokemonspeciesdescription_aggregate_bool_exp_count { - arguments: [pokemon_v2_pokemonspeciesdescription_select_column!] - distinct: Boolean - filter: pokemon_v2_pokemonspeciesdescription_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_pokemonspeciesdescription" -""" -type pokemon_v2_pokemonspeciesdescription_aggregate_fields { - avg: pokemon_v2_pokemonspeciesdescription_avg_fields - count(columns: [pokemon_v2_pokemonspeciesdescription_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokemonspeciesdescription_max_fields - min: pokemon_v2_pokemonspeciesdescription_min_fields - stddev: pokemon_v2_pokemonspeciesdescription_stddev_fields - stddev_pop: pokemon_v2_pokemonspeciesdescription_stddev_pop_fields - stddev_samp: pokemon_v2_pokemonspeciesdescription_stddev_samp_fields - sum: pokemon_v2_pokemonspeciesdescription_sum_fields - var_pop: pokemon_v2_pokemonspeciesdescription_var_pop_fields - var_samp: pokemon_v2_pokemonspeciesdescription_var_samp_fields - variance: pokemon_v2_pokemonspeciesdescription_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_pokemonspeciesdescription" -""" -input pokemon_v2_pokemonspeciesdescription_aggregate_order_by { - avg: pokemon_v2_pokemonspeciesdescription_avg_order_by - count: order_by - max: pokemon_v2_pokemonspeciesdescription_max_order_by - min: pokemon_v2_pokemonspeciesdescription_min_order_by - stddev: pokemon_v2_pokemonspeciesdescription_stddev_order_by - stddev_pop: pokemon_v2_pokemonspeciesdescription_stddev_pop_order_by - stddev_samp: pokemon_v2_pokemonspeciesdescription_stddev_samp_order_by - sum: pokemon_v2_pokemonspeciesdescription_sum_order_by - var_pop: pokemon_v2_pokemonspeciesdescription_var_pop_order_by - var_samp: pokemon_v2_pokemonspeciesdescription_var_samp_order_by - variance: pokemon_v2_pokemonspeciesdescription_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_pokemonspeciesdescription_avg_fields { - id: Float - language_id: Float - pokemon_species_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_pokemonspeciesdescription" -""" -input pokemon_v2_pokemonspeciesdescription_avg_order_by { - id: order_by - language_id: order_by - pokemon_species_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokemonspeciesdescription". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokemonspeciesdescription_bool_exp { - _and: [pokemon_v2_pokemonspeciesdescription_bool_exp!] - _not: pokemon_v2_pokemonspeciesdescription_bool_exp - _or: [pokemon_v2_pokemonspeciesdescription_bool_exp!] - description: String_comparison_exp - id: Int_comparison_exp - language_id: Int_comparison_exp - pokemon_species_id: Int_comparison_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokemonspeciesdescription_max_fields { - description: String - id: Int - language_id: Int - pokemon_species_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_pokemonspeciesdescription" -""" -input pokemon_v2_pokemonspeciesdescription_max_order_by { - description: order_by - id: order_by - language_id: order_by - pokemon_species_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_pokemonspeciesdescription_min_fields { - description: String - id: Int - language_id: Int - pokemon_species_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_pokemonspeciesdescription" -""" -input pokemon_v2_pokemonspeciesdescription_min_order_by { - description: order_by - id: order_by - language_id: order_by - pokemon_species_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_pokemonspeciesdescription". -""" -input pokemon_v2_pokemonspeciesdescription_order_by { - description: order_by - id: order_by - language_id: order_by - pokemon_species_id: order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_order_by -} - -""" -select columns of table "pokemon_v2_pokemonspeciesdescription" -""" -enum pokemon_v2_pokemonspeciesdescription_select_column { - """column name""" - description - - """column name""" - id - - """column name""" - language_id - - """column name""" - pokemon_species_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokemonspeciesdescription_stddev_fields { - id: Float - language_id: Float - pokemon_species_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_pokemonspeciesdescription" -""" -input pokemon_v2_pokemonspeciesdescription_stddev_order_by { - id: order_by - language_id: order_by - pokemon_species_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokemonspeciesdescription_stddev_pop_fields { - id: Float - language_id: Float - pokemon_species_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_pokemonspeciesdescription" -""" -input pokemon_v2_pokemonspeciesdescription_stddev_pop_order_by { - id: order_by - language_id: order_by - pokemon_species_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokemonspeciesdescription_stddev_samp_fields { - id: Float - language_id: Float - pokemon_species_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_pokemonspeciesdescription" -""" -input pokemon_v2_pokemonspeciesdescription_stddev_samp_order_by { - id: order_by - language_id: order_by - pokemon_species_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_pokemonspeciesdescription" -""" -input pokemon_v2_pokemonspeciesdescription_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokemonspeciesdescription_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokemonspeciesdescription_stream_cursor_value_input { - description: String - id: Int - language_id: Int - pokemon_species_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_pokemonspeciesdescription_sum_fields { - id: Int - language_id: Int - pokemon_species_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_pokemonspeciesdescription" -""" -input pokemon_v2_pokemonspeciesdescription_sum_order_by { - id: order_by - language_id: order_by - pokemon_species_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokemonspeciesdescription_var_pop_fields { - id: Float - language_id: Float - pokemon_species_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_pokemonspeciesdescription" -""" -input pokemon_v2_pokemonspeciesdescription_var_pop_order_by { - id: order_by - language_id: order_by - pokemon_species_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokemonspeciesdescription_var_samp_fields { - id: Float - language_id: Float - pokemon_species_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_pokemonspeciesdescription" -""" -input pokemon_v2_pokemonspeciesdescription_var_samp_order_by { - id: order_by - language_id: order_by - pokemon_species_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_pokemonspeciesdescription_variance_fields { - id: Float - language_id: Float - pokemon_species_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_pokemonspeciesdescription" -""" -input pokemon_v2_pokemonspeciesdescription_variance_order_by { - id: order_by - language_id: order_by - pokemon_species_id: order_by -} - -""" -columns and relationships of "pokemon_v2_pokemonspeciesflavortext" -""" -type pokemon_v2_pokemonspeciesflavortext { - flavor_text: String! - id: Int! - language_id: Int - pokemon_species_id: Int - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies - - """An object relationship""" - pokemon_v2_version: pokemon_v2_version - version_id: Int -} - -""" -aggregated selection of "pokemon_v2_pokemonspeciesflavortext" -""" -type pokemon_v2_pokemonspeciesflavortext_aggregate { - aggregate: pokemon_v2_pokemonspeciesflavortext_aggregate_fields - nodes: [pokemon_v2_pokemonspeciesflavortext!]! -} - -input pokemon_v2_pokemonspeciesflavortext_aggregate_bool_exp { - count: pokemon_v2_pokemonspeciesflavortext_aggregate_bool_exp_count -} - -input pokemon_v2_pokemonspeciesflavortext_aggregate_bool_exp_count { - arguments: [pokemon_v2_pokemonspeciesflavortext_select_column!] - distinct: Boolean - filter: pokemon_v2_pokemonspeciesflavortext_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_pokemonspeciesflavortext" -""" -type pokemon_v2_pokemonspeciesflavortext_aggregate_fields { - avg: pokemon_v2_pokemonspeciesflavortext_avg_fields - count(columns: [pokemon_v2_pokemonspeciesflavortext_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokemonspeciesflavortext_max_fields - min: pokemon_v2_pokemonspeciesflavortext_min_fields - stddev: pokemon_v2_pokemonspeciesflavortext_stddev_fields - stddev_pop: pokemon_v2_pokemonspeciesflavortext_stddev_pop_fields - stddev_samp: pokemon_v2_pokemonspeciesflavortext_stddev_samp_fields - sum: pokemon_v2_pokemonspeciesflavortext_sum_fields - var_pop: pokemon_v2_pokemonspeciesflavortext_var_pop_fields - var_samp: pokemon_v2_pokemonspeciesflavortext_var_samp_fields - variance: pokemon_v2_pokemonspeciesflavortext_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_pokemonspeciesflavortext" -""" -input pokemon_v2_pokemonspeciesflavortext_aggregate_order_by { - avg: pokemon_v2_pokemonspeciesflavortext_avg_order_by - count: order_by - max: pokemon_v2_pokemonspeciesflavortext_max_order_by - min: pokemon_v2_pokemonspeciesflavortext_min_order_by - stddev: pokemon_v2_pokemonspeciesflavortext_stddev_order_by - stddev_pop: pokemon_v2_pokemonspeciesflavortext_stddev_pop_order_by - stddev_samp: pokemon_v2_pokemonspeciesflavortext_stddev_samp_order_by - sum: pokemon_v2_pokemonspeciesflavortext_sum_order_by - var_pop: pokemon_v2_pokemonspeciesflavortext_var_pop_order_by - var_samp: pokemon_v2_pokemonspeciesflavortext_var_samp_order_by - variance: pokemon_v2_pokemonspeciesflavortext_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_pokemonspeciesflavortext_avg_fields { - id: Float - language_id: Float - pokemon_species_id: Float - version_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_pokemonspeciesflavortext" -""" -input pokemon_v2_pokemonspeciesflavortext_avg_order_by { - id: order_by - language_id: order_by - pokemon_species_id: order_by - version_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokemonspeciesflavortext". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokemonspeciesflavortext_bool_exp { - _and: [pokemon_v2_pokemonspeciesflavortext_bool_exp!] - _not: pokemon_v2_pokemonspeciesflavortext_bool_exp - _or: [pokemon_v2_pokemonspeciesflavortext_bool_exp!] - flavor_text: String_comparison_exp - id: Int_comparison_exp - language_id: Int_comparison_exp - pokemon_species_id: Int_comparison_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_bool_exp - pokemon_v2_version: pokemon_v2_version_bool_exp - version_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokemonspeciesflavortext_max_fields { - flavor_text: String - id: Int - language_id: Int - pokemon_species_id: Int - version_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_pokemonspeciesflavortext" -""" -input pokemon_v2_pokemonspeciesflavortext_max_order_by { - flavor_text: order_by - id: order_by - language_id: order_by - pokemon_species_id: order_by - version_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_pokemonspeciesflavortext_min_fields { - flavor_text: String - id: Int - language_id: Int - pokemon_species_id: Int - version_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_pokemonspeciesflavortext" -""" -input pokemon_v2_pokemonspeciesflavortext_min_order_by { - flavor_text: order_by - id: order_by - language_id: order_by - pokemon_species_id: order_by - version_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_pokemonspeciesflavortext". -""" -input pokemon_v2_pokemonspeciesflavortext_order_by { - flavor_text: order_by - id: order_by - language_id: order_by - pokemon_species_id: order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_order_by - pokemon_v2_version: pokemon_v2_version_order_by - version_id: order_by -} - -""" -select columns of table "pokemon_v2_pokemonspeciesflavortext" -""" -enum pokemon_v2_pokemonspeciesflavortext_select_column { - """column name""" - flavor_text - - """column name""" - id - - """column name""" - language_id - - """column name""" - pokemon_species_id - - """column name""" - version_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokemonspeciesflavortext_stddev_fields { - id: Float - language_id: Float - pokemon_species_id: Float - version_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_pokemonspeciesflavortext" -""" -input pokemon_v2_pokemonspeciesflavortext_stddev_order_by { - id: order_by - language_id: order_by - pokemon_species_id: order_by - version_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokemonspeciesflavortext_stddev_pop_fields { - id: Float - language_id: Float - pokemon_species_id: Float - version_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_pokemonspeciesflavortext" -""" -input pokemon_v2_pokemonspeciesflavortext_stddev_pop_order_by { - id: order_by - language_id: order_by - pokemon_species_id: order_by - version_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokemonspeciesflavortext_stddev_samp_fields { - id: Float - language_id: Float - pokemon_species_id: Float - version_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_pokemonspeciesflavortext" -""" -input pokemon_v2_pokemonspeciesflavortext_stddev_samp_order_by { - id: order_by - language_id: order_by - pokemon_species_id: order_by - version_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_pokemonspeciesflavortext" -""" -input pokemon_v2_pokemonspeciesflavortext_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokemonspeciesflavortext_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokemonspeciesflavortext_stream_cursor_value_input { - flavor_text: String - id: Int - language_id: Int - pokemon_species_id: Int - version_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_pokemonspeciesflavortext_sum_fields { - id: Int - language_id: Int - pokemon_species_id: Int - version_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_pokemonspeciesflavortext" -""" -input pokemon_v2_pokemonspeciesflavortext_sum_order_by { - id: order_by - language_id: order_by - pokemon_species_id: order_by - version_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokemonspeciesflavortext_var_pop_fields { - id: Float - language_id: Float - pokemon_species_id: Float - version_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_pokemonspeciesflavortext" -""" -input pokemon_v2_pokemonspeciesflavortext_var_pop_order_by { - id: order_by - language_id: order_by - pokemon_species_id: order_by - version_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokemonspeciesflavortext_var_samp_fields { - id: Float - language_id: Float - pokemon_species_id: Float - version_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_pokemonspeciesflavortext" -""" -input pokemon_v2_pokemonspeciesflavortext_var_samp_order_by { - id: order_by - language_id: order_by - pokemon_species_id: order_by - version_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_pokemonspeciesflavortext_variance_fields { - id: Float - language_id: Float - pokemon_species_id: Float - version_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_pokemonspeciesflavortext" -""" -input pokemon_v2_pokemonspeciesflavortext_variance_order_by { - id: order_by - language_id: order_by - pokemon_species_id: order_by - version_id: order_by -} - -""" -columns and relationships of "pokemon_v2_pokemonspeciesname" -""" -type pokemon_v2_pokemonspeciesname { - genus: String! - id: Int! - language_id: Int - name: String! - pokemon_species_id: Int - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies -} - -""" -aggregated selection of "pokemon_v2_pokemonspeciesname" -""" -type pokemon_v2_pokemonspeciesname_aggregate { - aggregate: pokemon_v2_pokemonspeciesname_aggregate_fields - nodes: [pokemon_v2_pokemonspeciesname!]! -} - -input pokemon_v2_pokemonspeciesname_aggregate_bool_exp { - count: pokemon_v2_pokemonspeciesname_aggregate_bool_exp_count -} - -input pokemon_v2_pokemonspeciesname_aggregate_bool_exp_count { - arguments: [pokemon_v2_pokemonspeciesname_select_column!] - distinct: Boolean - filter: pokemon_v2_pokemonspeciesname_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_pokemonspeciesname" -""" -type pokemon_v2_pokemonspeciesname_aggregate_fields { - avg: pokemon_v2_pokemonspeciesname_avg_fields - count(columns: [pokemon_v2_pokemonspeciesname_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokemonspeciesname_max_fields - min: pokemon_v2_pokemonspeciesname_min_fields - stddev: pokemon_v2_pokemonspeciesname_stddev_fields - stddev_pop: pokemon_v2_pokemonspeciesname_stddev_pop_fields - stddev_samp: pokemon_v2_pokemonspeciesname_stddev_samp_fields - sum: pokemon_v2_pokemonspeciesname_sum_fields - var_pop: pokemon_v2_pokemonspeciesname_var_pop_fields - var_samp: pokemon_v2_pokemonspeciesname_var_samp_fields - variance: pokemon_v2_pokemonspeciesname_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_pokemonspeciesname" -""" -input pokemon_v2_pokemonspeciesname_aggregate_order_by { - avg: pokemon_v2_pokemonspeciesname_avg_order_by - count: order_by - max: pokemon_v2_pokemonspeciesname_max_order_by - min: pokemon_v2_pokemonspeciesname_min_order_by - stddev: pokemon_v2_pokemonspeciesname_stddev_order_by - stddev_pop: pokemon_v2_pokemonspeciesname_stddev_pop_order_by - stddev_samp: pokemon_v2_pokemonspeciesname_stddev_samp_order_by - sum: pokemon_v2_pokemonspeciesname_sum_order_by - var_pop: pokemon_v2_pokemonspeciesname_var_pop_order_by - var_samp: pokemon_v2_pokemonspeciesname_var_samp_order_by - variance: pokemon_v2_pokemonspeciesname_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_pokemonspeciesname_avg_fields { - id: Float - language_id: Float - pokemon_species_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_pokemonspeciesname" -""" -input pokemon_v2_pokemonspeciesname_avg_order_by { - id: order_by - language_id: order_by - pokemon_species_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokemonspeciesname". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokemonspeciesname_bool_exp { - _and: [pokemon_v2_pokemonspeciesname_bool_exp!] - _not: pokemon_v2_pokemonspeciesname_bool_exp - _or: [pokemon_v2_pokemonspeciesname_bool_exp!] - genus: String_comparison_exp - id: Int_comparison_exp - language_id: Int_comparison_exp - name: String_comparison_exp - pokemon_species_id: Int_comparison_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokemonspeciesname_max_fields { - genus: String - id: Int - language_id: Int - name: String - pokemon_species_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_pokemonspeciesname" -""" -input pokemon_v2_pokemonspeciesname_max_order_by { - genus: order_by - id: order_by - language_id: order_by - name: order_by - pokemon_species_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_pokemonspeciesname_min_fields { - genus: String - id: Int - language_id: Int - name: String - pokemon_species_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_pokemonspeciesname" -""" -input pokemon_v2_pokemonspeciesname_min_order_by { - genus: order_by - id: order_by - language_id: order_by - name: order_by - pokemon_species_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_pokemonspeciesname". -""" -input pokemon_v2_pokemonspeciesname_order_by { - genus: order_by - id: order_by - language_id: order_by - name: order_by - pokemon_species_id: order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_pokemonspecy: pokemon_v2_pokemonspecies_order_by -} - -""" -select columns of table "pokemon_v2_pokemonspeciesname" -""" -enum pokemon_v2_pokemonspeciesname_select_column { - """column name""" - genus - - """column name""" - id - - """column name""" - language_id - - """column name""" - name - - """column name""" - pokemon_species_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokemonspeciesname_stddev_fields { - id: Float - language_id: Float - pokemon_species_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_pokemonspeciesname" -""" -input pokemon_v2_pokemonspeciesname_stddev_order_by { - id: order_by - language_id: order_by - pokemon_species_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokemonspeciesname_stddev_pop_fields { - id: Float - language_id: Float - pokemon_species_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_pokemonspeciesname" -""" -input pokemon_v2_pokemonspeciesname_stddev_pop_order_by { - id: order_by - language_id: order_by - pokemon_species_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokemonspeciesname_stddev_samp_fields { - id: Float - language_id: Float - pokemon_species_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_pokemonspeciesname" -""" -input pokemon_v2_pokemonspeciesname_stddev_samp_order_by { - id: order_by - language_id: order_by - pokemon_species_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_pokemonspeciesname" -""" -input pokemon_v2_pokemonspeciesname_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokemonspeciesname_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokemonspeciesname_stream_cursor_value_input { - genus: String - id: Int - language_id: Int - name: String - pokemon_species_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_pokemonspeciesname_sum_fields { - id: Int - language_id: Int - pokemon_species_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_pokemonspeciesname" -""" -input pokemon_v2_pokemonspeciesname_sum_order_by { - id: order_by - language_id: order_by - pokemon_species_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokemonspeciesname_var_pop_fields { - id: Float - language_id: Float - pokemon_species_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_pokemonspeciesname" -""" -input pokemon_v2_pokemonspeciesname_var_pop_order_by { - id: order_by - language_id: order_by - pokemon_species_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokemonspeciesname_var_samp_fields { - id: Float - language_id: Float - pokemon_species_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_pokemonspeciesname" -""" -input pokemon_v2_pokemonspeciesname_var_samp_order_by { - id: order_by - language_id: order_by - pokemon_species_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_pokemonspeciesname_variance_fields { - id: Float - language_id: Float - pokemon_species_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_pokemonspeciesname" -""" -input pokemon_v2_pokemonspeciesname_variance_order_by { - id: order_by - language_id: order_by - pokemon_species_id: order_by -} - -""" -columns and relationships of "pokemon_v2_pokemonsprites" -""" -type pokemon_v2_pokemonsprites { - id: Int! - pokemon_id: Int - - """An object relationship""" - pokemon_v2_pokemon: pokemon_v2_pokemon - sprites( - """JSON select path""" - path: String - ): jsonb! -} - -""" -aggregated selection of "pokemon_v2_pokemonsprites" -""" -type pokemon_v2_pokemonsprites_aggregate { - aggregate: pokemon_v2_pokemonsprites_aggregate_fields - nodes: [pokemon_v2_pokemonsprites!]! -} - -input pokemon_v2_pokemonsprites_aggregate_bool_exp { - count: pokemon_v2_pokemonsprites_aggregate_bool_exp_count -} - -input pokemon_v2_pokemonsprites_aggregate_bool_exp_count { - arguments: [pokemon_v2_pokemonsprites_select_column!] - distinct: Boolean - filter: pokemon_v2_pokemonsprites_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_pokemonsprites" -""" -type pokemon_v2_pokemonsprites_aggregate_fields { - avg: pokemon_v2_pokemonsprites_avg_fields - count(columns: [pokemon_v2_pokemonsprites_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokemonsprites_max_fields - min: pokemon_v2_pokemonsprites_min_fields - stddev: pokemon_v2_pokemonsprites_stddev_fields - stddev_pop: pokemon_v2_pokemonsprites_stddev_pop_fields - stddev_samp: pokemon_v2_pokemonsprites_stddev_samp_fields - sum: pokemon_v2_pokemonsprites_sum_fields - var_pop: pokemon_v2_pokemonsprites_var_pop_fields - var_samp: pokemon_v2_pokemonsprites_var_samp_fields - variance: pokemon_v2_pokemonsprites_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_pokemonsprites" -""" -input pokemon_v2_pokemonsprites_aggregate_order_by { - avg: pokemon_v2_pokemonsprites_avg_order_by - count: order_by - max: pokemon_v2_pokemonsprites_max_order_by - min: pokemon_v2_pokemonsprites_min_order_by - stddev: pokemon_v2_pokemonsprites_stddev_order_by - stddev_pop: pokemon_v2_pokemonsprites_stddev_pop_order_by - stddev_samp: pokemon_v2_pokemonsprites_stddev_samp_order_by - sum: pokemon_v2_pokemonsprites_sum_order_by - var_pop: pokemon_v2_pokemonsprites_var_pop_order_by - var_samp: pokemon_v2_pokemonsprites_var_samp_order_by - variance: pokemon_v2_pokemonsprites_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_pokemonsprites_avg_fields { - id: Float - pokemon_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_pokemonsprites" -""" -input pokemon_v2_pokemonsprites_avg_order_by { - id: order_by - pokemon_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokemonsprites". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokemonsprites_bool_exp { - _and: [pokemon_v2_pokemonsprites_bool_exp!] - _not: pokemon_v2_pokemonsprites_bool_exp - _or: [pokemon_v2_pokemonsprites_bool_exp!] - id: Int_comparison_exp - pokemon_id: Int_comparison_exp - pokemon_v2_pokemon: pokemon_v2_pokemon_bool_exp - sprites: jsonb_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokemonsprites_max_fields { - id: Int - pokemon_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_pokemonsprites" -""" -input pokemon_v2_pokemonsprites_max_order_by { - id: order_by - pokemon_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_pokemonsprites_min_fields { - id: Int - pokemon_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_pokemonsprites" -""" -input pokemon_v2_pokemonsprites_min_order_by { - id: order_by - pokemon_id: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_pokemonsprites".""" -input pokemon_v2_pokemonsprites_order_by { - id: order_by - pokemon_id: order_by - pokemon_v2_pokemon: pokemon_v2_pokemon_order_by - sprites: order_by -} - -""" -select columns of table "pokemon_v2_pokemonsprites" -""" -enum pokemon_v2_pokemonsprites_select_column { - """column name""" - id - - """column name""" - pokemon_id - - """column name""" - sprites -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokemonsprites_stddev_fields { - id: Float - pokemon_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_pokemonsprites" -""" -input pokemon_v2_pokemonsprites_stddev_order_by { - id: order_by - pokemon_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokemonsprites_stddev_pop_fields { - id: Float - pokemon_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_pokemonsprites" -""" -input pokemon_v2_pokemonsprites_stddev_pop_order_by { - id: order_by - pokemon_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokemonsprites_stddev_samp_fields { - id: Float - pokemon_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_pokemonsprites" -""" -input pokemon_v2_pokemonsprites_stddev_samp_order_by { - id: order_by - pokemon_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_pokemonsprites" -""" -input pokemon_v2_pokemonsprites_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokemonsprites_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokemonsprites_stream_cursor_value_input { - id: Int - pokemon_id: Int - sprites: jsonb -} - -"""aggregate sum on columns""" -type pokemon_v2_pokemonsprites_sum_fields { - id: Int - pokemon_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_pokemonsprites" -""" -input pokemon_v2_pokemonsprites_sum_order_by { - id: order_by - pokemon_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokemonsprites_var_pop_fields { - id: Float - pokemon_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_pokemonsprites" -""" -input pokemon_v2_pokemonsprites_var_pop_order_by { - id: order_by - pokemon_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokemonsprites_var_samp_fields { - id: Float - pokemon_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_pokemonsprites" -""" -input pokemon_v2_pokemonsprites_var_samp_order_by { - id: order_by - pokemon_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_pokemonsprites_variance_fields { - id: Float - pokemon_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_pokemonsprites" -""" -input pokemon_v2_pokemonsprites_variance_order_by { - id: order_by - pokemon_id: order_by -} - -""" -columns and relationships of "pokemon_v2_pokemonstat" -""" -type pokemon_v2_pokemonstat { - base_stat: Int! - effort: Int! - id: Int! - pokemon_id: Int - - """An object relationship""" - pokemon_v2_pokemon: pokemon_v2_pokemon - - """An object relationship""" - pokemon_v2_stat: pokemon_v2_stat - stat_id: Int -} - -""" -aggregated selection of "pokemon_v2_pokemonstat" -""" -type pokemon_v2_pokemonstat_aggregate { - aggregate: pokemon_v2_pokemonstat_aggregate_fields - nodes: [pokemon_v2_pokemonstat!]! -} - -input pokemon_v2_pokemonstat_aggregate_bool_exp { - count: pokemon_v2_pokemonstat_aggregate_bool_exp_count -} - -input pokemon_v2_pokemonstat_aggregate_bool_exp_count { - arguments: [pokemon_v2_pokemonstat_select_column!] - distinct: Boolean - filter: pokemon_v2_pokemonstat_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_pokemonstat" -""" -type pokemon_v2_pokemonstat_aggregate_fields { - avg: pokemon_v2_pokemonstat_avg_fields - count(columns: [pokemon_v2_pokemonstat_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokemonstat_max_fields - min: pokemon_v2_pokemonstat_min_fields - stddev: pokemon_v2_pokemonstat_stddev_fields - stddev_pop: pokemon_v2_pokemonstat_stddev_pop_fields - stddev_samp: pokemon_v2_pokemonstat_stddev_samp_fields - sum: pokemon_v2_pokemonstat_sum_fields - var_pop: pokemon_v2_pokemonstat_var_pop_fields - var_samp: pokemon_v2_pokemonstat_var_samp_fields - variance: pokemon_v2_pokemonstat_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_pokemonstat" -""" -input pokemon_v2_pokemonstat_aggregate_order_by { - avg: pokemon_v2_pokemonstat_avg_order_by - count: order_by - max: pokemon_v2_pokemonstat_max_order_by - min: pokemon_v2_pokemonstat_min_order_by - stddev: pokemon_v2_pokemonstat_stddev_order_by - stddev_pop: pokemon_v2_pokemonstat_stddev_pop_order_by - stddev_samp: pokemon_v2_pokemonstat_stddev_samp_order_by - sum: pokemon_v2_pokemonstat_sum_order_by - var_pop: pokemon_v2_pokemonstat_var_pop_order_by - var_samp: pokemon_v2_pokemonstat_var_samp_order_by - variance: pokemon_v2_pokemonstat_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_pokemonstat_avg_fields { - base_stat: Float - effort: Float - id: Float - pokemon_id: Float - stat_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_pokemonstat" -""" -input pokemon_v2_pokemonstat_avg_order_by { - base_stat: order_by - effort: order_by - id: order_by - pokemon_id: order_by - stat_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokemonstat". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokemonstat_bool_exp { - _and: [pokemon_v2_pokemonstat_bool_exp!] - _not: pokemon_v2_pokemonstat_bool_exp - _or: [pokemon_v2_pokemonstat_bool_exp!] - base_stat: Int_comparison_exp - effort: Int_comparison_exp - id: Int_comparison_exp - pokemon_id: Int_comparison_exp - pokemon_v2_pokemon: pokemon_v2_pokemon_bool_exp - pokemon_v2_stat: pokemon_v2_stat_bool_exp - stat_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokemonstat_max_fields { - base_stat: Int - effort: Int - id: Int - pokemon_id: Int - stat_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_pokemonstat" -""" -input pokemon_v2_pokemonstat_max_order_by { - base_stat: order_by - effort: order_by - id: order_by - pokemon_id: order_by - stat_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_pokemonstat_min_fields { - base_stat: Int - effort: Int - id: Int - pokemon_id: Int - stat_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_pokemonstat" -""" -input pokemon_v2_pokemonstat_min_order_by { - base_stat: order_by - effort: order_by - id: order_by - pokemon_id: order_by - stat_id: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_pokemonstat".""" -input pokemon_v2_pokemonstat_order_by { - base_stat: order_by - effort: order_by - id: order_by - pokemon_id: order_by - pokemon_v2_pokemon: pokemon_v2_pokemon_order_by - pokemon_v2_stat: pokemon_v2_stat_order_by - stat_id: order_by -} - -""" -select columns of table "pokemon_v2_pokemonstat" -""" -enum pokemon_v2_pokemonstat_select_column { - """column name""" - base_stat - - """column name""" - effort - - """column name""" - id - - """column name""" - pokemon_id - - """column name""" - stat_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokemonstat_stddev_fields { - base_stat: Float - effort: Float - id: Float - pokemon_id: Float - stat_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_pokemonstat" -""" -input pokemon_v2_pokemonstat_stddev_order_by { - base_stat: order_by - effort: order_by - id: order_by - pokemon_id: order_by - stat_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokemonstat_stddev_pop_fields { - base_stat: Float - effort: Float - id: Float - pokemon_id: Float - stat_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_pokemonstat" -""" -input pokemon_v2_pokemonstat_stddev_pop_order_by { - base_stat: order_by - effort: order_by - id: order_by - pokemon_id: order_by - stat_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokemonstat_stddev_samp_fields { - base_stat: Float - effort: Float - id: Float - pokemon_id: Float - stat_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_pokemonstat" -""" -input pokemon_v2_pokemonstat_stddev_samp_order_by { - base_stat: order_by - effort: order_by - id: order_by - pokemon_id: order_by - stat_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_pokemonstat" -""" -input pokemon_v2_pokemonstat_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokemonstat_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokemonstat_stream_cursor_value_input { - base_stat: Int - effort: Int - id: Int - pokemon_id: Int - stat_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_pokemonstat_sum_fields { - base_stat: Int - effort: Int - id: Int - pokemon_id: Int - stat_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_pokemonstat" -""" -input pokemon_v2_pokemonstat_sum_order_by { - base_stat: order_by - effort: order_by - id: order_by - pokemon_id: order_by - stat_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokemonstat_var_pop_fields { - base_stat: Float - effort: Float - id: Float - pokemon_id: Float - stat_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_pokemonstat" -""" -input pokemon_v2_pokemonstat_var_pop_order_by { - base_stat: order_by - effort: order_by - id: order_by - pokemon_id: order_by - stat_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokemonstat_var_samp_fields { - base_stat: Float - effort: Float - id: Float - pokemon_id: Float - stat_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_pokemonstat" -""" -input pokemon_v2_pokemonstat_var_samp_order_by { - base_stat: order_by - effort: order_by - id: order_by - pokemon_id: order_by - stat_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_pokemonstat_variance_fields { - base_stat: Float - effort: Float - id: Float - pokemon_id: Float - stat_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_pokemonstat" -""" -input pokemon_v2_pokemonstat_variance_order_by { - base_stat: order_by - effort: order_by - id: order_by - pokemon_id: order_by - stat_id: order_by -} - -""" -columns and relationships of "pokemon_v2_pokemontype" -""" -type pokemon_v2_pokemontype { - id: Int! - pokemon_id: Int - - """An object relationship""" - pokemon_v2_pokemon: pokemon_v2_pokemon - - """An object relationship""" - pokemon_v2_type: pokemon_v2_type - slot: Int! - type_id: Int -} - -""" -aggregated selection of "pokemon_v2_pokemontype" -""" -type pokemon_v2_pokemontype_aggregate { - aggregate: pokemon_v2_pokemontype_aggregate_fields - nodes: [pokemon_v2_pokemontype!]! -} - -input pokemon_v2_pokemontype_aggregate_bool_exp { - count: pokemon_v2_pokemontype_aggregate_bool_exp_count -} - -input pokemon_v2_pokemontype_aggregate_bool_exp_count { - arguments: [pokemon_v2_pokemontype_select_column!] - distinct: Boolean - filter: pokemon_v2_pokemontype_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_pokemontype" -""" -type pokemon_v2_pokemontype_aggregate_fields { - avg: pokemon_v2_pokemontype_avg_fields - count(columns: [pokemon_v2_pokemontype_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokemontype_max_fields - min: pokemon_v2_pokemontype_min_fields - stddev: pokemon_v2_pokemontype_stddev_fields - stddev_pop: pokemon_v2_pokemontype_stddev_pop_fields - stddev_samp: pokemon_v2_pokemontype_stddev_samp_fields - sum: pokemon_v2_pokemontype_sum_fields - var_pop: pokemon_v2_pokemontype_var_pop_fields - var_samp: pokemon_v2_pokemontype_var_samp_fields - variance: pokemon_v2_pokemontype_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_pokemontype" -""" -input pokemon_v2_pokemontype_aggregate_order_by { - avg: pokemon_v2_pokemontype_avg_order_by - count: order_by - max: pokemon_v2_pokemontype_max_order_by - min: pokemon_v2_pokemontype_min_order_by - stddev: pokemon_v2_pokemontype_stddev_order_by - stddev_pop: pokemon_v2_pokemontype_stddev_pop_order_by - stddev_samp: pokemon_v2_pokemontype_stddev_samp_order_by - sum: pokemon_v2_pokemontype_sum_order_by - var_pop: pokemon_v2_pokemontype_var_pop_order_by - var_samp: pokemon_v2_pokemontype_var_samp_order_by - variance: pokemon_v2_pokemontype_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_pokemontype_avg_fields { - id: Float - pokemon_id: Float - slot: Float - type_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_pokemontype" -""" -input pokemon_v2_pokemontype_avg_order_by { - id: order_by - pokemon_id: order_by - slot: order_by - type_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokemontype". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokemontype_bool_exp { - _and: [pokemon_v2_pokemontype_bool_exp!] - _not: pokemon_v2_pokemontype_bool_exp - _or: [pokemon_v2_pokemontype_bool_exp!] - id: Int_comparison_exp - pokemon_id: Int_comparison_exp - pokemon_v2_pokemon: pokemon_v2_pokemon_bool_exp - pokemon_v2_type: pokemon_v2_type_bool_exp - slot: Int_comparison_exp - type_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokemontype_max_fields { - id: Int - pokemon_id: Int - slot: Int - type_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_pokemontype" -""" -input pokemon_v2_pokemontype_max_order_by { - id: order_by - pokemon_id: order_by - slot: order_by - type_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_pokemontype_min_fields { - id: Int - pokemon_id: Int - slot: Int - type_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_pokemontype" -""" -input pokemon_v2_pokemontype_min_order_by { - id: order_by - pokemon_id: order_by - slot: order_by - type_id: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_pokemontype".""" -input pokemon_v2_pokemontype_order_by { - id: order_by - pokemon_id: order_by - pokemon_v2_pokemon: pokemon_v2_pokemon_order_by - pokemon_v2_type: pokemon_v2_type_order_by - slot: order_by - type_id: order_by -} - -""" -select columns of table "pokemon_v2_pokemontype" -""" -enum pokemon_v2_pokemontype_select_column { - """column name""" - id - - """column name""" - pokemon_id - - """column name""" - slot - - """column name""" - type_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokemontype_stddev_fields { - id: Float - pokemon_id: Float - slot: Float - type_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_pokemontype" -""" -input pokemon_v2_pokemontype_stddev_order_by { - id: order_by - pokemon_id: order_by - slot: order_by - type_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokemontype_stddev_pop_fields { - id: Float - pokemon_id: Float - slot: Float - type_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_pokemontype" -""" -input pokemon_v2_pokemontype_stddev_pop_order_by { - id: order_by - pokemon_id: order_by - slot: order_by - type_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokemontype_stddev_samp_fields { - id: Float - pokemon_id: Float - slot: Float - type_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_pokemontype" -""" -input pokemon_v2_pokemontype_stddev_samp_order_by { - id: order_by - pokemon_id: order_by - slot: order_by - type_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_pokemontype" -""" -input pokemon_v2_pokemontype_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokemontype_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokemontype_stream_cursor_value_input { - id: Int - pokemon_id: Int - slot: Int - type_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_pokemontype_sum_fields { - id: Int - pokemon_id: Int - slot: Int - type_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_pokemontype" -""" -input pokemon_v2_pokemontype_sum_order_by { - id: order_by - pokemon_id: order_by - slot: order_by - type_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokemontype_var_pop_fields { - id: Float - pokemon_id: Float - slot: Float - type_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_pokemontype" -""" -input pokemon_v2_pokemontype_var_pop_order_by { - id: order_by - pokemon_id: order_by - slot: order_by - type_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokemontype_var_samp_fields { - id: Float - pokemon_id: Float - slot: Float - type_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_pokemontype" -""" -input pokemon_v2_pokemontype_var_samp_order_by { - id: order_by - pokemon_id: order_by - slot: order_by - type_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_pokemontype_variance_fields { - id: Float - pokemon_id: Float - slot: Float - type_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_pokemontype" -""" -input pokemon_v2_pokemontype_variance_order_by { - id: order_by - pokemon_id: order_by - slot: order_by - type_id: order_by -} - -""" -columns and relationships of "pokemon_v2_pokemontypepast" -""" -type pokemon_v2_pokemontypepast { - generation_id: Int - id: Int! - pokemon_id: Int - - """An object relationship""" - pokemon_v2_generation: pokemon_v2_generation - - """An object relationship""" - pokemon_v2_pokemon: pokemon_v2_pokemon - - """An object relationship""" - pokemon_v2_type: pokemon_v2_type - slot: Int! - type_id: Int -} - -""" -aggregated selection of "pokemon_v2_pokemontypepast" -""" -type pokemon_v2_pokemontypepast_aggregate { - aggregate: pokemon_v2_pokemontypepast_aggregate_fields - nodes: [pokemon_v2_pokemontypepast!]! -} - -input pokemon_v2_pokemontypepast_aggregate_bool_exp { - count: pokemon_v2_pokemontypepast_aggregate_bool_exp_count -} - -input pokemon_v2_pokemontypepast_aggregate_bool_exp_count { - arguments: [pokemon_v2_pokemontypepast_select_column!] - distinct: Boolean - filter: pokemon_v2_pokemontypepast_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_pokemontypepast" -""" -type pokemon_v2_pokemontypepast_aggregate_fields { - avg: pokemon_v2_pokemontypepast_avg_fields - count(columns: [pokemon_v2_pokemontypepast_select_column!], distinct: Boolean): Int! - max: pokemon_v2_pokemontypepast_max_fields - min: pokemon_v2_pokemontypepast_min_fields - stddev: pokemon_v2_pokemontypepast_stddev_fields - stddev_pop: pokemon_v2_pokemontypepast_stddev_pop_fields - stddev_samp: pokemon_v2_pokemontypepast_stddev_samp_fields - sum: pokemon_v2_pokemontypepast_sum_fields - var_pop: pokemon_v2_pokemontypepast_var_pop_fields - var_samp: pokemon_v2_pokemontypepast_var_samp_fields - variance: pokemon_v2_pokemontypepast_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_pokemontypepast" -""" -input pokemon_v2_pokemontypepast_aggregate_order_by { - avg: pokemon_v2_pokemontypepast_avg_order_by - count: order_by - max: pokemon_v2_pokemontypepast_max_order_by - min: pokemon_v2_pokemontypepast_min_order_by - stddev: pokemon_v2_pokemontypepast_stddev_order_by - stddev_pop: pokemon_v2_pokemontypepast_stddev_pop_order_by - stddev_samp: pokemon_v2_pokemontypepast_stddev_samp_order_by - sum: pokemon_v2_pokemontypepast_sum_order_by - var_pop: pokemon_v2_pokemontypepast_var_pop_order_by - var_samp: pokemon_v2_pokemontypepast_var_samp_order_by - variance: pokemon_v2_pokemontypepast_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_pokemontypepast_avg_fields { - generation_id: Float - id: Float - pokemon_id: Float - slot: Float - type_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_pokemontypepast" -""" -input pokemon_v2_pokemontypepast_avg_order_by { - generation_id: order_by - id: order_by - pokemon_id: order_by - slot: order_by - type_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_pokemontypepast". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_pokemontypepast_bool_exp { - _and: [pokemon_v2_pokemontypepast_bool_exp!] - _not: pokemon_v2_pokemontypepast_bool_exp - _or: [pokemon_v2_pokemontypepast_bool_exp!] - generation_id: Int_comparison_exp - id: Int_comparison_exp - pokemon_id: Int_comparison_exp - pokemon_v2_generation: pokemon_v2_generation_bool_exp - pokemon_v2_pokemon: pokemon_v2_pokemon_bool_exp - pokemon_v2_type: pokemon_v2_type_bool_exp - slot: Int_comparison_exp - type_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_pokemontypepast_max_fields { - generation_id: Int - id: Int - pokemon_id: Int - slot: Int - type_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_pokemontypepast" -""" -input pokemon_v2_pokemontypepast_max_order_by { - generation_id: order_by - id: order_by - pokemon_id: order_by - slot: order_by - type_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_pokemontypepast_min_fields { - generation_id: Int - id: Int - pokemon_id: Int - slot: Int - type_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_pokemontypepast" -""" -input pokemon_v2_pokemontypepast_min_order_by { - generation_id: order_by - id: order_by - pokemon_id: order_by - slot: order_by - type_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_pokemontypepast". -""" -input pokemon_v2_pokemontypepast_order_by { - generation_id: order_by - id: order_by - pokemon_id: order_by - pokemon_v2_generation: pokemon_v2_generation_order_by - pokemon_v2_pokemon: pokemon_v2_pokemon_order_by - pokemon_v2_type: pokemon_v2_type_order_by - slot: order_by - type_id: order_by -} - -""" -select columns of table "pokemon_v2_pokemontypepast" -""" -enum pokemon_v2_pokemontypepast_select_column { - """column name""" - generation_id - - """column name""" - id - - """column name""" - pokemon_id - - """column name""" - slot - - """column name""" - type_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_pokemontypepast_stddev_fields { - generation_id: Float - id: Float - pokemon_id: Float - slot: Float - type_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_pokemontypepast" -""" -input pokemon_v2_pokemontypepast_stddev_order_by { - generation_id: order_by - id: order_by - pokemon_id: order_by - slot: order_by - type_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_pokemontypepast_stddev_pop_fields { - generation_id: Float - id: Float - pokemon_id: Float - slot: Float - type_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_pokemontypepast" -""" -input pokemon_v2_pokemontypepast_stddev_pop_order_by { - generation_id: order_by - id: order_by - pokemon_id: order_by - slot: order_by - type_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_pokemontypepast_stddev_samp_fields { - generation_id: Float - id: Float - pokemon_id: Float - slot: Float - type_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_pokemontypepast" -""" -input pokemon_v2_pokemontypepast_stddev_samp_order_by { - generation_id: order_by - id: order_by - pokemon_id: order_by - slot: order_by - type_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_pokemontypepast" -""" -input pokemon_v2_pokemontypepast_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_pokemontypepast_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_pokemontypepast_stream_cursor_value_input { - generation_id: Int - id: Int - pokemon_id: Int - slot: Int - type_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_pokemontypepast_sum_fields { - generation_id: Int - id: Int - pokemon_id: Int - slot: Int - type_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_pokemontypepast" -""" -input pokemon_v2_pokemontypepast_sum_order_by { - generation_id: order_by - id: order_by - pokemon_id: order_by - slot: order_by - type_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_pokemontypepast_var_pop_fields { - generation_id: Float - id: Float - pokemon_id: Float - slot: Float - type_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_pokemontypepast" -""" -input pokemon_v2_pokemontypepast_var_pop_order_by { - generation_id: order_by - id: order_by - pokemon_id: order_by - slot: order_by - type_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_pokemontypepast_var_samp_fields { - generation_id: Float - id: Float - pokemon_id: Float - slot: Float - type_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_pokemontypepast" -""" -input pokemon_v2_pokemontypepast_var_samp_order_by { - generation_id: order_by - id: order_by - pokemon_id: order_by - slot: order_by - type_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_pokemontypepast_variance_fields { - generation_id: Float - id: Float - pokemon_id: Float - slot: Float - type_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_pokemontypepast" -""" -input pokemon_v2_pokemontypepast_variance_order_by { - generation_id: order_by - id: order_by - pokemon_id: order_by - slot: order_by - type_id: order_by -} - -""" -columns and relationships of "pokemon_v2_region" -""" -type pokemon_v2_region { - id: Int! - name: String! - - """An object relationship""" - pokemon_v2_generation: pokemon_v2_generation - - """An array relationship""" - pokemon_v2_generations( - """distinct select on columns""" - distinct_on: [pokemon_v2_generation_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_generation_order_by!] - - """filter the rows returned""" - where: pokemon_v2_generation_bool_exp - ): [pokemon_v2_generation!]! - - """An aggregate relationship""" - pokemon_v2_generations_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_generation_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_generation_order_by!] - - """filter the rows returned""" - where: pokemon_v2_generation_bool_exp - ): pokemon_v2_generation_aggregate! - - """An array relationship""" - pokemon_v2_locations( - """distinct select on columns""" - distinct_on: [pokemon_v2_location_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_location_order_by!] - - """filter the rows returned""" - where: pokemon_v2_location_bool_exp - ): [pokemon_v2_location!]! - - """An aggregate relationship""" - pokemon_v2_locations_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_location_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_location_order_by!] - - """filter the rows returned""" - where: pokemon_v2_location_bool_exp - ): pokemon_v2_location_aggregate! - - """An array relationship""" - pokemon_v2_pokedexes( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokedex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokedex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokedex_bool_exp - ): [pokemon_v2_pokedex!]! - - """An aggregate relationship""" - pokemon_v2_pokedexes_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokedex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokedex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokedex_bool_exp - ): pokemon_v2_pokedex_aggregate! - - """An array relationship""" - pokemon_v2_regionnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_regionname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_regionname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_regionname_bool_exp - ): [pokemon_v2_regionname!]! - - """An aggregate relationship""" - pokemon_v2_regionnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_regionname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_regionname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_regionname_bool_exp - ): pokemon_v2_regionname_aggregate! - - """An array relationship""" - pokemon_v2_versiongroupregions( - """distinct select on columns""" - distinct_on: [pokemon_v2_versiongroupregion_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_versiongroupregion_order_by!] - - """filter the rows returned""" - where: pokemon_v2_versiongroupregion_bool_exp - ): [pokemon_v2_versiongroupregion!]! - - """An aggregate relationship""" - pokemon_v2_versiongroupregions_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_versiongroupregion_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_versiongroupregion_order_by!] - - """filter the rows returned""" - where: pokemon_v2_versiongroupregion_bool_exp - ): pokemon_v2_versiongroupregion_aggregate! -} - -""" -aggregated selection of "pokemon_v2_region" -""" -type pokemon_v2_region_aggregate { - aggregate: pokemon_v2_region_aggregate_fields - nodes: [pokemon_v2_region!]! -} - -""" -aggregate fields of "pokemon_v2_region" -""" -type pokemon_v2_region_aggregate_fields { - avg: pokemon_v2_region_avg_fields - count(columns: [pokemon_v2_region_select_column!], distinct: Boolean): Int! - max: pokemon_v2_region_max_fields - min: pokemon_v2_region_min_fields - stddev: pokemon_v2_region_stddev_fields - stddev_pop: pokemon_v2_region_stddev_pop_fields - stddev_samp: pokemon_v2_region_stddev_samp_fields - sum: pokemon_v2_region_sum_fields - var_pop: pokemon_v2_region_var_pop_fields - var_samp: pokemon_v2_region_var_samp_fields - variance: pokemon_v2_region_variance_fields -} - -"""aggregate avg on columns""" -type pokemon_v2_region_avg_fields { - id: Float -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_region". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_region_bool_exp { - _and: [pokemon_v2_region_bool_exp!] - _not: pokemon_v2_region_bool_exp - _or: [pokemon_v2_region_bool_exp!] - id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_generation: pokemon_v2_generation_bool_exp - pokemon_v2_generations: pokemon_v2_generation_bool_exp - pokemon_v2_generations_aggregate: pokemon_v2_generation_aggregate_bool_exp - pokemon_v2_locations: pokemon_v2_location_bool_exp - pokemon_v2_locations_aggregate: pokemon_v2_location_aggregate_bool_exp - pokemon_v2_pokedexes: pokemon_v2_pokedex_bool_exp - pokemon_v2_pokedexes_aggregate: pokemon_v2_pokedex_aggregate_bool_exp - pokemon_v2_regionnames: pokemon_v2_regionname_bool_exp - pokemon_v2_regionnames_aggregate: pokemon_v2_regionname_aggregate_bool_exp - pokemon_v2_versiongroupregions: pokemon_v2_versiongroupregion_bool_exp - pokemon_v2_versiongroupregions_aggregate: pokemon_v2_versiongroupregion_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_region_max_fields { - id: Int - name: String -} - -"""aggregate min on columns""" -type pokemon_v2_region_min_fields { - id: Int - name: String -} - -"""Ordering options when selecting data from "pokemon_v2_region".""" -input pokemon_v2_region_order_by { - id: order_by - name: order_by - pokemon_v2_generation: pokemon_v2_generation_order_by - pokemon_v2_generations_aggregate: pokemon_v2_generation_aggregate_order_by - pokemon_v2_locations_aggregate: pokemon_v2_location_aggregate_order_by - pokemon_v2_pokedexes_aggregate: pokemon_v2_pokedex_aggregate_order_by - pokemon_v2_regionnames_aggregate: pokemon_v2_regionname_aggregate_order_by - pokemon_v2_versiongroupregions_aggregate: pokemon_v2_versiongroupregion_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_region" -""" -enum pokemon_v2_region_select_column { - """column name""" - id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_region_stddev_fields { - id: Float -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_region_stddev_pop_fields { - id: Float -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_region_stddev_samp_fields { - id: Float -} - -""" -Streaming cursor of the table "pokemon_v2_region" -""" -input pokemon_v2_region_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_region_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_region_stream_cursor_value_input { - id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_region_sum_fields { - id: Int -} - -"""aggregate var_pop on columns""" -type pokemon_v2_region_var_pop_fields { - id: Float -} - -"""aggregate var_samp on columns""" -type pokemon_v2_region_var_samp_fields { - id: Float -} - -"""aggregate variance on columns""" -type pokemon_v2_region_variance_fields { - id: Float -} - -""" -columns and relationships of "pokemon_v2_regionname" -""" -type pokemon_v2_regionname { - id: Int! - language_id: Int - name: String! - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_region: pokemon_v2_region - region_id: Int -} - -""" -aggregated selection of "pokemon_v2_regionname" -""" -type pokemon_v2_regionname_aggregate { - aggregate: pokemon_v2_regionname_aggregate_fields - nodes: [pokemon_v2_regionname!]! -} - -input pokemon_v2_regionname_aggregate_bool_exp { - count: pokemon_v2_regionname_aggregate_bool_exp_count -} - -input pokemon_v2_regionname_aggregate_bool_exp_count { - arguments: [pokemon_v2_regionname_select_column!] - distinct: Boolean - filter: pokemon_v2_regionname_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_regionname" -""" -type pokemon_v2_regionname_aggregate_fields { - avg: pokemon_v2_regionname_avg_fields - count(columns: [pokemon_v2_regionname_select_column!], distinct: Boolean): Int! - max: pokemon_v2_regionname_max_fields - min: pokemon_v2_regionname_min_fields - stddev: pokemon_v2_regionname_stddev_fields - stddev_pop: pokemon_v2_regionname_stddev_pop_fields - stddev_samp: pokemon_v2_regionname_stddev_samp_fields - sum: pokemon_v2_regionname_sum_fields - var_pop: pokemon_v2_regionname_var_pop_fields - var_samp: pokemon_v2_regionname_var_samp_fields - variance: pokemon_v2_regionname_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_regionname" -""" -input pokemon_v2_regionname_aggregate_order_by { - avg: pokemon_v2_regionname_avg_order_by - count: order_by - max: pokemon_v2_regionname_max_order_by - min: pokemon_v2_regionname_min_order_by - stddev: pokemon_v2_regionname_stddev_order_by - stddev_pop: pokemon_v2_regionname_stddev_pop_order_by - stddev_samp: pokemon_v2_regionname_stddev_samp_order_by - sum: pokemon_v2_regionname_sum_order_by - var_pop: pokemon_v2_regionname_var_pop_order_by - var_samp: pokemon_v2_regionname_var_samp_order_by - variance: pokemon_v2_regionname_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_regionname_avg_fields { - id: Float - language_id: Float - region_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_regionname" -""" -input pokemon_v2_regionname_avg_order_by { - id: order_by - language_id: order_by - region_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_regionname". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_regionname_bool_exp { - _and: [pokemon_v2_regionname_bool_exp!] - _not: pokemon_v2_regionname_bool_exp - _or: [pokemon_v2_regionname_bool_exp!] - id: Int_comparison_exp - language_id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_region: pokemon_v2_region_bool_exp - region_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_regionname_max_fields { - id: Int - language_id: Int - name: String - region_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_regionname" -""" -input pokemon_v2_regionname_max_order_by { - id: order_by - language_id: order_by - name: order_by - region_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_regionname_min_fields { - id: Int - language_id: Int - name: String - region_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_regionname" -""" -input pokemon_v2_regionname_min_order_by { - id: order_by - language_id: order_by - name: order_by - region_id: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_regionname".""" -input pokemon_v2_regionname_order_by { - id: order_by - language_id: order_by - name: order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_region: pokemon_v2_region_order_by - region_id: order_by -} - -""" -select columns of table "pokemon_v2_regionname" -""" -enum pokemon_v2_regionname_select_column { - """column name""" - id - - """column name""" - language_id - - """column name""" - name - - """column name""" - region_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_regionname_stddev_fields { - id: Float - language_id: Float - region_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_regionname" -""" -input pokemon_v2_regionname_stddev_order_by { - id: order_by - language_id: order_by - region_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_regionname_stddev_pop_fields { - id: Float - language_id: Float - region_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_regionname" -""" -input pokemon_v2_regionname_stddev_pop_order_by { - id: order_by - language_id: order_by - region_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_regionname_stddev_samp_fields { - id: Float - language_id: Float - region_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_regionname" -""" -input pokemon_v2_regionname_stddev_samp_order_by { - id: order_by - language_id: order_by - region_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_regionname" -""" -input pokemon_v2_regionname_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_regionname_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_regionname_stream_cursor_value_input { - id: Int - language_id: Int - name: String - region_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_regionname_sum_fields { - id: Int - language_id: Int - region_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_regionname" -""" -input pokemon_v2_regionname_sum_order_by { - id: order_by - language_id: order_by - region_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_regionname_var_pop_fields { - id: Float - language_id: Float - region_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_regionname" -""" -input pokemon_v2_regionname_var_pop_order_by { - id: order_by - language_id: order_by - region_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_regionname_var_samp_fields { - id: Float - language_id: Float - region_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_regionname" -""" -input pokemon_v2_regionname_var_samp_order_by { - id: order_by - language_id: order_by - region_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_regionname_variance_fields { - id: Float - language_id: Float - region_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_regionname" -""" -input pokemon_v2_regionname_variance_order_by { - id: order_by - language_id: order_by - region_id: order_by -} - -""" -columns and relationships of "pokemon_v2_stat" -""" -type pokemon_v2_stat { - game_index: Int! - id: Int! - is_battle_only: Boolean! - move_damage_class_id: Int - name: String! - - """An array relationship""" - pokemonV2NaturesByIncreasedStatId( - """distinct select on columns""" - distinct_on: [pokemon_v2_nature_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_nature_order_by!] - - """filter the rows returned""" - where: pokemon_v2_nature_bool_exp - ): [pokemon_v2_nature!]! - - """An aggregate relationship""" - pokemonV2NaturesByIncreasedStatId_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_nature_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_nature_order_by!] - - """filter the rows returned""" - where: pokemon_v2_nature_bool_exp - ): pokemon_v2_nature_aggregate! - - """An array relationship""" - pokemon_v2_characteristics( - """distinct select on columns""" - distinct_on: [pokemon_v2_characteristic_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_characteristic_order_by!] - - """filter the rows returned""" - where: pokemon_v2_characteristic_bool_exp - ): [pokemon_v2_characteristic!]! - - """An aggregate relationship""" - pokemon_v2_characteristics_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_characteristic_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_characteristic_order_by!] - - """filter the rows returned""" - where: pokemon_v2_characteristic_bool_exp - ): pokemon_v2_characteristic_aggregate! - - """An object relationship""" - pokemon_v2_movedamageclass: pokemon_v2_movedamageclass - - """An array relationship""" - pokemon_v2_movemetastatchanges( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemetastatchange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemetastatchange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemetastatchange_bool_exp - ): [pokemon_v2_movemetastatchange!]! - - """An aggregate relationship""" - pokemon_v2_movemetastatchanges_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemetastatchange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemetastatchange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemetastatchange_bool_exp - ): pokemon_v2_movemetastatchange_aggregate! - - """An array relationship""" - pokemon_v2_natures( - """distinct select on columns""" - distinct_on: [pokemon_v2_nature_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_nature_order_by!] - - """filter the rows returned""" - where: pokemon_v2_nature_bool_exp - ): [pokemon_v2_nature!]! - - """An aggregate relationship""" - pokemon_v2_natures_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_nature_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_nature_order_by!] - - """filter the rows returned""" - where: pokemon_v2_nature_bool_exp - ): pokemon_v2_nature_aggregate! - - """An array relationship""" - pokemon_v2_pokemonstats( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonstat_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonstat_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonstat_bool_exp - ): [pokemon_v2_pokemonstat!]! - - """An aggregate relationship""" - pokemon_v2_pokemonstats_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonstat_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonstat_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonstat_bool_exp - ): pokemon_v2_pokemonstat_aggregate! - - """An array relationship""" - pokemon_v2_statnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_statname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_statname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_statname_bool_exp - ): [pokemon_v2_statname!]! - - """An aggregate relationship""" - pokemon_v2_statnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_statname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_statname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_statname_bool_exp - ): pokemon_v2_statname_aggregate! -} - -""" -aggregated selection of "pokemon_v2_stat" -""" -type pokemon_v2_stat_aggregate { - aggregate: pokemon_v2_stat_aggregate_fields - nodes: [pokemon_v2_stat!]! -} - -input pokemon_v2_stat_aggregate_bool_exp { - bool_and: pokemon_v2_stat_aggregate_bool_exp_bool_and - bool_or: pokemon_v2_stat_aggregate_bool_exp_bool_or - count: pokemon_v2_stat_aggregate_bool_exp_count -} - -input pokemon_v2_stat_aggregate_bool_exp_bool_and { - arguments: pokemon_v2_stat_select_column_pokemon_v2_stat_aggregate_bool_exp_bool_and_arguments_columns! - distinct: Boolean - filter: pokemon_v2_stat_bool_exp - predicate: Boolean_comparison_exp! -} - -input pokemon_v2_stat_aggregate_bool_exp_bool_or { - arguments: pokemon_v2_stat_select_column_pokemon_v2_stat_aggregate_bool_exp_bool_or_arguments_columns! - distinct: Boolean - filter: pokemon_v2_stat_bool_exp - predicate: Boolean_comparison_exp! -} - -input pokemon_v2_stat_aggregate_bool_exp_count { - arguments: [pokemon_v2_stat_select_column!] - distinct: Boolean - filter: pokemon_v2_stat_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_stat" -""" -type pokemon_v2_stat_aggregate_fields { - avg: pokemon_v2_stat_avg_fields - count(columns: [pokemon_v2_stat_select_column!], distinct: Boolean): Int! - max: pokemon_v2_stat_max_fields - min: pokemon_v2_stat_min_fields - stddev: pokemon_v2_stat_stddev_fields - stddev_pop: pokemon_v2_stat_stddev_pop_fields - stddev_samp: pokemon_v2_stat_stddev_samp_fields - sum: pokemon_v2_stat_sum_fields - var_pop: pokemon_v2_stat_var_pop_fields - var_samp: pokemon_v2_stat_var_samp_fields - variance: pokemon_v2_stat_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_stat" -""" -input pokemon_v2_stat_aggregate_order_by { - avg: pokemon_v2_stat_avg_order_by - count: order_by - max: pokemon_v2_stat_max_order_by - min: pokemon_v2_stat_min_order_by - stddev: pokemon_v2_stat_stddev_order_by - stddev_pop: pokemon_v2_stat_stddev_pop_order_by - stddev_samp: pokemon_v2_stat_stddev_samp_order_by - sum: pokemon_v2_stat_sum_order_by - var_pop: pokemon_v2_stat_var_pop_order_by - var_samp: pokemon_v2_stat_var_samp_order_by - variance: pokemon_v2_stat_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_stat_avg_fields { - game_index: Float - id: Float - move_damage_class_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_stat" -""" -input pokemon_v2_stat_avg_order_by { - game_index: order_by - id: order_by - move_damage_class_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_stat". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_stat_bool_exp { - _and: [pokemon_v2_stat_bool_exp!] - _not: pokemon_v2_stat_bool_exp - _or: [pokemon_v2_stat_bool_exp!] - game_index: Int_comparison_exp - id: Int_comparison_exp - is_battle_only: Boolean_comparison_exp - move_damage_class_id: Int_comparison_exp - name: String_comparison_exp - pokemonV2NaturesByIncreasedStatId: pokemon_v2_nature_bool_exp - pokemonV2NaturesByIncreasedStatId_aggregate: pokemon_v2_nature_aggregate_bool_exp - pokemon_v2_characteristics: pokemon_v2_characteristic_bool_exp - pokemon_v2_characteristics_aggregate: pokemon_v2_characteristic_aggregate_bool_exp - pokemon_v2_movedamageclass: pokemon_v2_movedamageclass_bool_exp - pokemon_v2_movemetastatchanges: pokemon_v2_movemetastatchange_bool_exp - pokemon_v2_movemetastatchanges_aggregate: pokemon_v2_movemetastatchange_aggregate_bool_exp - pokemon_v2_natures: pokemon_v2_nature_bool_exp - pokemon_v2_natures_aggregate: pokemon_v2_nature_aggregate_bool_exp - pokemon_v2_pokemonstats: pokemon_v2_pokemonstat_bool_exp - pokemon_v2_pokemonstats_aggregate: pokemon_v2_pokemonstat_aggregate_bool_exp - pokemon_v2_statnames: pokemon_v2_statname_bool_exp - pokemon_v2_statnames_aggregate: pokemon_v2_statname_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_stat_max_fields { - game_index: Int - id: Int - move_damage_class_id: Int - name: String -} - -""" -order by max() on columns of table "pokemon_v2_stat" -""" -input pokemon_v2_stat_max_order_by { - game_index: order_by - id: order_by - move_damage_class_id: order_by - name: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_stat_min_fields { - game_index: Int - id: Int - move_damage_class_id: Int - name: String -} - -""" -order by min() on columns of table "pokemon_v2_stat" -""" -input pokemon_v2_stat_min_order_by { - game_index: order_by - id: order_by - move_damage_class_id: order_by - name: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_stat".""" -input pokemon_v2_stat_order_by { - game_index: order_by - id: order_by - is_battle_only: order_by - move_damage_class_id: order_by - name: order_by - pokemonV2NaturesByIncreasedStatId_aggregate: pokemon_v2_nature_aggregate_order_by - pokemon_v2_characteristics_aggregate: pokemon_v2_characteristic_aggregate_order_by - pokemon_v2_movedamageclass: pokemon_v2_movedamageclass_order_by - pokemon_v2_movemetastatchanges_aggregate: pokemon_v2_movemetastatchange_aggregate_order_by - pokemon_v2_natures_aggregate: pokemon_v2_nature_aggregate_order_by - pokemon_v2_pokemonstats_aggregate: pokemon_v2_pokemonstat_aggregate_order_by - pokemon_v2_statnames_aggregate: pokemon_v2_statname_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_stat" -""" -enum pokemon_v2_stat_select_column { - """column name""" - game_index - - """column name""" - id - - """column name""" - is_battle_only - - """column name""" - move_damage_class_id - - """column name""" - name -} - -""" -select "pokemon_v2_stat_aggregate_bool_exp_bool_and_arguments_columns" columns of table "pokemon_v2_stat" -""" -enum pokemon_v2_stat_select_column_pokemon_v2_stat_aggregate_bool_exp_bool_and_arguments_columns { - """column name""" - is_battle_only -} - -""" -select "pokemon_v2_stat_aggregate_bool_exp_bool_or_arguments_columns" columns of table "pokemon_v2_stat" -""" -enum pokemon_v2_stat_select_column_pokemon_v2_stat_aggregate_bool_exp_bool_or_arguments_columns { - """column name""" - is_battle_only -} - -"""aggregate stddev on columns""" -type pokemon_v2_stat_stddev_fields { - game_index: Float - id: Float - move_damage_class_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_stat" -""" -input pokemon_v2_stat_stddev_order_by { - game_index: order_by - id: order_by - move_damage_class_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_stat_stddev_pop_fields { - game_index: Float - id: Float - move_damage_class_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_stat" -""" -input pokemon_v2_stat_stddev_pop_order_by { - game_index: order_by - id: order_by - move_damage_class_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_stat_stddev_samp_fields { - game_index: Float - id: Float - move_damage_class_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_stat" -""" -input pokemon_v2_stat_stddev_samp_order_by { - game_index: order_by - id: order_by - move_damage_class_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_stat" -""" -input pokemon_v2_stat_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_stat_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_stat_stream_cursor_value_input { - game_index: Int - id: Int - is_battle_only: Boolean - move_damage_class_id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_stat_sum_fields { - game_index: Int - id: Int - move_damage_class_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_stat" -""" -input pokemon_v2_stat_sum_order_by { - game_index: order_by - id: order_by - move_damage_class_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_stat_var_pop_fields { - game_index: Float - id: Float - move_damage_class_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_stat" -""" -input pokemon_v2_stat_var_pop_order_by { - game_index: order_by - id: order_by - move_damage_class_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_stat_var_samp_fields { - game_index: Float - id: Float - move_damage_class_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_stat" -""" -input pokemon_v2_stat_var_samp_order_by { - game_index: order_by - id: order_by - move_damage_class_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_stat_variance_fields { - game_index: Float - id: Float - move_damage_class_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_stat" -""" -input pokemon_v2_stat_variance_order_by { - game_index: order_by - id: order_by - move_damage_class_id: order_by -} - -""" -columns and relationships of "pokemon_v2_statname" -""" -type pokemon_v2_statname { - id: Int! - language_id: Int - name: String! - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_stat: pokemon_v2_stat - stat_id: Int -} - -""" -aggregated selection of "pokemon_v2_statname" -""" -type pokemon_v2_statname_aggregate { - aggregate: pokemon_v2_statname_aggregate_fields - nodes: [pokemon_v2_statname!]! -} - -input pokemon_v2_statname_aggregate_bool_exp { - count: pokemon_v2_statname_aggregate_bool_exp_count -} - -input pokemon_v2_statname_aggregate_bool_exp_count { - arguments: [pokemon_v2_statname_select_column!] - distinct: Boolean - filter: pokemon_v2_statname_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_statname" -""" -type pokemon_v2_statname_aggregate_fields { - avg: pokemon_v2_statname_avg_fields - count(columns: [pokemon_v2_statname_select_column!], distinct: Boolean): Int! - max: pokemon_v2_statname_max_fields - min: pokemon_v2_statname_min_fields - stddev: pokemon_v2_statname_stddev_fields - stddev_pop: pokemon_v2_statname_stddev_pop_fields - stddev_samp: pokemon_v2_statname_stddev_samp_fields - sum: pokemon_v2_statname_sum_fields - var_pop: pokemon_v2_statname_var_pop_fields - var_samp: pokemon_v2_statname_var_samp_fields - variance: pokemon_v2_statname_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_statname" -""" -input pokemon_v2_statname_aggregate_order_by { - avg: pokemon_v2_statname_avg_order_by - count: order_by - max: pokemon_v2_statname_max_order_by - min: pokemon_v2_statname_min_order_by - stddev: pokemon_v2_statname_stddev_order_by - stddev_pop: pokemon_v2_statname_stddev_pop_order_by - stddev_samp: pokemon_v2_statname_stddev_samp_order_by - sum: pokemon_v2_statname_sum_order_by - var_pop: pokemon_v2_statname_var_pop_order_by - var_samp: pokemon_v2_statname_var_samp_order_by - variance: pokemon_v2_statname_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_statname_avg_fields { - id: Float - language_id: Float - stat_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_statname" -""" -input pokemon_v2_statname_avg_order_by { - id: order_by - language_id: order_by - stat_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_statname". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_statname_bool_exp { - _and: [pokemon_v2_statname_bool_exp!] - _not: pokemon_v2_statname_bool_exp - _or: [pokemon_v2_statname_bool_exp!] - id: Int_comparison_exp - language_id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_stat: pokemon_v2_stat_bool_exp - stat_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_statname_max_fields { - id: Int - language_id: Int - name: String - stat_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_statname" -""" -input pokemon_v2_statname_max_order_by { - id: order_by - language_id: order_by - name: order_by - stat_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_statname_min_fields { - id: Int - language_id: Int - name: String - stat_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_statname" -""" -input pokemon_v2_statname_min_order_by { - id: order_by - language_id: order_by - name: order_by - stat_id: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_statname".""" -input pokemon_v2_statname_order_by { - id: order_by - language_id: order_by - name: order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_stat: pokemon_v2_stat_order_by - stat_id: order_by -} - -""" -select columns of table "pokemon_v2_statname" -""" -enum pokemon_v2_statname_select_column { - """column name""" - id - - """column name""" - language_id - - """column name""" - name - - """column name""" - stat_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_statname_stddev_fields { - id: Float - language_id: Float - stat_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_statname" -""" -input pokemon_v2_statname_stddev_order_by { - id: order_by - language_id: order_by - stat_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_statname_stddev_pop_fields { - id: Float - language_id: Float - stat_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_statname" -""" -input pokemon_v2_statname_stddev_pop_order_by { - id: order_by - language_id: order_by - stat_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_statname_stddev_samp_fields { - id: Float - language_id: Float - stat_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_statname" -""" -input pokemon_v2_statname_stddev_samp_order_by { - id: order_by - language_id: order_by - stat_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_statname" -""" -input pokemon_v2_statname_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_statname_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_statname_stream_cursor_value_input { - id: Int - language_id: Int - name: String - stat_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_statname_sum_fields { - id: Int - language_id: Int - stat_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_statname" -""" -input pokemon_v2_statname_sum_order_by { - id: order_by - language_id: order_by - stat_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_statname_var_pop_fields { - id: Float - language_id: Float - stat_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_statname" -""" -input pokemon_v2_statname_var_pop_order_by { - id: order_by - language_id: order_by - stat_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_statname_var_samp_fields { - id: Float - language_id: Float - stat_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_statname" -""" -input pokemon_v2_statname_var_samp_order_by { - id: order_by - language_id: order_by - stat_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_statname_variance_fields { - id: Float - language_id: Float - stat_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_statname" -""" -input pokemon_v2_statname_variance_order_by { - id: order_by - language_id: order_by - stat_id: order_by -} - -""" -columns and relationships of "pokemon_v2_supercontestcombo" -""" -type pokemon_v2_supercontestcombo { - first_move_id: Int - id: Int! - - """An object relationship""" - pokemonV2MoveBySecondMoveId: pokemon_v2_move - - """An object relationship""" - pokemon_v2_move: pokemon_v2_move - second_move_id: Int -} - -""" -aggregated selection of "pokemon_v2_supercontestcombo" -""" -type pokemon_v2_supercontestcombo_aggregate { - aggregate: pokemon_v2_supercontestcombo_aggregate_fields - nodes: [pokemon_v2_supercontestcombo!]! -} - -input pokemon_v2_supercontestcombo_aggregate_bool_exp { - count: pokemon_v2_supercontestcombo_aggregate_bool_exp_count -} - -input pokemon_v2_supercontestcombo_aggregate_bool_exp_count { - arguments: [pokemon_v2_supercontestcombo_select_column!] - distinct: Boolean - filter: pokemon_v2_supercontestcombo_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_supercontestcombo" -""" -type pokemon_v2_supercontestcombo_aggregate_fields { - avg: pokemon_v2_supercontestcombo_avg_fields - count(columns: [pokemon_v2_supercontestcombo_select_column!], distinct: Boolean): Int! - max: pokemon_v2_supercontestcombo_max_fields - min: pokemon_v2_supercontestcombo_min_fields - stddev: pokemon_v2_supercontestcombo_stddev_fields - stddev_pop: pokemon_v2_supercontestcombo_stddev_pop_fields - stddev_samp: pokemon_v2_supercontestcombo_stddev_samp_fields - sum: pokemon_v2_supercontestcombo_sum_fields - var_pop: pokemon_v2_supercontestcombo_var_pop_fields - var_samp: pokemon_v2_supercontestcombo_var_samp_fields - variance: pokemon_v2_supercontestcombo_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_supercontestcombo" -""" -input pokemon_v2_supercontestcombo_aggregate_order_by { - avg: pokemon_v2_supercontestcombo_avg_order_by - count: order_by - max: pokemon_v2_supercontestcombo_max_order_by - min: pokemon_v2_supercontestcombo_min_order_by - stddev: pokemon_v2_supercontestcombo_stddev_order_by - stddev_pop: pokemon_v2_supercontestcombo_stddev_pop_order_by - stddev_samp: pokemon_v2_supercontestcombo_stddev_samp_order_by - sum: pokemon_v2_supercontestcombo_sum_order_by - var_pop: pokemon_v2_supercontestcombo_var_pop_order_by - var_samp: pokemon_v2_supercontestcombo_var_samp_order_by - variance: pokemon_v2_supercontestcombo_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_supercontestcombo_avg_fields { - first_move_id: Float - id: Float - second_move_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_supercontestcombo" -""" -input pokemon_v2_supercontestcombo_avg_order_by { - first_move_id: order_by - id: order_by - second_move_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_supercontestcombo". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_supercontestcombo_bool_exp { - _and: [pokemon_v2_supercontestcombo_bool_exp!] - _not: pokemon_v2_supercontestcombo_bool_exp - _or: [pokemon_v2_supercontestcombo_bool_exp!] - first_move_id: Int_comparison_exp - id: Int_comparison_exp - pokemonV2MoveBySecondMoveId: pokemon_v2_move_bool_exp - pokemon_v2_move: pokemon_v2_move_bool_exp - second_move_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_supercontestcombo_max_fields { - first_move_id: Int - id: Int - second_move_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_supercontestcombo" -""" -input pokemon_v2_supercontestcombo_max_order_by { - first_move_id: order_by - id: order_by - second_move_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_supercontestcombo_min_fields { - first_move_id: Int - id: Int - second_move_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_supercontestcombo" -""" -input pokemon_v2_supercontestcombo_min_order_by { - first_move_id: order_by - id: order_by - second_move_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_supercontestcombo". -""" -input pokemon_v2_supercontestcombo_order_by { - first_move_id: order_by - id: order_by - pokemonV2MoveBySecondMoveId: pokemon_v2_move_order_by - pokemon_v2_move: pokemon_v2_move_order_by - second_move_id: order_by -} - -""" -select columns of table "pokemon_v2_supercontestcombo" -""" -enum pokemon_v2_supercontestcombo_select_column { - """column name""" - first_move_id - - """column name""" - id - - """column name""" - second_move_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_supercontestcombo_stddev_fields { - first_move_id: Float - id: Float - second_move_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_supercontestcombo" -""" -input pokemon_v2_supercontestcombo_stddev_order_by { - first_move_id: order_by - id: order_by - second_move_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_supercontestcombo_stddev_pop_fields { - first_move_id: Float - id: Float - second_move_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_supercontestcombo" -""" -input pokemon_v2_supercontestcombo_stddev_pop_order_by { - first_move_id: order_by - id: order_by - second_move_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_supercontestcombo_stddev_samp_fields { - first_move_id: Float - id: Float - second_move_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_supercontestcombo" -""" -input pokemon_v2_supercontestcombo_stddev_samp_order_by { - first_move_id: order_by - id: order_by - second_move_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_supercontestcombo" -""" -input pokemon_v2_supercontestcombo_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_supercontestcombo_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_supercontestcombo_stream_cursor_value_input { - first_move_id: Int - id: Int - second_move_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_supercontestcombo_sum_fields { - first_move_id: Int - id: Int - second_move_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_supercontestcombo" -""" -input pokemon_v2_supercontestcombo_sum_order_by { - first_move_id: order_by - id: order_by - second_move_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_supercontestcombo_var_pop_fields { - first_move_id: Float - id: Float - second_move_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_supercontestcombo" -""" -input pokemon_v2_supercontestcombo_var_pop_order_by { - first_move_id: order_by - id: order_by - second_move_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_supercontestcombo_var_samp_fields { - first_move_id: Float - id: Float - second_move_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_supercontestcombo" -""" -input pokemon_v2_supercontestcombo_var_samp_order_by { - first_move_id: order_by - id: order_by - second_move_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_supercontestcombo_variance_fields { - first_move_id: Float - id: Float - second_move_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_supercontestcombo" -""" -input pokemon_v2_supercontestcombo_variance_order_by { - first_move_id: order_by - id: order_by - second_move_id: order_by -} - -""" -columns and relationships of "pokemon_v2_supercontesteffect" -""" -type pokemon_v2_supercontesteffect { - appeal: Int! - id: Int! - - """An array relationship""" - pokemon_v2_moves( - """distinct select on columns""" - distinct_on: [pokemon_v2_move_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_move_order_by!] - - """filter the rows returned""" - where: pokemon_v2_move_bool_exp - ): [pokemon_v2_move!]! - - """An aggregate relationship""" - pokemon_v2_moves_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_move_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_move_order_by!] - - """filter the rows returned""" - where: pokemon_v2_move_bool_exp - ): pokemon_v2_move_aggregate! - - """An array relationship""" - pokemon_v2_supercontesteffectflavortexts( - """distinct select on columns""" - distinct_on: [pokemon_v2_supercontesteffectflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_supercontesteffectflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_supercontesteffectflavortext_bool_exp - ): [pokemon_v2_supercontesteffectflavortext!]! - - """An aggregate relationship""" - pokemon_v2_supercontesteffectflavortexts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_supercontesteffectflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_supercontesteffectflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_supercontesteffectflavortext_bool_exp - ): pokemon_v2_supercontesteffectflavortext_aggregate! -} - -""" -aggregated selection of "pokemon_v2_supercontesteffect" -""" -type pokemon_v2_supercontesteffect_aggregate { - aggregate: pokemon_v2_supercontesteffect_aggregate_fields - nodes: [pokemon_v2_supercontesteffect!]! -} - -""" -aggregate fields of "pokemon_v2_supercontesteffect" -""" -type pokemon_v2_supercontesteffect_aggregate_fields { - avg: pokemon_v2_supercontesteffect_avg_fields - count(columns: [pokemon_v2_supercontesteffect_select_column!], distinct: Boolean): Int! - max: pokemon_v2_supercontesteffect_max_fields - min: pokemon_v2_supercontesteffect_min_fields - stddev: pokemon_v2_supercontesteffect_stddev_fields - stddev_pop: pokemon_v2_supercontesteffect_stddev_pop_fields - stddev_samp: pokemon_v2_supercontesteffect_stddev_samp_fields - sum: pokemon_v2_supercontesteffect_sum_fields - var_pop: pokemon_v2_supercontesteffect_var_pop_fields - var_samp: pokemon_v2_supercontesteffect_var_samp_fields - variance: pokemon_v2_supercontesteffect_variance_fields -} - -"""aggregate avg on columns""" -type pokemon_v2_supercontesteffect_avg_fields { - appeal: Float - id: Float -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_supercontesteffect". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_supercontesteffect_bool_exp { - _and: [pokemon_v2_supercontesteffect_bool_exp!] - _not: pokemon_v2_supercontesteffect_bool_exp - _or: [pokemon_v2_supercontesteffect_bool_exp!] - appeal: Int_comparison_exp - id: Int_comparison_exp - pokemon_v2_moves: pokemon_v2_move_bool_exp - pokemon_v2_moves_aggregate: pokemon_v2_move_aggregate_bool_exp - pokemon_v2_supercontesteffectflavortexts: pokemon_v2_supercontesteffectflavortext_bool_exp - pokemon_v2_supercontesteffectflavortexts_aggregate: pokemon_v2_supercontesteffectflavortext_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_supercontesteffect_max_fields { - appeal: Int - id: Int -} - -"""aggregate min on columns""" -type pokemon_v2_supercontesteffect_min_fields { - appeal: Int - id: Int -} - -""" -Ordering options when selecting data from "pokemon_v2_supercontesteffect". -""" -input pokemon_v2_supercontesteffect_order_by { - appeal: order_by - id: order_by - pokemon_v2_moves_aggregate: pokemon_v2_move_aggregate_order_by - pokemon_v2_supercontesteffectflavortexts_aggregate: pokemon_v2_supercontesteffectflavortext_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_supercontesteffect" -""" -enum pokemon_v2_supercontesteffect_select_column { - """column name""" - appeal - - """column name""" - id -} - -"""aggregate stddev on columns""" -type pokemon_v2_supercontesteffect_stddev_fields { - appeal: Float - id: Float -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_supercontesteffect_stddev_pop_fields { - appeal: Float - id: Float -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_supercontesteffect_stddev_samp_fields { - appeal: Float - id: Float -} - -""" -Streaming cursor of the table "pokemon_v2_supercontesteffect" -""" -input pokemon_v2_supercontesteffect_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_supercontesteffect_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_supercontesteffect_stream_cursor_value_input { - appeal: Int - id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_supercontesteffect_sum_fields { - appeal: Int - id: Int -} - -"""aggregate var_pop on columns""" -type pokemon_v2_supercontesteffect_var_pop_fields { - appeal: Float - id: Float -} - -"""aggregate var_samp on columns""" -type pokemon_v2_supercontesteffect_var_samp_fields { - appeal: Float - id: Float -} - -"""aggregate variance on columns""" -type pokemon_v2_supercontesteffect_variance_fields { - appeal: Float - id: Float -} - -""" -columns and relationships of "pokemon_v2_supercontesteffectflavortext" -""" -type pokemon_v2_supercontesteffectflavortext { - flavor_text: String! - id: Int! - language_id: Int - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_supercontesteffect: pokemon_v2_supercontesteffect - super_contest_effect_id: Int -} - -""" -aggregated selection of "pokemon_v2_supercontesteffectflavortext" -""" -type pokemon_v2_supercontesteffectflavortext_aggregate { - aggregate: pokemon_v2_supercontesteffectflavortext_aggregate_fields - nodes: [pokemon_v2_supercontesteffectflavortext!]! -} - -input pokemon_v2_supercontesteffectflavortext_aggregate_bool_exp { - count: pokemon_v2_supercontesteffectflavortext_aggregate_bool_exp_count -} - -input pokemon_v2_supercontesteffectflavortext_aggregate_bool_exp_count { - arguments: [pokemon_v2_supercontesteffectflavortext_select_column!] - distinct: Boolean - filter: pokemon_v2_supercontesteffectflavortext_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_supercontesteffectflavortext" -""" -type pokemon_v2_supercontesteffectflavortext_aggregate_fields { - avg: pokemon_v2_supercontesteffectflavortext_avg_fields - count(columns: [pokemon_v2_supercontesteffectflavortext_select_column!], distinct: Boolean): Int! - max: pokemon_v2_supercontesteffectflavortext_max_fields - min: pokemon_v2_supercontesteffectflavortext_min_fields - stddev: pokemon_v2_supercontesteffectflavortext_stddev_fields - stddev_pop: pokemon_v2_supercontesteffectflavortext_stddev_pop_fields - stddev_samp: pokemon_v2_supercontesteffectflavortext_stddev_samp_fields - sum: pokemon_v2_supercontesteffectflavortext_sum_fields - var_pop: pokemon_v2_supercontesteffectflavortext_var_pop_fields - var_samp: pokemon_v2_supercontesteffectflavortext_var_samp_fields - variance: pokemon_v2_supercontesteffectflavortext_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_supercontesteffectflavortext" -""" -input pokemon_v2_supercontesteffectflavortext_aggregate_order_by { - avg: pokemon_v2_supercontesteffectflavortext_avg_order_by - count: order_by - max: pokemon_v2_supercontesteffectflavortext_max_order_by - min: pokemon_v2_supercontesteffectflavortext_min_order_by - stddev: pokemon_v2_supercontesteffectflavortext_stddev_order_by - stddev_pop: pokemon_v2_supercontesteffectflavortext_stddev_pop_order_by - stddev_samp: pokemon_v2_supercontesteffectflavortext_stddev_samp_order_by - sum: pokemon_v2_supercontesteffectflavortext_sum_order_by - var_pop: pokemon_v2_supercontesteffectflavortext_var_pop_order_by - var_samp: pokemon_v2_supercontesteffectflavortext_var_samp_order_by - variance: pokemon_v2_supercontesteffectflavortext_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_supercontesteffectflavortext_avg_fields { - id: Float - language_id: Float - super_contest_effect_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_supercontesteffectflavortext" -""" -input pokemon_v2_supercontesteffectflavortext_avg_order_by { - id: order_by - language_id: order_by - super_contest_effect_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_supercontesteffectflavortext". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_supercontesteffectflavortext_bool_exp { - _and: [pokemon_v2_supercontesteffectflavortext_bool_exp!] - _not: pokemon_v2_supercontesteffectflavortext_bool_exp - _or: [pokemon_v2_supercontesteffectflavortext_bool_exp!] - flavor_text: String_comparison_exp - id: Int_comparison_exp - language_id: Int_comparison_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_supercontesteffect: pokemon_v2_supercontesteffect_bool_exp - super_contest_effect_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_supercontesteffectflavortext_max_fields { - flavor_text: String - id: Int - language_id: Int - super_contest_effect_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_supercontesteffectflavortext" -""" -input pokemon_v2_supercontesteffectflavortext_max_order_by { - flavor_text: order_by - id: order_by - language_id: order_by - super_contest_effect_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_supercontesteffectflavortext_min_fields { - flavor_text: String - id: Int - language_id: Int - super_contest_effect_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_supercontesteffectflavortext" -""" -input pokemon_v2_supercontesteffectflavortext_min_order_by { - flavor_text: order_by - id: order_by - language_id: order_by - super_contest_effect_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_supercontesteffectflavortext". -""" -input pokemon_v2_supercontesteffectflavortext_order_by { - flavor_text: order_by - id: order_by - language_id: order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_supercontesteffect: pokemon_v2_supercontesteffect_order_by - super_contest_effect_id: order_by -} - -""" -select columns of table "pokemon_v2_supercontesteffectflavortext" -""" -enum pokemon_v2_supercontesteffectflavortext_select_column { - """column name""" - flavor_text - - """column name""" - id - - """column name""" - language_id - - """column name""" - super_contest_effect_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_supercontesteffectflavortext_stddev_fields { - id: Float - language_id: Float - super_contest_effect_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_supercontesteffectflavortext" -""" -input pokemon_v2_supercontesteffectflavortext_stddev_order_by { - id: order_by - language_id: order_by - super_contest_effect_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_supercontesteffectflavortext_stddev_pop_fields { - id: Float - language_id: Float - super_contest_effect_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_supercontesteffectflavortext" -""" -input pokemon_v2_supercontesteffectflavortext_stddev_pop_order_by { - id: order_by - language_id: order_by - super_contest_effect_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_supercontesteffectflavortext_stddev_samp_fields { - id: Float - language_id: Float - super_contest_effect_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_supercontesteffectflavortext" -""" -input pokemon_v2_supercontesteffectflavortext_stddev_samp_order_by { - id: order_by - language_id: order_by - super_contest_effect_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_supercontesteffectflavortext" -""" -input pokemon_v2_supercontesteffectflavortext_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_supercontesteffectflavortext_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_supercontesteffectflavortext_stream_cursor_value_input { - flavor_text: String - id: Int - language_id: Int - super_contest_effect_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_supercontesteffectflavortext_sum_fields { - id: Int - language_id: Int - super_contest_effect_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_supercontesteffectflavortext" -""" -input pokemon_v2_supercontesteffectflavortext_sum_order_by { - id: order_by - language_id: order_by - super_contest_effect_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_supercontesteffectflavortext_var_pop_fields { - id: Float - language_id: Float - super_contest_effect_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_supercontesteffectflavortext" -""" -input pokemon_v2_supercontesteffectflavortext_var_pop_order_by { - id: order_by - language_id: order_by - super_contest_effect_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_supercontesteffectflavortext_var_samp_fields { - id: Float - language_id: Float - super_contest_effect_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_supercontesteffectflavortext" -""" -input pokemon_v2_supercontesteffectflavortext_var_samp_order_by { - id: order_by - language_id: order_by - super_contest_effect_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_supercontesteffectflavortext_variance_fields { - id: Float - language_id: Float - super_contest_effect_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_supercontesteffectflavortext" -""" -input pokemon_v2_supercontesteffectflavortext_variance_order_by { - id: order_by - language_id: order_by - super_contest_effect_id: order_by -} - -""" -columns and relationships of "pokemon_v2_type" -""" -type pokemon_v2_type { - generation_id: Int - id: Int! - move_damage_class_id: Int - name: String! - - """An array relationship""" - pokemonV2PokemonevolutionsByPartyTypeId( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonevolution_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonevolution_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonevolution_bool_exp - ): [pokemon_v2_pokemonevolution!]! - - """An aggregate relationship""" - pokemonV2PokemonevolutionsByPartyTypeId_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonevolution_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonevolution_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonevolution_bool_exp - ): pokemon_v2_pokemonevolution_aggregate! - - """An array relationship""" - pokemonV2TypeefficaciesByTargetTypeId( - """distinct select on columns""" - distinct_on: [pokemon_v2_typeefficacy_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_typeefficacy_order_by!] - - """filter the rows returned""" - where: pokemon_v2_typeefficacy_bool_exp - ): [pokemon_v2_typeefficacy!]! - - """An aggregate relationship""" - pokemonV2TypeefficaciesByTargetTypeId_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_typeefficacy_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_typeefficacy_order_by!] - - """filter the rows returned""" - where: pokemon_v2_typeefficacy_bool_exp - ): pokemon_v2_typeefficacy_aggregate! - - """An array relationship""" - pokemonV2TypeefficacypastsByTargetTypeId( - """distinct select on columns""" - distinct_on: [pokemon_v2_typeefficacypast_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_typeefficacypast_order_by!] - - """filter the rows returned""" - where: pokemon_v2_typeefficacypast_bool_exp - ): [pokemon_v2_typeefficacypast!]! - - """An aggregate relationship""" - pokemonV2TypeefficacypastsByTargetTypeId_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_typeefficacypast_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_typeefficacypast_order_by!] - - """filter the rows returned""" - where: pokemon_v2_typeefficacypast_bool_exp - ): pokemon_v2_typeefficacypast_aggregate! - - """An array relationship""" - pokemon_v2_berries( - """distinct select on columns""" - distinct_on: [pokemon_v2_berry_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berry_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berry_bool_exp - ): [pokemon_v2_berry!]! - - """An aggregate relationship""" - pokemon_v2_berries_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_berry_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berry_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berry_bool_exp - ): pokemon_v2_berry_aggregate! - - """An object relationship""" - pokemon_v2_generation: pokemon_v2_generation - - """An array relationship""" - pokemon_v2_movechanges( - """distinct select on columns""" - distinct_on: [pokemon_v2_movechange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movechange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movechange_bool_exp - ): [pokemon_v2_movechange!]! - - """An aggregate relationship""" - pokemon_v2_movechanges_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movechange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movechange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movechange_bool_exp - ): pokemon_v2_movechange_aggregate! - - """An object relationship""" - pokemon_v2_movedamageclass: pokemon_v2_movedamageclass - - """An array relationship""" - pokemon_v2_moves( - """distinct select on columns""" - distinct_on: [pokemon_v2_move_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_move_order_by!] - - """filter the rows returned""" - where: pokemon_v2_move_bool_exp - ): [pokemon_v2_move!]! - - """An aggregate relationship""" - pokemon_v2_moves_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_move_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_move_order_by!] - - """filter the rows returned""" - where: pokemon_v2_move_bool_exp - ): pokemon_v2_move_aggregate! - - """An array relationship""" - pokemon_v2_pokemonevolutions( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonevolution_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonevolution_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonevolution_bool_exp - ): [pokemon_v2_pokemonevolution!]! - - """An aggregate relationship""" - pokemon_v2_pokemonevolutions_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonevolution_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonevolution_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonevolution_bool_exp - ): pokemon_v2_pokemonevolution_aggregate! - - """An array relationship""" - pokemon_v2_pokemonformtypes( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonformtype_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonformtype_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonformtype_bool_exp - ): [pokemon_v2_pokemonformtype!]! - - """An aggregate relationship""" - pokemon_v2_pokemonformtypes_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonformtype_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonformtype_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonformtype_bool_exp - ): pokemon_v2_pokemonformtype_aggregate! - - """An array relationship""" - pokemon_v2_pokemontypepasts( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemontypepast_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemontypepast_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemontypepast_bool_exp - ): [pokemon_v2_pokemontypepast!]! - - """An aggregate relationship""" - pokemon_v2_pokemontypepasts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemontypepast_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemontypepast_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemontypepast_bool_exp - ): pokemon_v2_pokemontypepast_aggregate! - - """An array relationship""" - pokemon_v2_pokemontypes( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemontype_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemontype_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemontype_bool_exp - ): [pokemon_v2_pokemontype!]! - - """An aggregate relationship""" - pokemon_v2_pokemontypes_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemontype_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemontype_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemontype_bool_exp - ): pokemon_v2_pokemontype_aggregate! - - """An array relationship""" - pokemon_v2_typeefficacies( - """distinct select on columns""" - distinct_on: [pokemon_v2_typeefficacy_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_typeefficacy_order_by!] - - """filter the rows returned""" - where: pokemon_v2_typeefficacy_bool_exp - ): [pokemon_v2_typeefficacy!]! - - """An aggregate relationship""" - pokemon_v2_typeefficacies_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_typeefficacy_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_typeefficacy_order_by!] - - """filter the rows returned""" - where: pokemon_v2_typeefficacy_bool_exp - ): pokemon_v2_typeefficacy_aggregate! - - """An array relationship""" - pokemon_v2_typeefficacypasts( - """distinct select on columns""" - distinct_on: [pokemon_v2_typeefficacypast_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_typeefficacypast_order_by!] - - """filter the rows returned""" - where: pokemon_v2_typeefficacypast_bool_exp - ): [pokemon_v2_typeefficacypast!]! - - """An aggregate relationship""" - pokemon_v2_typeefficacypasts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_typeefficacypast_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_typeefficacypast_order_by!] - - """filter the rows returned""" - where: pokemon_v2_typeefficacypast_bool_exp - ): pokemon_v2_typeefficacypast_aggregate! - - """An array relationship""" - pokemon_v2_typegameindices( - """distinct select on columns""" - distinct_on: [pokemon_v2_typegameindex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_typegameindex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_typegameindex_bool_exp - ): [pokemon_v2_typegameindex!]! - - """An aggregate relationship""" - pokemon_v2_typegameindices_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_typegameindex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_typegameindex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_typegameindex_bool_exp - ): pokemon_v2_typegameindex_aggregate! - - """An array relationship""" - pokemon_v2_typenames( - """distinct select on columns""" - distinct_on: [pokemon_v2_typename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_typename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_typename_bool_exp - ): [pokemon_v2_typename!]! - - """An aggregate relationship""" - pokemon_v2_typenames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_typename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_typename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_typename_bool_exp - ): pokemon_v2_typename_aggregate! -} - -""" -aggregated selection of "pokemon_v2_type" -""" -type pokemon_v2_type_aggregate { - aggregate: pokemon_v2_type_aggregate_fields - nodes: [pokemon_v2_type!]! -} - -input pokemon_v2_type_aggregate_bool_exp { - count: pokemon_v2_type_aggregate_bool_exp_count -} - -input pokemon_v2_type_aggregate_bool_exp_count { - arguments: [pokemon_v2_type_select_column!] - distinct: Boolean - filter: pokemon_v2_type_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_type" -""" -type pokemon_v2_type_aggregate_fields { - avg: pokemon_v2_type_avg_fields - count(columns: [pokemon_v2_type_select_column!], distinct: Boolean): Int! - max: pokemon_v2_type_max_fields - min: pokemon_v2_type_min_fields - stddev: pokemon_v2_type_stddev_fields - stddev_pop: pokemon_v2_type_stddev_pop_fields - stddev_samp: pokemon_v2_type_stddev_samp_fields - sum: pokemon_v2_type_sum_fields - var_pop: pokemon_v2_type_var_pop_fields - var_samp: pokemon_v2_type_var_samp_fields - variance: pokemon_v2_type_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_type" -""" -input pokemon_v2_type_aggregate_order_by { - avg: pokemon_v2_type_avg_order_by - count: order_by - max: pokemon_v2_type_max_order_by - min: pokemon_v2_type_min_order_by - stddev: pokemon_v2_type_stddev_order_by - stddev_pop: pokemon_v2_type_stddev_pop_order_by - stddev_samp: pokemon_v2_type_stddev_samp_order_by - sum: pokemon_v2_type_sum_order_by - var_pop: pokemon_v2_type_var_pop_order_by - var_samp: pokemon_v2_type_var_samp_order_by - variance: pokemon_v2_type_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_type_avg_fields { - generation_id: Float - id: Float - move_damage_class_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_type" -""" -input pokemon_v2_type_avg_order_by { - generation_id: order_by - id: order_by - move_damage_class_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_type". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_type_bool_exp { - _and: [pokemon_v2_type_bool_exp!] - _not: pokemon_v2_type_bool_exp - _or: [pokemon_v2_type_bool_exp!] - generation_id: Int_comparison_exp - id: Int_comparison_exp - move_damage_class_id: Int_comparison_exp - name: String_comparison_exp - pokemonV2PokemonevolutionsByPartyTypeId: pokemon_v2_pokemonevolution_bool_exp - pokemonV2PokemonevolutionsByPartyTypeId_aggregate: pokemon_v2_pokemonevolution_aggregate_bool_exp - pokemonV2TypeefficaciesByTargetTypeId: pokemon_v2_typeefficacy_bool_exp - pokemonV2TypeefficaciesByTargetTypeId_aggregate: pokemon_v2_typeefficacy_aggregate_bool_exp - pokemonV2TypeefficacypastsByTargetTypeId: pokemon_v2_typeefficacypast_bool_exp - pokemonV2TypeefficacypastsByTargetTypeId_aggregate: pokemon_v2_typeefficacypast_aggregate_bool_exp - pokemon_v2_berries: pokemon_v2_berry_bool_exp - pokemon_v2_berries_aggregate: pokemon_v2_berry_aggregate_bool_exp - pokemon_v2_generation: pokemon_v2_generation_bool_exp - pokemon_v2_movechanges: pokemon_v2_movechange_bool_exp - pokemon_v2_movechanges_aggregate: pokemon_v2_movechange_aggregate_bool_exp - pokemon_v2_movedamageclass: pokemon_v2_movedamageclass_bool_exp - pokemon_v2_moves: pokemon_v2_move_bool_exp - pokemon_v2_moves_aggregate: pokemon_v2_move_aggregate_bool_exp - pokemon_v2_pokemonevolutions: pokemon_v2_pokemonevolution_bool_exp - pokemon_v2_pokemonevolutions_aggregate: pokemon_v2_pokemonevolution_aggregate_bool_exp - pokemon_v2_pokemonformtypes: pokemon_v2_pokemonformtype_bool_exp - pokemon_v2_pokemonformtypes_aggregate: pokemon_v2_pokemonformtype_aggregate_bool_exp - pokemon_v2_pokemontypepasts: pokemon_v2_pokemontypepast_bool_exp - pokemon_v2_pokemontypepasts_aggregate: pokemon_v2_pokemontypepast_aggregate_bool_exp - pokemon_v2_pokemontypes: pokemon_v2_pokemontype_bool_exp - pokemon_v2_pokemontypes_aggregate: pokemon_v2_pokemontype_aggregate_bool_exp - pokemon_v2_typeefficacies: pokemon_v2_typeefficacy_bool_exp - pokemon_v2_typeefficacies_aggregate: pokemon_v2_typeefficacy_aggregate_bool_exp - pokemon_v2_typeefficacypasts: pokemon_v2_typeefficacypast_bool_exp - pokemon_v2_typeefficacypasts_aggregate: pokemon_v2_typeefficacypast_aggregate_bool_exp - pokemon_v2_typegameindices: pokemon_v2_typegameindex_bool_exp - pokemon_v2_typegameindices_aggregate: pokemon_v2_typegameindex_aggregate_bool_exp - pokemon_v2_typenames: pokemon_v2_typename_bool_exp - pokemon_v2_typenames_aggregate: pokemon_v2_typename_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_type_max_fields { - generation_id: Int - id: Int - move_damage_class_id: Int - name: String -} - -""" -order by max() on columns of table "pokemon_v2_type" -""" -input pokemon_v2_type_max_order_by { - generation_id: order_by - id: order_by - move_damage_class_id: order_by - name: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_type_min_fields { - generation_id: Int - id: Int - move_damage_class_id: Int - name: String -} - -""" -order by min() on columns of table "pokemon_v2_type" -""" -input pokemon_v2_type_min_order_by { - generation_id: order_by - id: order_by - move_damage_class_id: order_by - name: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_type".""" -input pokemon_v2_type_order_by { - generation_id: order_by - id: order_by - move_damage_class_id: order_by - name: order_by - pokemonV2PokemonevolutionsByPartyTypeId_aggregate: pokemon_v2_pokemonevolution_aggregate_order_by - pokemonV2TypeefficaciesByTargetTypeId_aggregate: pokemon_v2_typeefficacy_aggregate_order_by - pokemonV2TypeefficacypastsByTargetTypeId_aggregate: pokemon_v2_typeefficacypast_aggregate_order_by - pokemon_v2_berries_aggregate: pokemon_v2_berry_aggregate_order_by - pokemon_v2_generation: pokemon_v2_generation_order_by - pokemon_v2_movechanges_aggregate: pokemon_v2_movechange_aggregate_order_by - pokemon_v2_movedamageclass: pokemon_v2_movedamageclass_order_by - pokemon_v2_moves_aggregate: pokemon_v2_move_aggregate_order_by - pokemon_v2_pokemonevolutions_aggregate: pokemon_v2_pokemonevolution_aggregate_order_by - pokemon_v2_pokemonformtypes_aggregate: pokemon_v2_pokemonformtype_aggregate_order_by - pokemon_v2_pokemontypepasts_aggregate: pokemon_v2_pokemontypepast_aggregate_order_by - pokemon_v2_pokemontypes_aggregate: pokemon_v2_pokemontype_aggregate_order_by - pokemon_v2_typeefficacies_aggregate: pokemon_v2_typeefficacy_aggregate_order_by - pokemon_v2_typeefficacypasts_aggregate: pokemon_v2_typeefficacypast_aggregate_order_by - pokemon_v2_typegameindices_aggregate: pokemon_v2_typegameindex_aggregate_order_by - pokemon_v2_typenames_aggregate: pokemon_v2_typename_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_type" -""" -enum pokemon_v2_type_select_column { - """column name""" - generation_id - - """column name""" - id - - """column name""" - move_damage_class_id - - """column name""" - name -} - -"""aggregate stddev on columns""" -type pokemon_v2_type_stddev_fields { - generation_id: Float - id: Float - move_damage_class_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_type" -""" -input pokemon_v2_type_stddev_order_by { - generation_id: order_by - id: order_by - move_damage_class_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_type_stddev_pop_fields { - generation_id: Float - id: Float - move_damage_class_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_type" -""" -input pokemon_v2_type_stddev_pop_order_by { - generation_id: order_by - id: order_by - move_damage_class_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_type_stddev_samp_fields { - generation_id: Float - id: Float - move_damage_class_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_type" -""" -input pokemon_v2_type_stddev_samp_order_by { - generation_id: order_by - id: order_by - move_damage_class_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_type" -""" -input pokemon_v2_type_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_type_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_type_stream_cursor_value_input { - generation_id: Int - id: Int - move_damage_class_id: Int - name: String -} - -"""aggregate sum on columns""" -type pokemon_v2_type_sum_fields { - generation_id: Int - id: Int - move_damage_class_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_type" -""" -input pokemon_v2_type_sum_order_by { - generation_id: order_by - id: order_by - move_damage_class_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_type_var_pop_fields { - generation_id: Float - id: Float - move_damage_class_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_type" -""" -input pokemon_v2_type_var_pop_order_by { - generation_id: order_by - id: order_by - move_damage_class_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_type_var_samp_fields { - generation_id: Float - id: Float - move_damage_class_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_type" -""" -input pokemon_v2_type_var_samp_order_by { - generation_id: order_by - id: order_by - move_damage_class_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_type_variance_fields { - generation_id: Float - id: Float - move_damage_class_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_type" -""" -input pokemon_v2_type_variance_order_by { - generation_id: order_by - id: order_by - move_damage_class_id: order_by -} - -""" -columns and relationships of "pokemon_v2_typeefficacy" -""" -type pokemon_v2_typeefficacy { - damage_factor: Int! - damage_type_id: Int - id: Int! - - """An object relationship""" - pokemonV2TypeByTargetTypeId: pokemon_v2_type - - """An object relationship""" - pokemon_v2_type: pokemon_v2_type - target_type_id: Int -} - -""" -aggregated selection of "pokemon_v2_typeefficacy" -""" -type pokemon_v2_typeefficacy_aggregate { - aggregate: pokemon_v2_typeefficacy_aggregate_fields - nodes: [pokemon_v2_typeefficacy!]! -} - -input pokemon_v2_typeefficacy_aggregate_bool_exp { - count: pokemon_v2_typeefficacy_aggregate_bool_exp_count -} - -input pokemon_v2_typeefficacy_aggregate_bool_exp_count { - arguments: [pokemon_v2_typeefficacy_select_column!] - distinct: Boolean - filter: pokemon_v2_typeefficacy_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_typeefficacy" -""" -type pokemon_v2_typeefficacy_aggregate_fields { - avg: pokemon_v2_typeefficacy_avg_fields - count(columns: [pokemon_v2_typeefficacy_select_column!], distinct: Boolean): Int! - max: pokemon_v2_typeefficacy_max_fields - min: pokemon_v2_typeefficacy_min_fields - stddev: pokemon_v2_typeefficacy_stddev_fields - stddev_pop: pokemon_v2_typeefficacy_stddev_pop_fields - stddev_samp: pokemon_v2_typeefficacy_stddev_samp_fields - sum: pokemon_v2_typeefficacy_sum_fields - var_pop: pokemon_v2_typeefficacy_var_pop_fields - var_samp: pokemon_v2_typeefficacy_var_samp_fields - variance: pokemon_v2_typeefficacy_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_typeefficacy" -""" -input pokemon_v2_typeefficacy_aggregate_order_by { - avg: pokemon_v2_typeefficacy_avg_order_by - count: order_by - max: pokemon_v2_typeefficacy_max_order_by - min: pokemon_v2_typeefficacy_min_order_by - stddev: pokemon_v2_typeefficacy_stddev_order_by - stddev_pop: pokemon_v2_typeefficacy_stddev_pop_order_by - stddev_samp: pokemon_v2_typeefficacy_stddev_samp_order_by - sum: pokemon_v2_typeefficacy_sum_order_by - var_pop: pokemon_v2_typeefficacy_var_pop_order_by - var_samp: pokemon_v2_typeefficacy_var_samp_order_by - variance: pokemon_v2_typeefficacy_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_typeefficacy_avg_fields { - damage_factor: Float - damage_type_id: Float - id: Float - target_type_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_typeefficacy" -""" -input pokemon_v2_typeefficacy_avg_order_by { - damage_factor: order_by - damage_type_id: order_by - id: order_by - target_type_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_typeefficacy". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_typeefficacy_bool_exp { - _and: [pokemon_v2_typeefficacy_bool_exp!] - _not: pokemon_v2_typeefficacy_bool_exp - _or: [pokemon_v2_typeefficacy_bool_exp!] - damage_factor: Int_comparison_exp - damage_type_id: Int_comparison_exp - id: Int_comparison_exp - pokemonV2TypeByTargetTypeId: pokemon_v2_type_bool_exp - pokemon_v2_type: pokemon_v2_type_bool_exp - target_type_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_typeefficacy_max_fields { - damage_factor: Int - damage_type_id: Int - id: Int - target_type_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_typeefficacy" -""" -input pokemon_v2_typeefficacy_max_order_by { - damage_factor: order_by - damage_type_id: order_by - id: order_by - target_type_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_typeefficacy_min_fields { - damage_factor: Int - damage_type_id: Int - id: Int - target_type_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_typeefficacy" -""" -input pokemon_v2_typeefficacy_min_order_by { - damage_factor: order_by - damage_type_id: order_by - id: order_by - target_type_id: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_typeefficacy".""" -input pokemon_v2_typeefficacy_order_by { - damage_factor: order_by - damage_type_id: order_by - id: order_by - pokemonV2TypeByTargetTypeId: pokemon_v2_type_order_by - pokemon_v2_type: pokemon_v2_type_order_by - target_type_id: order_by -} - -""" -select columns of table "pokemon_v2_typeefficacy" -""" -enum pokemon_v2_typeefficacy_select_column { - """column name""" - damage_factor - - """column name""" - damage_type_id - - """column name""" - id - - """column name""" - target_type_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_typeefficacy_stddev_fields { - damage_factor: Float - damage_type_id: Float - id: Float - target_type_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_typeefficacy" -""" -input pokemon_v2_typeefficacy_stddev_order_by { - damage_factor: order_by - damage_type_id: order_by - id: order_by - target_type_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_typeefficacy_stddev_pop_fields { - damage_factor: Float - damage_type_id: Float - id: Float - target_type_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_typeefficacy" -""" -input pokemon_v2_typeefficacy_stddev_pop_order_by { - damage_factor: order_by - damage_type_id: order_by - id: order_by - target_type_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_typeefficacy_stddev_samp_fields { - damage_factor: Float - damage_type_id: Float - id: Float - target_type_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_typeefficacy" -""" -input pokemon_v2_typeefficacy_stddev_samp_order_by { - damage_factor: order_by - damage_type_id: order_by - id: order_by - target_type_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_typeefficacy" -""" -input pokemon_v2_typeefficacy_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_typeefficacy_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_typeefficacy_stream_cursor_value_input { - damage_factor: Int - damage_type_id: Int - id: Int - target_type_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_typeefficacy_sum_fields { - damage_factor: Int - damage_type_id: Int - id: Int - target_type_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_typeefficacy" -""" -input pokemon_v2_typeefficacy_sum_order_by { - damage_factor: order_by - damage_type_id: order_by - id: order_by - target_type_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_typeefficacy_var_pop_fields { - damage_factor: Float - damage_type_id: Float - id: Float - target_type_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_typeefficacy" -""" -input pokemon_v2_typeefficacy_var_pop_order_by { - damage_factor: order_by - damage_type_id: order_by - id: order_by - target_type_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_typeefficacy_var_samp_fields { - damage_factor: Float - damage_type_id: Float - id: Float - target_type_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_typeefficacy" -""" -input pokemon_v2_typeefficacy_var_samp_order_by { - damage_factor: order_by - damage_type_id: order_by - id: order_by - target_type_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_typeefficacy_variance_fields { - damage_factor: Float - damage_type_id: Float - id: Float - target_type_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_typeefficacy" -""" -input pokemon_v2_typeefficacy_variance_order_by { - damage_factor: order_by - damage_type_id: order_by - id: order_by - target_type_id: order_by -} - -""" -columns and relationships of "pokemon_v2_typeefficacypast" -""" -type pokemon_v2_typeefficacypast { - damage_factor: Int! - damage_type_id: Int - generation_id: Int - id: Int! - - """An object relationship""" - pokemonV2TypeByTargetTypeId: pokemon_v2_type - - """An object relationship""" - pokemon_v2_generation: pokemon_v2_generation - - """An object relationship""" - pokemon_v2_type: pokemon_v2_type - target_type_id: Int -} - -""" -aggregated selection of "pokemon_v2_typeefficacypast" -""" -type pokemon_v2_typeefficacypast_aggregate { - aggregate: pokemon_v2_typeefficacypast_aggregate_fields - nodes: [pokemon_v2_typeefficacypast!]! -} - -input pokemon_v2_typeefficacypast_aggregate_bool_exp { - count: pokemon_v2_typeefficacypast_aggregate_bool_exp_count -} - -input pokemon_v2_typeefficacypast_aggregate_bool_exp_count { - arguments: [pokemon_v2_typeefficacypast_select_column!] - distinct: Boolean - filter: pokemon_v2_typeefficacypast_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_typeefficacypast" -""" -type pokemon_v2_typeefficacypast_aggregate_fields { - avg: pokemon_v2_typeefficacypast_avg_fields - count(columns: [pokemon_v2_typeefficacypast_select_column!], distinct: Boolean): Int! - max: pokemon_v2_typeefficacypast_max_fields - min: pokemon_v2_typeefficacypast_min_fields - stddev: pokemon_v2_typeefficacypast_stddev_fields - stddev_pop: pokemon_v2_typeefficacypast_stddev_pop_fields - stddev_samp: pokemon_v2_typeefficacypast_stddev_samp_fields - sum: pokemon_v2_typeefficacypast_sum_fields - var_pop: pokemon_v2_typeefficacypast_var_pop_fields - var_samp: pokemon_v2_typeefficacypast_var_samp_fields - variance: pokemon_v2_typeefficacypast_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_typeefficacypast" -""" -input pokemon_v2_typeefficacypast_aggregate_order_by { - avg: pokemon_v2_typeefficacypast_avg_order_by - count: order_by - max: pokemon_v2_typeefficacypast_max_order_by - min: pokemon_v2_typeefficacypast_min_order_by - stddev: pokemon_v2_typeefficacypast_stddev_order_by - stddev_pop: pokemon_v2_typeefficacypast_stddev_pop_order_by - stddev_samp: pokemon_v2_typeefficacypast_stddev_samp_order_by - sum: pokemon_v2_typeefficacypast_sum_order_by - var_pop: pokemon_v2_typeefficacypast_var_pop_order_by - var_samp: pokemon_v2_typeefficacypast_var_samp_order_by - variance: pokemon_v2_typeefficacypast_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_typeefficacypast_avg_fields { - damage_factor: Float - damage_type_id: Float - generation_id: Float - id: Float - target_type_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_typeefficacypast" -""" -input pokemon_v2_typeefficacypast_avg_order_by { - damage_factor: order_by - damage_type_id: order_by - generation_id: order_by - id: order_by - target_type_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_typeefficacypast". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_typeefficacypast_bool_exp { - _and: [pokemon_v2_typeefficacypast_bool_exp!] - _not: pokemon_v2_typeefficacypast_bool_exp - _or: [pokemon_v2_typeefficacypast_bool_exp!] - damage_factor: Int_comparison_exp - damage_type_id: Int_comparison_exp - generation_id: Int_comparison_exp - id: Int_comparison_exp - pokemonV2TypeByTargetTypeId: pokemon_v2_type_bool_exp - pokemon_v2_generation: pokemon_v2_generation_bool_exp - pokemon_v2_type: pokemon_v2_type_bool_exp - target_type_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_typeefficacypast_max_fields { - damage_factor: Int - damage_type_id: Int - generation_id: Int - id: Int - target_type_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_typeefficacypast" -""" -input pokemon_v2_typeefficacypast_max_order_by { - damage_factor: order_by - damage_type_id: order_by - generation_id: order_by - id: order_by - target_type_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_typeefficacypast_min_fields { - damage_factor: Int - damage_type_id: Int - generation_id: Int - id: Int - target_type_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_typeefficacypast" -""" -input pokemon_v2_typeefficacypast_min_order_by { - damage_factor: order_by - damage_type_id: order_by - generation_id: order_by - id: order_by - target_type_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_typeefficacypast". -""" -input pokemon_v2_typeefficacypast_order_by { - damage_factor: order_by - damage_type_id: order_by - generation_id: order_by - id: order_by - pokemonV2TypeByTargetTypeId: pokemon_v2_type_order_by - pokemon_v2_generation: pokemon_v2_generation_order_by - pokemon_v2_type: pokemon_v2_type_order_by - target_type_id: order_by -} - -""" -select columns of table "pokemon_v2_typeefficacypast" -""" -enum pokemon_v2_typeefficacypast_select_column { - """column name""" - damage_factor - - """column name""" - damage_type_id - - """column name""" - generation_id - - """column name""" - id - - """column name""" - target_type_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_typeefficacypast_stddev_fields { - damage_factor: Float - damage_type_id: Float - generation_id: Float - id: Float - target_type_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_typeefficacypast" -""" -input pokemon_v2_typeefficacypast_stddev_order_by { - damage_factor: order_by - damage_type_id: order_by - generation_id: order_by - id: order_by - target_type_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_typeefficacypast_stddev_pop_fields { - damage_factor: Float - damage_type_id: Float - generation_id: Float - id: Float - target_type_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_typeefficacypast" -""" -input pokemon_v2_typeefficacypast_stddev_pop_order_by { - damage_factor: order_by - damage_type_id: order_by - generation_id: order_by - id: order_by - target_type_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_typeefficacypast_stddev_samp_fields { - damage_factor: Float - damage_type_id: Float - generation_id: Float - id: Float - target_type_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_typeefficacypast" -""" -input pokemon_v2_typeefficacypast_stddev_samp_order_by { - damage_factor: order_by - damage_type_id: order_by - generation_id: order_by - id: order_by - target_type_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_typeefficacypast" -""" -input pokemon_v2_typeefficacypast_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_typeefficacypast_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_typeefficacypast_stream_cursor_value_input { - damage_factor: Int - damage_type_id: Int - generation_id: Int - id: Int - target_type_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_typeefficacypast_sum_fields { - damage_factor: Int - damage_type_id: Int - generation_id: Int - id: Int - target_type_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_typeefficacypast" -""" -input pokemon_v2_typeefficacypast_sum_order_by { - damage_factor: order_by - damage_type_id: order_by - generation_id: order_by - id: order_by - target_type_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_typeefficacypast_var_pop_fields { - damage_factor: Float - damage_type_id: Float - generation_id: Float - id: Float - target_type_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_typeefficacypast" -""" -input pokemon_v2_typeefficacypast_var_pop_order_by { - damage_factor: order_by - damage_type_id: order_by - generation_id: order_by - id: order_by - target_type_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_typeefficacypast_var_samp_fields { - damage_factor: Float - damage_type_id: Float - generation_id: Float - id: Float - target_type_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_typeefficacypast" -""" -input pokemon_v2_typeefficacypast_var_samp_order_by { - damage_factor: order_by - damage_type_id: order_by - generation_id: order_by - id: order_by - target_type_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_typeefficacypast_variance_fields { - damage_factor: Float - damage_type_id: Float - generation_id: Float - id: Float - target_type_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_typeefficacypast" -""" -input pokemon_v2_typeefficacypast_variance_order_by { - damage_factor: order_by - damage_type_id: order_by - generation_id: order_by - id: order_by - target_type_id: order_by -} - -""" -columns and relationships of "pokemon_v2_typegameindex" -""" -type pokemon_v2_typegameindex { - game_index: Int! - generation_id: Int - id: Int! - - """An object relationship""" - pokemon_v2_generation: pokemon_v2_generation - - """An object relationship""" - pokemon_v2_type: pokemon_v2_type - type_id: Int -} - -""" -aggregated selection of "pokemon_v2_typegameindex" -""" -type pokemon_v2_typegameindex_aggregate { - aggregate: pokemon_v2_typegameindex_aggregate_fields - nodes: [pokemon_v2_typegameindex!]! -} - -input pokemon_v2_typegameindex_aggregate_bool_exp { - count: pokemon_v2_typegameindex_aggregate_bool_exp_count -} - -input pokemon_v2_typegameindex_aggregate_bool_exp_count { - arguments: [pokemon_v2_typegameindex_select_column!] - distinct: Boolean - filter: pokemon_v2_typegameindex_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_typegameindex" -""" -type pokemon_v2_typegameindex_aggregate_fields { - avg: pokemon_v2_typegameindex_avg_fields - count(columns: [pokemon_v2_typegameindex_select_column!], distinct: Boolean): Int! - max: pokemon_v2_typegameindex_max_fields - min: pokemon_v2_typegameindex_min_fields - stddev: pokemon_v2_typegameindex_stddev_fields - stddev_pop: pokemon_v2_typegameindex_stddev_pop_fields - stddev_samp: pokemon_v2_typegameindex_stddev_samp_fields - sum: pokemon_v2_typegameindex_sum_fields - var_pop: pokemon_v2_typegameindex_var_pop_fields - var_samp: pokemon_v2_typegameindex_var_samp_fields - variance: pokemon_v2_typegameindex_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_typegameindex" -""" -input pokemon_v2_typegameindex_aggregate_order_by { - avg: pokemon_v2_typegameindex_avg_order_by - count: order_by - max: pokemon_v2_typegameindex_max_order_by - min: pokemon_v2_typegameindex_min_order_by - stddev: pokemon_v2_typegameindex_stddev_order_by - stddev_pop: pokemon_v2_typegameindex_stddev_pop_order_by - stddev_samp: pokemon_v2_typegameindex_stddev_samp_order_by - sum: pokemon_v2_typegameindex_sum_order_by - var_pop: pokemon_v2_typegameindex_var_pop_order_by - var_samp: pokemon_v2_typegameindex_var_samp_order_by - variance: pokemon_v2_typegameindex_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_typegameindex_avg_fields { - game_index: Float - generation_id: Float - id: Float - type_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_typegameindex" -""" -input pokemon_v2_typegameindex_avg_order_by { - game_index: order_by - generation_id: order_by - id: order_by - type_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_typegameindex". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_typegameindex_bool_exp { - _and: [pokemon_v2_typegameindex_bool_exp!] - _not: pokemon_v2_typegameindex_bool_exp - _or: [pokemon_v2_typegameindex_bool_exp!] - game_index: Int_comparison_exp - generation_id: Int_comparison_exp - id: Int_comparison_exp - pokemon_v2_generation: pokemon_v2_generation_bool_exp - pokemon_v2_type: pokemon_v2_type_bool_exp - type_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_typegameindex_max_fields { - game_index: Int - generation_id: Int - id: Int - type_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_typegameindex" -""" -input pokemon_v2_typegameindex_max_order_by { - game_index: order_by - generation_id: order_by - id: order_by - type_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_typegameindex_min_fields { - game_index: Int - generation_id: Int - id: Int - type_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_typegameindex" -""" -input pokemon_v2_typegameindex_min_order_by { - game_index: order_by - generation_id: order_by - id: order_by - type_id: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_typegameindex".""" -input pokemon_v2_typegameindex_order_by { - game_index: order_by - generation_id: order_by - id: order_by - pokemon_v2_generation: pokemon_v2_generation_order_by - pokemon_v2_type: pokemon_v2_type_order_by - type_id: order_by -} - -""" -select columns of table "pokemon_v2_typegameindex" -""" -enum pokemon_v2_typegameindex_select_column { - """column name""" - game_index - - """column name""" - generation_id - - """column name""" - id - - """column name""" - type_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_typegameindex_stddev_fields { - game_index: Float - generation_id: Float - id: Float - type_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_typegameindex" -""" -input pokemon_v2_typegameindex_stddev_order_by { - game_index: order_by - generation_id: order_by - id: order_by - type_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_typegameindex_stddev_pop_fields { - game_index: Float - generation_id: Float - id: Float - type_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_typegameindex" -""" -input pokemon_v2_typegameindex_stddev_pop_order_by { - game_index: order_by - generation_id: order_by - id: order_by - type_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_typegameindex_stddev_samp_fields { - game_index: Float - generation_id: Float - id: Float - type_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_typegameindex" -""" -input pokemon_v2_typegameindex_stddev_samp_order_by { - game_index: order_by - generation_id: order_by - id: order_by - type_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_typegameindex" -""" -input pokemon_v2_typegameindex_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_typegameindex_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_typegameindex_stream_cursor_value_input { - game_index: Int - generation_id: Int - id: Int - type_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_typegameindex_sum_fields { - game_index: Int - generation_id: Int - id: Int - type_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_typegameindex" -""" -input pokemon_v2_typegameindex_sum_order_by { - game_index: order_by - generation_id: order_by - id: order_by - type_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_typegameindex_var_pop_fields { - game_index: Float - generation_id: Float - id: Float - type_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_typegameindex" -""" -input pokemon_v2_typegameindex_var_pop_order_by { - game_index: order_by - generation_id: order_by - id: order_by - type_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_typegameindex_var_samp_fields { - game_index: Float - generation_id: Float - id: Float - type_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_typegameindex" -""" -input pokemon_v2_typegameindex_var_samp_order_by { - game_index: order_by - generation_id: order_by - id: order_by - type_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_typegameindex_variance_fields { - game_index: Float - generation_id: Float - id: Float - type_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_typegameindex" -""" -input pokemon_v2_typegameindex_variance_order_by { - game_index: order_by - generation_id: order_by - id: order_by - type_id: order_by -} - -""" -columns and relationships of "pokemon_v2_typename" -""" -type pokemon_v2_typename { - id: Int! - language_id: Int - name: String! - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_type: pokemon_v2_type - type_id: Int -} - -""" -aggregated selection of "pokemon_v2_typename" -""" -type pokemon_v2_typename_aggregate { - aggregate: pokemon_v2_typename_aggregate_fields - nodes: [pokemon_v2_typename!]! -} - -input pokemon_v2_typename_aggregate_bool_exp { - count: pokemon_v2_typename_aggregate_bool_exp_count -} - -input pokemon_v2_typename_aggregate_bool_exp_count { - arguments: [pokemon_v2_typename_select_column!] - distinct: Boolean - filter: pokemon_v2_typename_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_typename" -""" -type pokemon_v2_typename_aggregate_fields { - avg: pokemon_v2_typename_avg_fields - count(columns: [pokemon_v2_typename_select_column!], distinct: Boolean): Int! - max: pokemon_v2_typename_max_fields - min: pokemon_v2_typename_min_fields - stddev: pokemon_v2_typename_stddev_fields - stddev_pop: pokemon_v2_typename_stddev_pop_fields - stddev_samp: pokemon_v2_typename_stddev_samp_fields - sum: pokemon_v2_typename_sum_fields - var_pop: pokemon_v2_typename_var_pop_fields - var_samp: pokemon_v2_typename_var_samp_fields - variance: pokemon_v2_typename_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_typename" -""" -input pokemon_v2_typename_aggregate_order_by { - avg: pokemon_v2_typename_avg_order_by - count: order_by - max: pokemon_v2_typename_max_order_by - min: pokemon_v2_typename_min_order_by - stddev: pokemon_v2_typename_stddev_order_by - stddev_pop: pokemon_v2_typename_stddev_pop_order_by - stddev_samp: pokemon_v2_typename_stddev_samp_order_by - sum: pokemon_v2_typename_sum_order_by - var_pop: pokemon_v2_typename_var_pop_order_by - var_samp: pokemon_v2_typename_var_samp_order_by - variance: pokemon_v2_typename_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_typename_avg_fields { - id: Float - language_id: Float - type_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_typename" -""" -input pokemon_v2_typename_avg_order_by { - id: order_by - language_id: order_by - type_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_typename". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_typename_bool_exp { - _and: [pokemon_v2_typename_bool_exp!] - _not: pokemon_v2_typename_bool_exp - _or: [pokemon_v2_typename_bool_exp!] - id: Int_comparison_exp - language_id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_type: pokemon_v2_type_bool_exp - type_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_typename_max_fields { - id: Int - language_id: Int - name: String - type_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_typename" -""" -input pokemon_v2_typename_max_order_by { - id: order_by - language_id: order_by - name: order_by - type_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_typename_min_fields { - id: Int - language_id: Int - name: String - type_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_typename" -""" -input pokemon_v2_typename_min_order_by { - id: order_by - language_id: order_by - name: order_by - type_id: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_typename".""" -input pokemon_v2_typename_order_by { - id: order_by - language_id: order_by - name: order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_type: pokemon_v2_type_order_by - type_id: order_by -} - -""" -select columns of table "pokemon_v2_typename" -""" -enum pokemon_v2_typename_select_column { - """column name""" - id - - """column name""" - language_id - - """column name""" - name - - """column name""" - type_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_typename_stddev_fields { - id: Float - language_id: Float - type_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_typename" -""" -input pokemon_v2_typename_stddev_order_by { - id: order_by - language_id: order_by - type_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_typename_stddev_pop_fields { - id: Float - language_id: Float - type_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_typename" -""" -input pokemon_v2_typename_stddev_pop_order_by { - id: order_by - language_id: order_by - type_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_typename_stddev_samp_fields { - id: Float - language_id: Float - type_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_typename" -""" -input pokemon_v2_typename_stddev_samp_order_by { - id: order_by - language_id: order_by - type_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_typename" -""" -input pokemon_v2_typename_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_typename_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_typename_stream_cursor_value_input { - id: Int - language_id: Int - name: String - type_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_typename_sum_fields { - id: Int - language_id: Int - type_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_typename" -""" -input pokemon_v2_typename_sum_order_by { - id: order_by - language_id: order_by - type_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_typename_var_pop_fields { - id: Float - language_id: Float - type_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_typename" -""" -input pokemon_v2_typename_var_pop_order_by { - id: order_by - language_id: order_by - type_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_typename_var_samp_fields { - id: Float - language_id: Float - type_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_typename" -""" -input pokemon_v2_typename_var_samp_order_by { - id: order_by - language_id: order_by - type_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_typename_variance_fields { - id: Float - language_id: Float - type_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_typename" -""" -input pokemon_v2_typename_variance_order_by { - id: order_by - language_id: order_by - type_id: order_by -} - -""" -columns and relationships of "pokemon_v2_version" -""" -type pokemon_v2_version { - id: Int! - name: String! - - """An array relationship""" - pokemon_v2_encounters( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounter_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounter_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounter_bool_exp - ): [pokemon_v2_encounter!]! - - """An aggregate relationship""" - pokemon_v2_encounters_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounter_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounter_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounter_bool_exp - ): pokemon_v2_encounter_aggregate! - - """An array relationship""" - pokemon_v2_locationareaencounterrates( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationareaencounterrate_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationareaencounterrate_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationareaencounterrate_bool_exp - ): [pokemon_v2_locationareaencounterrate!]! - - """An aggregate relationship""" - pokemon_v2_locationareaencounterrates_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationareaencounterrate_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationareaencounterrate_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationareaencounterrate_bool_exp - ): pokemon_v2_locationareaencounterrate_aggregate! - - """An array relationship""" - pokemon_v2_pokemongameindices( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemongameindex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemongameindex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemongameindex_bool_exp - ): [pokemon_v2_pokemongameindex!]! - - """An aggregate relationship""" - pokemon_v2_pokemongameindices_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemongameindex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemongameindex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemongameindex_bool_exp - ): pokemon_v2_pokemongameindex_aggregate! - - """An array relationship""" - pokemon_v2_pokemonitems( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonitem_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonitem_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonitem_bool_exp - ): [pokemon_v2_pokemonitem!]! - - """An aggregate relationship""" - pokemon_v2_pokemonitems_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonitem_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonitem_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonitem_bool_exp - ): pokemon_v2_pokemonitem_aggregate! - - """An array relationship""" - pokemon_v2_pokemonspeciesflavortexts( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspeciesflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspeciesflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspeciesflavortext_bool_exp - ): [pokemon_v2_pokemonspeciesflavortext!]! - - """An aggregate relationship""" - pokemon_v2_pokemonspeciesflavortexts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspeciesflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspeciesflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspeciesflavortext_bool_exp - ): pokemon_v2_pokemonspeciesflavortext_aggregate! - - """An object relationship""" - pokemon_v2_versiongroup: pokemon_v2_versiongroup - - """An array relationship""" - pokemon_v2_versionnames( - """distinct select on columns""" - distinct_on: [pokemon_v2_versionname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_versionname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_versionname_bool_exp - ): [pokemon_v2_versionname!]! - - """An aggregate relationship""" - pokemon_v2_versionnames_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_versionname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_versionname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_versionname_bool_exp - ): pokemon_v2_versionname_aggregate! - version_group_id: Int -} - -""" -aggregated selection of "pokemon_v2_version" -""" -type pokemon_v2_version_aggregate { - aggregate: pokemon_v2_version_aggregate_fields - nodes: [pokemon_v2_version!]! -} - -input pokemon_v2_version_aggregate_bool_exp { - count: pokemon_v2_version_aggregate_bool_exp_count -} - -input pokemon_v2_version_aggregate_bool_exp_count { - arguments: [pokemon_v2_version_select_column!] - distinct: Boolean - filter: pokemon_v2_version_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_version" -""" -type pokemon_v2_version_aggregate_fields { - avg: pokemon_v2_version_avg_fields - count(columns: [pokemon_v2_version_select_column!], distinct: Boolean): Int! - max: pokemon_v2_version_max_fields - min: pokemon_v2_version_min_fields - stddev: pokemon_v2_version_stddev_fields - stddev_pop: pokemon_v2_version_stddev_pop_fields - stddev_samp: pokemon_v2_version_stddev_samp_fields - sum: pokemon_v2_version_sum_fields - var_pop: pokemon_v2_version_var_pop_fields - var_samp: pokemon_v2_version_var_samp_fields - variance: pokemon_v2_version_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_version" -""" -input pokemon_v2_version_aggregate_order_by { - avg: pokemon_v2_version_avg_order_by - count: order_by - max: pokemon_v2_version_max_order_by - min: pokemon_v2_version_min_order_by - stddev: pokemon_v2_version_stddev_order_by - stddev_pop: pokemon_v2_version_stddev_pop_order_by - stddev_samp: pokemon_v2_version_stddev_samp_order_by - sum: pokemon_v2_version_sum_order_by - var_pop: pokemon_v2_version_var_pop_order_by - var_samp: pokemon_v2_version_var_samp_order_by - variance: pokemon_v2_version_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_version_avg_fields { - id: Float - version_group_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_version" -""" -input pokemon_v2_version_avg_order_by { - id: order_by - version_group_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_version". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_version_bool_exp { - _and: [pokemon_v2_version_bool_exp!] - _not: pokemon_v2_version_bool_exp - _or: [pokemon_v2_version_bool_exp!] - id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_encounters: pokemon_v2_encounter_bool_exp - pokemon_v2_encounters_aggregate: pokemon_v2_encounter_aggregate_bool_exp - pokemon_v2_locationareaencounterrates: pokemon_v2_locationareaencounterrate_bool_exp - pokemon_v2_locationareaencounterrates_aggregate: pokemon_v2_locationareaencounterrate_aggregate_bool_exp - pokemon_v2_pokemongameindices: pokemon_v2_pokemongameindex_bool_exp - pokemon_v2_pokemongameindices_aggregate: pokemon_v2_pokemongameindex_aggregate_bool_exp - pokemon_v2_pokemonitems: pokemon_v2_pokemonitem_bool_exp - pokemon_v2_pokemonitems_aggregate: pokemon_v2_pokemonitem_aggregate_bool_exp - pokemon_v2_pokemonspeciesflavortexts: pokemon_v2_pokemonspeciesflavortext_bool_exp - pokemon_v2_pokemonspeciesflavortexts_aggregate: pokemon_v2_pokemonspeciesflavortext_aggregate_bool_exp - pokemon_v2_versiongroup: pokemon_v2_versiongroup_bool_exp - pokemon_v2_versionnames: pokemon_v2_versionname_bool_exp - pokemon_v2_versionnames_aggregate: pokemon_v2_versionname_aggregate_bool_exp - version_group_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_version_max_fields { - id: Int - name: String - version_group_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_version" -""" -input pokemon_v2_version_max_order_by { - id: order_by - name: order_by - version_group_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_version_min_fields { - id: Int - name: String - version_group_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_version" -""" -input pokemon_v2_version_min_order_by { - id: order_by - name: order_by - version_group_id: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_version".""" -input pokemon_v2_version_order_by { - id: order_by - name: order_by - pokemon_v2_encounters_aggregate: pokemon_v2_encounter_aggregate_order_by - pokemon_v2_locationareaencounterrates_aggregate: pokemon_v2_locationareaencounterrate_aggregate_order_by - pokemon_v2_pokemongameindices_aggregate: pokemon_v2_pokemongameindex_aggregate_order_by - pokemon_v2_pokemonitems_aggregate: pokemon_v2_pokemonitem_aggregate_order_by - pokemon_v2_pokemonspeciesflavortexts_aggregate: pokemon_v2_pokemonspeciesflavortext_aggregate_order_by - pokemon_v2_versiongroup: pokemon_v2_versiongroup_order_by - pokemon_v2_versionnames_aggregate: pokemon_v2_versionname_aggregate_order_by - version_group_id: order_by -} - -""" -select columns of table "pokemon_v2_version" -""" -enum pokemon_v2_version_select_column { - """column name""" - id - - """column name""" - name - - """column name""" - version_group_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_version_stddev_fields { - id: Float - version_group_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_version" -""" -input pokemon_v2_version_stddev_order_by { - id: order_by - version_group_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_version_stddev_pop_fields { - id: Float - version_group_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_version" -""" -input pokemon_v2_version_stddev_pop_order_by { - id: order_by - version_group_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_version_stddev_samp_fields { - id: Float - version_group_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_version" -""" -input pokemon_v2_version_stddev_samp_order_by { - id: order_by - version_group_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_version" -""" -input pokemon_v2_version_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_version_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_version_stream_cursor_value_input { - id: Int - name: String - version_group_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_version_sum_fields { - id: Int - version_group_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_version" -""" -input pokemon_v2_version_sum_order_by { - id: order_by - version_group_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_version_var_pop_fields { - id: Float - version_group_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_version" -""" -input pokemon_v2_version_var_pop_order_by { - id: order_by - version_group_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_version_var_samp_fields { - id: Float - version_group_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_version" -""" -input pokemon_v2_version_var_samp_order_by { - id: order_by - version_group_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_version_variance_fields { - id: Float - version_group_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_version" -""" -input pokemon_v2_version_variance_order_by { - id: order_by - version_group_id: order_by -} - -""" -columns and relationships of "pokemon_v2_versiongroup" -""" -type pokemon_v2_versiongroup { - generation_id: Int - id: Int! - name: String! - order: Int - - """An array relationship""" - pokemon_v2_abilitychanges( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilitychange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilitychange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilitychange_bool_exp - ): [pokemon_v2_abilitychange!]! - - """An aggregate relationship""" - pokemon_v2_abilitychanges_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilitychange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilitychange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilitychange_bool_exp - ): pokemon_v2_abilitychange_aggregate! - - """An array relationship""" - pokemon_v2_abilityflavortexts( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilityflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilityflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilityflavortext_bool_exp - ): [pokemon_v2_abilityflavortext!]! - - """An aggregate relationship""" - pokemon_v2_abilityflavortexts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilityflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilityflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilityflavortext_bool_exp - ): pokemon_v2_abilityflavortext_aggregate! - - """An array relationship""" - pokemon_v2_encounterslots( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterslot_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterslot_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterslot_bool_exp - ): [pokemon_v2_encounterslot!]! - - """An aggregate relationship""" - pokemon_v2_encounterslots_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterslot_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterslot_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterslot_bool_exp - ): pokemon_v2_encounterslot_aggregate! - - """An object relationship""" - pokemon_v2_generation: pokemon_v2_generation - - """An array relationship""" - pokemon_v2_itemflavortexts( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemflavortext_bool_exp - ): [pokemon_v2_itemflavortext!]! - - """An aggregate relationship""" - pokemon_v2_itemflavortexts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemflavortext_bool_exp - ): pokemon_v2_itemflavortext_aggregate! - - """An array relationship""" - pokemon_v2_machines( - """distinct select on columns""" - distinct_on: [pokemon_v2_machine_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_machine_order_by!] - - """filter the rows returned""" - where: pokemon_v2_machine_bool_exp - ): [pokemon_v2_machine!]! - - """An aggregate relationship""" - pokemon_v2_machines_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_machine_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_machine_order_by!] - - """filter the rows returned""" - where: pokemon_v2_machine_bool_exp - ): pokemon_v2_machine_aggregate! - - """An array relationship""" - pokemon_v2_movechanges( - """distinct select on columns""" - distinct_on: [pokemon_v2_movechange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movechange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movechange_bool_exp - ): [pokemon_v2_movechange!]! - - """An aggregate relationship""" - pokemon_v2_movechanges_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movechange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movechange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movechange_bool_exp - ): pokemon_v2_movechange_aggregate! - - """An array relationship""" - pokemon_v2_moveeffectchanges( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveeffectchange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveeffectchange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveeffectchange_bool_exp - ): [pokemon_v2_moveeffectchange!]! - - """An aggregate relationship""" - pokemon_v2_moveeffectchanges_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveeffectchange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveeffectchange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveeffectchange_bool_exp - ): pokemon_v2_moveeffectchange_aggregate! - - """An array relationship""" - pokemon_v2_moveflavortexts( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveflavortext_bool_exp - ): [pokemon_v2_moveflavortext!]! - - """An aggregate relationship""" - pokemon_v2_moveflavortexts_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveflavortext_bool_exp - ): pokemon_v2_moveflavortext_aggregate! - - """An array relationship""" - pokemon_v2_pokedexversiongroups( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokedexversiongroup_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokedexversiongroup_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokedexversiongroup_bool_exp - ): [pokemon_v2_pokedexversiongroup!]! - - """An aggregate relationship""" - pokemon_v2_pokedexversiongroups_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokedexversiongroup_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokedexversiongroup_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokedexversiongroup_bool_exp - ): pokemon_v2_pokedexversiongroup_aggregate! - - """An array relationship""" - pokemon_v2_pokemonforms( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonform_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonform_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonform_bool_exp - ): [pokemon_v2_pokemonform!]! - - """An aggregate relationship""" - pokemon_v2_pokemonforms_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonform_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonform_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonform_bool_exp - ): pokemon_v2_pokemonform_aggregate! - - """An array relationship""" - pokemon_v2_pokemonmoves( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonmove_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonmove_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonmove_bool_exp - ): [pokemon_v2_pokemonmove!]! - - """An aggregate relationship""" - pokemon_v2_pokemonmoves_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonmove_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonmove_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonmove_bool_exp - ): pokemon_v2_pokemonmove_aggregate! - - """An array relationship""" - pokemon_v2_versiongroupmovelearnmethods( - """distinct select on columns""" - distinct_on: [pokemon_v2_versiongroupmovelearnmethod_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_versiongroupmovelearnmethod_order_by!] - - """filter the rows returned""" - where: pokemon_v2_versiongroupmovelearnmethod_bool_exp - ): [pokemon_v2_versiongroupmovelearnmethod!]! - - """An aggregate relationship""" - pokemon_v2_versiongroupmovelearnmethods_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_versiongroupmovelearnmethod_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_versiongroupmovelearnmethod_order_by!] - - """filter the rows returned""" - where: pokemon_v2_versiongroupmovelearnmethod_bool_exp - ): pokemon_v2_versiongroupmovelearnmethod_aggregate! - - """An array relationship""" - pokemon_v2_versiongroupregions( - """distinct select on columns""" - distinct_on: [pokemon_v2_versiongroupregion_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_versiongroupregion_order_by!] - - """filter the rows returned""" - where: pokemon_v2_versiongroupregion_bool_exp - ): [pokemon_v2_versiongroupregion!]! - - """An aggregate relationship""" - pokemon_v2_versiongroupregions_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_versiongroupregion_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_versiongroupregion_order_by!] - - """filter the rows returned""" - where: pokemon_v2_versiongroupregion_bool_exp - ): pokemon_v2_versiongroupregion_aggregate! - - """An array relationship""" - pokemon_v2_versions( - """distinct select on columns""" - distinct_on: [pokemon_v2_version_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_version_order_by!] - - """filter the rows returned""" - where: pokemon_v2_version_bool_exp - ): [pokemon_v2_version!]! - - """An aggregate relationship""" - pokemon_v2_versions_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_version_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_version_order_by!] - - """filter the rows returned""" - where: pokemon_v2_version_bool_exp - ): pokemon_v2_version_aggregate! -} - -""" -aggregated selection of "pokemon_v2_versiongroup" -""" -type pokemon_v2_versiongroup_aggregate { - aggregate: pokemon_v2_versiongroup_aggregate_fields - nodes: [pokemon_v2_versiongroup!]! -} - -input pokemon_v2_versiongroup_aggregate_bool_exp { - count: pokemon_v2_versiongroup_aggregate_bool_exp_count -} - -input pokemon_v2_versiongroup_aggregate_bool_exp_count { - arguments: [pokemon_v2_versiongroup_select_column!] - distinct: Boolean - filter: pokemon_v2_versiongroup_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_versiongroup" -""" -type pokemon_v2_versiongroup_aggregate_fields { - avg: pokemon_v2_versiongroup_avg_fields - count(columns: [pokemon_v2_versiongroup_select_column!], distinct: Boolean): Int! - max: pokemon_v2_versiongroup_max_fields - min: pokemon_v2_versiongroup_min_fields - stddev: pokemon_v2_versiongroup_stddev_fields - stddev_pop: pokemon_v2_versiongroup_stddev_pop_fields - stddev_samp: pokemon_v2_versiongroup_stddev_samp_fields - sum: pokemon_v2_versiongroup_sum_fields - var_pop: pokemon_v2_versiongroup_var_pop_fields - var_samp: pokemon_v2_versiongroup_var_samp_fields - variance: pokemon_v2_versiongroup_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_versiongroup" -""" -input pokemon_v2_versiongroup_aggregate_order_by { - avg: pokemon_v2_versiongroup_avg_order_by - count: order_by - max: pokemon_v2_versiongroup_max_order_by - min: pokemon_v2_versiongroup_min_order_by - stddev: pokemon_v2_versiongroup_stddev_order_by - stddev_pop: pokemon_v2_versiongroup_stddev_pop_order_by - stddev_samp: pokemon_v2_versiongroup_stddev_samp_order_by - sum: pokemon_v2_versiongroup_sum_order_by - var_pop: pokemon_v2_versiongroup_var_pop_order_by - var_samp: pokemon_v2_versiongroup_var_samp_order_by - variance: pokemon_v2_versiongroup_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_versiongroup_avg_fields { - generation_id: Float - id: Float - order: Float -} - -""" -order by avg() on columns of table "pokemon_v2_versiongroup" -""" -input pokemon_v2_versiongroup_avg_order_by { - generation_id: order_by - id: order_by - order: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_versiongroup". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_versiongroup_bool_exp { - _and: [pokemon_v2_versiongroup_bool_exp!] - _not: pokemon_v2_versiongroup_bool_exp - _or: [pokemon_v2_versiongroup_bool_exp!] - generation_id: Int_comparison_exp - id: Int_comparison_exp - name: String_comparison_exp - order: Int_comparison_exp - pokemon_v2_abilitychanges: pokemon_v2_abilitychange_bool_exp - pokemon_v2_abilitychanges_aggregate: pokemon_v2_abilitychange_aggregate_bool_exp - pokemon_v2_abilityflavortexts: pokemon_v2_abilityflavortext_bool_exp - pokemon_v2_abilityflavortexts_aggregate: pokemon_v2_abilityflavortext_aggregate_bool_exp - pokemon_v2_encounterslots: pokemon_v2_encounterslot_bool_exp - pokemon_v2_encounterslots_aggregate: pokemon_v2_encounterslot_aggregate_bool_exp - pokemon_v2_generation: pokemon_v2_generation_bool_exp - pokemon_v2_itemflavortexts: pokemon_v2_itemflavortext_bool_exp - pokemon_v2_itemflavortexts_aggregate: pokemon_v2_itemflavortext_aggregate_bool_exp - pokemon_v2_machines: pokemon_v2_machine_bool_exp - pokemon_v2_machines_aggregate: pokemon_v2_machine_aggregate_bool_exp - pokemon_v2_movechanges: pokemon_v2_movechange_bool_exp - pokemon_v2_movechanges_aggregate: pokemon_v2_movechange_aggregate_bool_exp - pokemon_v2_moveeffectchanges: pokemon_v2_moveeffectchange_bool_exp - pokemon_v2_moveeffectchanges_aggregate: pokemon_v2_moveeffectchange_aggregate_bool_exp - pokemon_v2_moveflavortexts: pokemon_v2_moveflavortext_bool_exp - pokemon_v2_moveflavortexts_aggregate: pokemon_v2_moveflavortext_aggregate_bool_exp - pokemon_v2_pokedexversiongroups: pokemon_v2_pokedexversiongroup_bool_exp - pokemon_v2_pokedexversiongroups_aggregate: pokemon_v2_pokedexversiongroup_aggregate_bool_exp - pokemon_v2_pokemonforms: pokemon_v2_pokemonform_bool_exp - pokemon_v2_pokemonforms_aggregate: pokemon_v2_pokemonform_aggregate_bool_exp - pokemon_v2_pokemonmoves: pokemon_v2_pokemonmove_bool_exp - pokemon_v2_pokemonmoves_aggregate: pokemon_v2_pokemonmove_aggregate_bool_exp - pokemon_v2_versiongroupmovelearnmethods: pokemon_v2_versiongroupmovelearnmethod_bool_exp - pokemon_v2_versiongroupmovelearnmethods_aggregate: pokemon_v2_versiongroupmovelearnmethod_aggregate_bool_exp - pokemon_v2_versiongroupregions: pokemon_v2_versiongroupregion_bool_exp - pokemon_v2_versiongroupregions_aggregate: pokemon_v2_versiongroupregion_aggregate_bool_exp - pokemon_v2_versions: pokemon_v2_version_bool_exp - pokemon_v2_versions_aggregate: pokemon_v2_version_aggregate_bool_exp -} - -"""aggregate max on columns""" -type pokemon_v2_versiongroup_max_fields { - generation_id: Int - id: Int - name: String - order: Int -} - -""" -order by max() on columns of table "pokemon_v2_versiongroup" -""" -input pokemon_v2_versiongroup_max_order_by { - generation_id: order_by - id: order_by - name: order_by - order: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_versiongroup_min_fields { - generation_id: Int - id: Int - name: String - order: Int -} - -""" -order by min() on columns of table "pokemon_v2_versiongroup" -""" -input pokemon_v2_versiongroup_min_order_by { - generation_id: order_by - id: order_by - name: order_by - order: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_versiongroup".""" -input pokemon_v2_versiongroup_order_by { - generation_id: order_by - id: order_by - name: order_by - order: order_by - pokemon_v2_abilitychanges_aggregate: pokemon_v2_abilitychange_aggregate_order_by - pokemon_v2_abilityflavortexts_aggregate: pokemon_v2_abilityflavortext_aggregate_order_by - pokemon_v2_encounterslots_aggregate: pokemon_v2_encounterslot_aggregate_order_by - pokemon_v2_generation: pokemon_v2_generation_order_by - pokemon_v2_itemflavortexts_aggregate: pokemon_v2_itemflavortext_aggregate_order_by - pokemon_v2_machines_aggregate: pokemon_v2_machine_aggregate_order_by - pokemon_v2_movechanges_aggregate: pokemon_v2_movechange_aggregate_order_by - pokemon_v2_moveeffectchanges_aggregate: pokemon_v2_moveeffectchange_aggregate_order_by - pokemon_v2_moveflavortexts_aggregate: pokemon_v2_moveflavortext_aggregate_order_by - pokemon_v2_pokedexversiongroups_aggregate: pokemon_v2_pokedexversiongroup_aggregate_order_by - pokemon_v2_pokemonforms_aggregate: pokemon_v2_pokemonform_aggregate_order_by - pokemon_v2_pokemonmoves_aggregate: pokemon_v2_pokemonmove_aggregate_order_by - pokemon_v2_versiongroupmovelearnmethods_aggregate: pokemon_v2_versiongroupmovelearnmethod_aggregate_order_by - pokemon_v2_versiongroupregions_aggregate: pokemon_v2_versiongroupregion_aggregate_order_by - pokemon_v2_versions_aggregate: pokemon_v2_version_aggregate_order_by -} - -""" -select columns of table "pokemon_v2_versiongroup" -""" -enum pokemon_v2_versiongroup_select_column { - """column name""" - generation_id - - """column name""" - id - - """column name""" - name - - """column name""" - order -} - -"""aggregate stddev on columns""" -type pokemon_v2_versiongroup_stddev_fields { - generation_id: Float - id: Float - order: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_versiongroup" -""" -input pokemon_v2_versiongroup_stddev_order_by { - generation_id: order_by - id: order_by - order: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_versiongroup_stddev_pop_fields { - generation_id: Float - id: Float - order: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_versiongroup" -""" -input pokemon_v2_versiongroup_stddev_pop_order_by { - generation_id: order_by - id: order_by - order: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_versiongroup_stddev_samp_fields { - generation_id: Float - id: Float - order: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_versiongroup" -""" -input pokemon_v2_versiongroup_stddev_samp_order_by { - generation_id: order_by - id: order_by - order: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_versiongroup" -""" -input pokemon_v2_versiongroup_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_versiongroup_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_versiongroup_stream_cursor_value_input { - generation_id: Int - id: Int - name: String - order: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_versiongroup_sum_fields { - generation_id: Int - id: Int - order: Int -} - -""" -order by sum() on columns of table "pokemon_v2_versiongroup" -""" -input pokemon_v2_versiongroup_sum_order_by { - generation_id: order_by - id: order_by - order: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_versiongroup_var_pop_fields { - generation_id: Float - id: Float - order: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_versiongroup" -""" -input pokemon_v2_versiongroup_var_pop_order_by { - generation_id: order_by - id: order_by - order: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_versiongroup_var_samp_fields { - generation_id: Float - id: Float - order: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_versiongroup" -""" -input pokemon_v2_versiongroup_var_samp_order_by { - generation_id: order_by - id: order_by - order: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_versiongroup_variance_fields { - generation_id: Float - id: Float - order: Float -} - -""" -order by variance() on columns of table "pokemon_v2_versiongroup" -""" -input pokemon_v2_versiongroup_variance_order_by { - generation_id: order_by - id: order_by - order: order_by -} - -""" -columns and relationships of "pokemon_v2_versiongroupmovelearnmethod" -""" -type pokemon_v2_versiongroupmovelearnmethod { - id: Int! - move_learn_method_id: Int - - """An object relationship""" - pokemon_v2_movelearnmethod: pokemon_v2_movelearnmethod - - """An object relationship""" - pokemon_v2_versiongroup: pokemon_v2_versiongroup - version_group_id: Int -} - -""" -aggregated selection of "pokemon_v2_versiongroupmovelearnmethod" -""" -type pokemon_v2_versiongroupmovelearnmethod_aggregate { - aggregate: pokemon_v2_versiongroupmovelearnmethod_aggregate_fields - nodes: [pokemon_v2_versiongroupmovelearnmethod!]! -} - -input pokemon_v2_versiongroupmovelearnmethod_aggregate_bool_exp { - count: pokemon_v2_versiongroupmovelearnmethod_aggregate_bool_exp_count -} - -input pokemon_v2_versiongroupmovelearnmethod_aggregate_bool_exp_count { - arguments: [pokemon_v2_versiongroupmovelearnmethod_select_column!] - distinct: Boolean - filter: pokemon_v2_versiongroupmovelearnmethod_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_versiongroupmovelearnmethod" -""" -type pokemon_v2_versiongroupmovelearnmethod_aggregate_fields { - avg: pokemon_v2_versiongroupmovelearnmethod_avg_fields - count(columns: [pokemon_v2_versiongroupmovelearnmethod_select_column!], distinct: Boolean): Int! - max: pokemon_v2_versiongroupmovelearnmethod_max_fields - min: pokemon_v2_versiongroupmovelearnmethod_min_fields - stddev: pokemon_v2_versiongroupmovelearnmethod_stddev_fields - stddev_pop: pokemon_v2_versiongroupmovelearnmethod_stddev_pop_fields - stddev_samp: pokemon_v2_versiongroupmovelearnmethod_stddev_samp_fields - sum: pokemon_v2_versiongroupmovelearnmethod_sum_fields - var_pop: pokemon_v2_versiongroupmovelearnmethod_var_pop_fields - var_samp: pokemon_v2_versiongroupmovelearnmethod_var_samp_fields - variance: pokemon_v2_versiongroupmovelearnmethod_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_versiongroupmovelearnmethod" -""" -input pokemon_v2_versiongroupmovelearnmethod_aggregate_order_by { - avg: pokemon_v2_versiongroupmovelearnmethod_avg_order_by - count: order_by - max: pokemon_v2_versiongroupmovelearnmethod_max_order_by - min: pokemon_v2_versiongroupmovelearnmethod_min_order_by - stddev: pokemon_v2_versiongroupmovelearnmethod_stddev_order_by - stddev_pop: pokemon_v2_versiongroupmovelearnmethod_stddev_pop_order_by - stddev_samp: pokemon_v2_versiongroupmovelearnmethod_stddev_samp_order_by - sum: pokemon_v2_versiongroupmovelearnmethod_sum_order_by - var_pop: pokemon_v2_versiongroupmovelearnmethod_var_pop_order_by - var_samp: pokemon_v2_versiongroupmovelearnmethod_var_samp_order_by - variance: pokemon_v2_versiongroupmovelearnmethod_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_versiongroupmovelearnmethod_avg_fields { - id: Float - move_learn_method_id: Float - version_group_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_versiongroupmovelearnmethod" -""" -input pokemon_v2_versiongroupmovelearnmethod_avg_order_by { - id: order_by - move_learn_method_id: order_by - version_group_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_versiongroupmovelearnmethod". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_versiongroupmovelearnmethod_bool_exp { - _and: [pokemon_v2_versiongroupmovelearnmethod_bool_exp!] - _not: pokemon_v2_versiongroupmovelearnmethod_bool_exp - _or: [pokemon_v2_versiongroupmovelearnmethod_bool_exp!] - id: Int_comparison_exp - move_learn_method_id: Int_comparison_exp - pokemon_v2_movelearnmethod: pokemon_v2_movelearnmethod_bool_exp - pokemon_v2_versiongroup: pokemon_v2_versiongroup_bool_exp - version_group_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_versiongroupmovelearnmethod_max_fields { - id: Int - move_learn_method_id: Int - version_group_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_versiongroupmovelearnmethod" -""" -input pokemon_v2_versiongroupmovelearnmethod_max_order_by { - id: order_by - move_learn_method_id: order_by - version_group_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_versiongroupmovelearnmethod_min_fields { - id: Int - move_learn_method_id: Int - version_group_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_versiongroupmovelearnmethod" -""" -input pokemon_v2_versiongroupmovelearnmethod_min_order_by { - id: order_by - move_learn_method_id: order_by - version_group_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_versiongroupmovelearnmethod". -""" -input pokemon_v2_versiongroupmovelearnmethod_order_by { - id: order_by - move_learn_method_id: order_by - pokemon_v2_movelearnmethod: pokemon_v2_movelearnmethod_order_by - pokemon_v2_versiongroup: pokemon_v2_versiongroup_order_by - version_group_id: order_by -} - -""" -select columns of table "pokemon_v2_versiongroupmovelearnmethod" -""" -enum pokemon_v2_versiongroupmovelearnmethod_select_column { - """column name""" - id - - """column name""" - move_learn_method_id - - """column name""" - version_group_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_versiongroupmovelearnmethod_stddev_fields { - id: Float - move_learn_method_id: Float - version_group_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_versiongroupmovelearnmethod" -""" -input pokemon_v2_versiongroupmovelearnmethod_stddev_order_by { - id: order_by - move_learn_method_id: order_by - version_group_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_versiongroupmovelearnmethod_stddev_pop_fields { - id: Float - move_learn_method_id: Float - version_group_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_versiongroupmovelearnmethod" -""" -input pokemon_v2_versiongroupmovelearnmethod_stddev_pop_order_by { - id: order_by - move_learn_method_id: order_by - version_group_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_versiongroupmovelearnmethod_stddev_samp_fields { - id: Float - move_learn_method_id: Float - version_group_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_versiongroupmovelearnmethod" -""" -input pokemon_v2_versiongroupmovelearnmethod_stddev_samp_order_by { - id: order_by - move_learn_method_id: order_by - version_group_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_versiongroupmovelearnmethod" -""" -input pokemon_v2_versiongroupmovelearnmethod_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_versiongroupmovelearnmethod_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_versiongroupmovelearnmethod_stream_cursor_value_input { - id: Int - move_learn_method_id: Int - version_group_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_versiongroupmovelearnmethod_sum_fields { - id: Int - move_learn_method_id: Int - version_group_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_versiongroupmovelearnmethod" -""" -input pokemon_v2_versiongroupmovelearnmethod_sum_order_by { - id: order_by - move_learn_method_id: order_by - version_group_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_versiongroupmovelearnmethod_var_pop_fields { - id: Float - move_learn_method_id: Float - version_group_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_versiongroupmovelearnmethod" -""" -input pokemon_v2_versiongroupmovelearnmethod_var_pop_order_by { - id: order_by - move_learn_method_id: order_by - version_group_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_versiongroupmovelearnmethod_var_samp_fields { - id: Float - move_learn_method_id: Float - version_group_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_versiongroupmovelearnmethod" -""" -input pokemon_v2_versiongroupmovelearnmethod_var_samp_order_by { - id: order_by - move_learn_method_id: order_by - version_group_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_versiongroupmovelearnmethod_variance_fields { - id: Float - move_learn_method_id: Float - version_group_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_versiongroupmovelearnmethod" -""" -input pokemon_v2_versiongroupmovelearnmethod_variance_order_by { - id: order_by - move_learn_method_id: order_by - version_group_id: order_by -} - -""" -columns and relationships of "pokemon_v2_versiongroupregion" -""" -type pokemon_v2_versiongroupregion { - id: Int! - - """An object relationship""" - pokemon_v2_region: pokemon_v2_region - - """An object relationship""" - pokemon_v2_versiongroup: pokemon_v2_versiongroup - region_id: Int - version_group_id: Int -} - -""" -aggregated selection of "pokemon_v2_versiongroupregion" -""" -type pokemon_v2_versiongroupregion_aggregate { - aggregate: pokemon_v2_versiongroupregion_aggregate_fields - nodes: [pokemon_v2_versiongroupregion!]! -} - -input pokemon_v2_versiongroupregion_aggregate_bool_exp { - count: pokemon_v2_versiongroupregion_aggregate_bool_exp_count -} - -input pokemon_v2_versiongroupregion_aggregate_bool_exp_count { - arguments: [pokemon_v2_versiongroupregion_select_column!] - distinct: Boolean - filter: pokemon_v2_versiongroupregion_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_versiongroupregion" -""" -type pokemon_v2_versiongroupregion_aggregate_fields { - avg: pokemon_v2_versiongroupregion_avg_fields - count(columns: [pokemon_v2_versiongroupregion_select_column!], distinct: Boolean): Int! - max: pokemon_v2_versiongroupregion_max_fields - min: pokemon_v2_versiongroupregion_min_fields - stddev: pokemon_v2_versiongroupregion_stddev_fields - stddev_pop: pokemon_v2_versiongroupregion_stddev_pop_fields - stddev_samp: pokemon_v2_versiongroupregion_stddev_samp_fields - sum: pokemon_v2_versiongroupregion_sum_fields - var_pop: pokemon_v2_versiongroupregion_var_pop_fields - var_samp: pokemon_v2_versiongroupregion_var_samp_fields - variance: pokemon_v2_versiongroupregion_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_versiongroupregion" -""" -input pokemon_v2_versiongroupregion_aggregate_order_by { - avg: pokemon_v2_versiongroupregion_avg_order_by - count: order_by - max: pokemon_v2_versiongroupregion_max_order_by - min: pokemon_v2_versiongroupregion_min_order_by - stddev: pokemon_v2_versiongroupregion_stddev_order_by - stddev_pop: pokemon_v2_versiongroupregion_stddev_pop_order_by - stddev_samp: pokemon_v2_versiongroupregion_stddev_samp_order_by - sum: pokemon_v2_versiongroupregion_sum_order_by - var_pop: pokemon_v2_versiongroupregion_var_pop_order_by - var_samp: pokemon_v2_versiongroupregion_var_samp_order_by - variance: pokemon_v2_versiongroupregion_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_versiongroupregion_avg_fields { - id: Float - region_id: Float - version_group_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_versiongroupregion" -""" -input pokemon_v2_versiongroupregion_avg_order_by { - id: order_by - region_id: order_by - version_group_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_versiongroupregion". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_versiongroupregion_bool_exp { - _and: [pokemon_v2_versiongroupregion_bool_exp!] - _not: pokemon_v2_versiongroupregion_bool_exp - _or: [pokemon_v2_versiongroupregion_bool_exp!] - id: Int_comparison_exp - pokemon_v2_region: pokemon_v2_region_bool_exp - pokemon_v2_versiongroup: pokemon_v2_versiongroup_bool_exp - region_id: Int_comparison_exp - version_group_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_versiongroupregion_max_fields { - id: Int - region_id: Int - version_group_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_versiongroupregion" -""" -input pokemon_v2_versiongroupregion_max_order_by { - id: order_by - region_id: order_by - version_group_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_versiongroupregion_min_fields { - id: Int - region_id: Int - version_group_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_versiongroupregion" -""" -input pokemon_v2_versiongroupregion_min_order_by { - id: order_by - region_id: order_by - version_group_id: order_by -} - -""" -Ordering options when selecting data from "pokemon_v2_versiongroupregion". -""" -input pokemon_v2_versiongroupregion_order_by { - id: order_by - pokemon_v2_region: pokemon_v2_region_order_by - pokemon_v2_versiongroup: pokemon_v2_versiongroup_order_by - region_id: order_by - version_group_id: order_by -} - -""" -select columns of table "pokemon_v2_versiongroupregion" -""" -enum pokemon_v2_versiongroupregion_select_column { - """column name""" - id - - """column name""" - region_id - - """column name""" - version_group_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_versiongroupregion_stddev_fields { - id: Float - region_id: Float - version_group_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_versiongroupregion" -""" -input pokemon_v2_versiongroupregion_stddev_order_by { - id: order_by - region_id: order_by - version_group_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_versiongroupregion_stddev_pop_fields { - id: Float - region_id: Float - version_group_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_versiongroupregion" -""" -input pokemon_v2_versiongroupregion_stddev_pop_order_by { - id: order_by - region_id: order_by - version_group_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_versiongroupregion_stddev_samp_fields { - id: Float - region_id: Float - version_group_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_versiongroupregion" -""" -input pokemon_v2_versiongroupregion_stddev_samp_order_by { - id: order_by - region_id: order_by - version_group_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_versiongroupregion" -""" -input pokemon_v2_versiongroupregion_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_versiongroupregion_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_versiongroupregion_stream_cursor_value_input { - id: Int - region_id: Int - version_group_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_versiongroupregion_sum_fields { - id: Int - region_id: Int - version_group_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_versiongroupregion" -""" -input pokemon_v2_versiongroupregion_sum_order_by { - id: order_by - region_id: order_by - version_group_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_versiongroupregion_var_pop_fields { - id: Float - region_id: Float - version_group_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_versiongroupregion" -""" -input pokemon_v2_versiongroupregion_var_pop_order_by { - id: order_by - region_id: order_by - version_group_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_versiongroupregion_var_samp_fields { - id: Float - region_id: Float - version_group_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_versiongroupregion" -""" -input pokemon_v2_versiongroupregion_var_samp_order_by { - id: order_by - region_id: order_by - version_group_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_versiongroupregion_variance_fields { - id: Float - region_id: Float - version_group_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_versiongroupregion" -""" -input pokemon_v2_versiongroupregion_variance_order_by { - id: order_by - region_id: order_by - version_group_id: order_by -} - -""" -columns and relationships of "pokemon_v2_versionname" -""" -type pokemon_v2_versionname { - id: Int! - language_id: Int - name: String! - - """An object relationship""" - pokemon_v2_language: pokemon_v2_language - - """An object relationship""" - pokemon_v2_version: pokemon_v2_version - version_id: Int -} - -""" -aggregated selection of "pokemon_v2_versionname" -""" -type pokemon_v2_versionname_aggregate { - aggregate: pokemon_v2_versionname_aggregate_fields - nodes: [pokemon_v2_versionname!]! -} - -input pokemon_v2_versionname_aggregate_bool_exp { - count: pokemon_v2_versionname_aggregate_bool_exp_count -} - -input pokemon_v2_versionname_aggregate_bool_exp_count { - arguments: [pokemon_v2_versionname_select_column!] - distinct: Boolean - filter: pokemon_v2_versionname_bool_exp - predicate: Int_comparison_exp! -} - -""" -aggregate fields of "pokemon_v2_versionname" -""" -type pokemon_v2_versionname_aggregate_fields { - avg: pokemon_v2_versionname_avg_fields - count(columns: [pokemon_v2_versionname_select_column!], distinct: Boolean): Int! - max: pokemon_v2_versionname_max_fields - min: pokemon_v2_versionname_min_fields - stddev: pokemon_v2_versionname_stddev_fields - stddev_pop: pokemon_v2_versionname_stddev_pop_fields - stddev_samp: pokemon_v2_versionname_stddev_samp_fields - sum: pokemon_v2_versionname_sum_fields - var_pop: pokemon_v2_versionname_var_pop_fields - var_samp: pokemon_v2_versionname_var_samp_fields - variance: pokemon_v2_versionname_variance_fields -} - -""" -order by aggregate values of table "pokemon_v2_versionname" -""" -input pokemon_v2_versionname_aggregate_order_by { - avg: pokemon_v2_versionname_avg_order_by - count: order_by - max: pokemon_v2_versionname_max_order_by - min: pokemon_v2_versionname_min_order_by - stddev: pokemon_v2_versionname_stddev_order_by - stddev_pop: pokemon_v2_versionname_stddev_pop_order_by - stddev_samp: pokemon_v2_versionname_stddev_samp_order_by - sum: pokemon_v2_versionname_sum_order_by - var_pop: pokemon_v2_versionname_var_pop_order_by - var_samp: pokemon_v2_versionname_var_samp_order_by - variance: pokemon_v2_versionname_variance_order_by -} - -"""aggregate avg on columns""" -type pokemon_v2_versionname_avg_fields { - id: Float - language_id: Float - version_id: Float -} - -""" -order by avg() on columns of table "pokemon_v2_versionname" -""" -input pokemon_v2_versionname_avg_order_by { - id: order_by - language_id: order_by - version_id: order_by -} - -""" -Boolean expression to filter rows from the table "pokemon_v2_versionname". All fields are combined with a logical 'AND'. -""" -input pokemon_v2_versionname_bool_exp { - _and: [pokemon_v2_versionname_bool_exp!] - _not: pokemon_v2_versionname_bool_exp - _or: [pokemon_v2_versionname_bool_exp!] - id: Int_comparison_exp - language_id: Int_comparison_exp - name: String_comparison_exp - pokemon_v2_language: pokemon_v2_language_bool_exp - pokemon_v2_version: pokemon_v2_version_bool_exp - version_id: Int_comparison_exp -} - -"""aggregate max on columns""" -type pokemon_v2_versionname_max_fields { - id: Int - language_id: Int - name: String - version_id: Int -} - -""" -order by max() on columns of table "pokemon_v2_versionname" -""" -input pokemon_v2_versionname_max_order_by { - id: order_by - language_id: order_by - name: order_by - version_id: order_by -} - -"""aggregate min on columns""" -type pokemon_v2_versionname_min_fields { - id: Int - language_id: Int - name: String - version_id: Int -} - -""" -order by min() on columns of table "pokemon_v2_versionname" -""" -input pokemon_v2_versionname_min_order_by { - id: order_by - language_id: order_by - name: order_by - version_id: order_by -} - -"""Ordering options when selecting data from "pokemon_v2_versionname".""" -input pokemon_v2_versionname_order_by { - id: order_by - language_id: order_by - name: order_by - pokemon_v2_language: pokemon_v2_language_order_by - pokemon_v2_version: pokemon_v2_version_order_by - version_id: order_by -} - -""" -select columns of table "pokemon_v2_versionname" -""" -enum pokemon_v2_versionname_select_column { - """column name""" - id - - """column name""" - language_id - - """column name""" - name - - """column name""" - version_id -} - -"""aggregate stddev on columns""" -type pokemon_v2_versionname_stddev_fields { - id: Float - language_id: Float - version_id: Float -} - -""" -order by stddev() on columns of table "pokemon_v2_versionname" -""" -input pokemon_v2_versionname_stddev_order_by { - id: order_by - language_id: order_by - version_id: order_by -} - -"""aggregate stddev_pop on columns""" -type pokemon_v2_versionname_stddev_pop_fields { - id: Float - language_id: Float - version_id: Float -} - -""" -order by stddev_pop() on columns of table "pokemon_v2_versionname" -""" -input pokemon_v2_versionname_stddev_pop_order_by { - id: order_by - language_id: order_by - version_id: order_by -} - -"""aggregate stddev_samp on columns""" -type pokemon_v2_versionname_stddev_samp_fields { - id: Float - language_id: Float - version_id: Float -} - -""" -order by stddev_samp() on columns of table "pokemon_v2_versionname" -""" -input pokemon_v2_versionname_stddev_samp_order_by { - id: order_by - language_id: order_by - version_id: order_by -} - -""" -Streaming cursor of the table "pokemon_v2_versionname" -""" -input pokemon_v2_versionname_stream_cursor_input { - """Stream column input with initial value""" - initial_value: pokemon_v2_versionname_stream_cursor_value_input! - - """cursor ordering""" - ordering: cursor_ordering -} - -"""Initial value of the column from where the streaming should start""" -input pokemon_v2_versionname_stream_cursor_value_input { - id: Int - language_id: Int - name: String - version_id: Int -} - -"""aggregate sum on columns""" -type pokemon_v2_versionname_sum_fields { - id: Int - language_id: Int - version_id: Int -} - -""" -order by sum() on columns of table "pokemon_v2_versionname" -""" -input pokemon_v2_versionname_sum_order_by { - id: order_by - language_id: order_by - version_id: order_by -} - -"""aggregate var_pop on columns""" -type pokemon_v2_versionname_var_pop_fields { - id: Float - language_id: Float - version_id: Float -} - -""" -order by var_pop() on columns of table "pokemon_v2_versionname" -""" -input pokemon_v2_versionname_var_pop_order_by { - id: order_by - language_id: order_by - version_id: order_by -} - -"""aggregate var_samp on columns""" -type pokemon_v2_versionname_var_samp_fields { - id: Float - language_id: Float - version_id: Float -} - -""" -order by var_samp() on columns of table "pokemon_v2_versionname" -""" -input pokemon_v2_versionname_var_samp_order_by { - id: order_by - language_id: order_by - version_id: order_by -} - -"""aggregate variance on columns""" -type pokemon_v2_versionname_variance_fields { - id: Float - language_id: Float - version_id: Float -} - -""" -order by variance() on columns of table "pokemon_v2_versionname" -""" -input pokemon_v2_versionname_variance_order_by { - id: order_by - language_id: order_by - version_id: order_by -} - -type query_root { - """ - fetch data from the table: "pokemon_v2_ability" - """ - pokemon_v2_ability( - """distinct select on columns""" - distinct_on: [pokemon_v2_ability_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_ability_order_by!] - - """filter the rows returned""" - where: pokemon_v2_ability_bool_exp - ): [pokemon_v2_ability!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_ability" - """ - pokemon_v2_ability_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_ability_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_ability_order_by!] - - """filter the rows returned""" - where: pokemon_v2_ability_bool_exp - ): pokemon_v2_ability_aggregate! - - """ - fetch data from the table: "pokemon_v2_ability" using primary key columns - """ - pokemon_v2_ability_by_pk(id: Int!): pokemon_v2_ability - - """ - fetch data from the table: "pokemon_v2_abilitychange" - """ - pokemon_v2_abilitychange( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilitychange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilitychange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilitychange_bool_exp - ): [pokemon_v2_abilitychange!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_abilitychange" - """ - pokemon_v2_abilitychange_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilitychange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilitychange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilitychange_bool_exp - ): pokemon_v2_abilitychange_aggregate! - - """ - fetch data from the table: "pokemon_v2_abilitychange" using primary key columns - """ - pokemon_v2_abilitychange_by_pk(id: Int!): pokemon_v2_abilitychange - - """ - fetch data from the table: "pokemon_v2_abilitychangeeffecttext" - """ - pokemon_v2_abilitychangeeffecttext( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilitychangeeffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilitychangeeffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilitychangeeffecttext_bool_exp - ): [pokemon_v2_abilitychangeeffecttext!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_abilitychangeeffecttext" - """ - pokemon_v2_abilitychangeeffecttext_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilitychangeeffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilitychangeeffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilitychangeeffecttext_bool_exp - ): pokemon_v2_abilitychangeeffecttext_aggregate! - - """ - fetch data from the table: "pokemon_v2_abilitychangeeffecttext" using primary key columns - """ - pokemon_v2_abilitychangeeffecttext_by_pk(id: Int!): pokemon_v2_abilitychangeeffecttext - - """ - fetch data from the table: "pokemon_v2_abilityeffecttext" - """ - pokemon_v2_abilityeffecttext( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilityeffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilityeffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilityeffecttext_bool_exp - ): [pokemon_v2_abilityeffecttext!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_abilityeffecttext" - """ - pokemon_v2_abilityeffecttext_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilityeffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilityeffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilityeffecttext_bool_exp - ): pokemon_v2_abilityeffecttext_aggregate! - - """ - fetch data from the table: "pokemon_v2_abilityeffecttext" using primary key columns - """ - pokemon_v2_abilityeffecttext_by_pk(id: Int!): pokemon_v2_abilityeffecttext - - """ - fetch data from the table: "pokemon_v2_abilityflavortext" - """ - pokemon_v2_abilityflavortext( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilityflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilityflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilityflavortext_bool_exp - ): [pokemon_v2_abilityflavortext!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_abilityflavortext" - """ - pokemon_v2_abilityflavortext_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilityflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilityflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilityflavortext_bool_exp - ): pokemon_v2_abilityflavortext_aggregate! - - """ - fetch data from the table: "pokemon_v2_abilityflavortext" using primary key columns - """ - pokemon_v2_abilityflavortext_by_pk(id: Int!): pokemon_v2_abilityflavortext - - """ - fetch data from the table: "pokemon_v2_abilityname" - """ - pokemon_v2_abilityname( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilityname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilityname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilityname_bool_exp - ): [pokemon_v2_abilityname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_abilityname" - """ - pokemon_v2_abilityname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilityname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilityname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilityname_bool_exp - ): pokemon_v2_abilityname_aggregate! - - """ - fetch data from the table: "pokemon_v2_abilityname" using primary key columns - """ - pokemon_v2_abilityname_by_pk(id: Int!): pokemon_v2_abilityname - - """ - fetch data from the table: "pokemon_v2_berry" - """ - pokemon_v2_berry( - """distinct select on columns""" - distinct_on: [pokemon_v2_berry_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berry_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berry_bool_exp - ): [pokemon_v2_berry!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_berry" - """ - pokemon_v2_berry_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_berry_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berry_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berry_bool_exp - ): pokemon_v2_berry_aggregate! - - """ - fetch data from the table: "pokemon_v2_berry" using primary key columns - """ - pokemon_v2_berry_by_pk(id: Int!): pokemon_v2_berry - - """ - fetch data from the table: "pokemon_v2_berryfirmness" - """ - pokemon_v2_berryfirmness( - """distinct select on columns""" - distinct_on: [pokemon_v2_berryfirmness_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berryfirmness_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berryfirmness_bool_exp - ): [pokemon_v2_berryfirmness!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_berryfirmness" - """ - pokemon_v2_berryfirmness_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_berryfirmness_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berryfirmness_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berryfirmness_bool_exp - ): pokemon_v2_berryfirmness_aggregate! - - """ - fetch data from the table: "pokemon_v2_berryfirmness" using primary key columns - """ - pokemon_v2_berryfirmness_by_pk(id: Int!): pokemon_v2_berryfirmness - - """ - fetch data from the table: "pokemon_v2_berryfirmnessname" - """ - pokemon_v2_berryfirmnessname( - """distinct select on columns""" - distinct_on: [pokemon_v2_berryfirmnessname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berryfirmnessname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berryfirmnessname_bool_exp - ): [pokemon_v2_berryfirmnessname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_berryfirmnessname" - """ - pokemon_v2_berryfirmnessname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_berryfirmnessname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berryfirmnessname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berryfirmnessname_bool_exp - ): pokemon_v2_berryfirmnessname_aggregate! - - """ - fetch data from the table: "pokemon_v2_berryfirmnessname" using primary key columns - """ - pokemon_v2_berryfirmnessname_by_pk(id: Int!): pokemon_v2_berryfirmnessname - - """ - fetch data from the table: "pokemon_v2_berryflavor" - """ - pokemon_v2_berryflavor( - """distinct select on columns""" - distinct_on: [pokemon_v2_berryflavor_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berryflavor_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berryflavor_bool_exp - ): [pokemon_v2_berryflavor!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_berryflavor" - """ - pokemon_v2_berryflavor_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_berryflavor_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berryflavor_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berryflavor_bool_exp - ): pokemon_v2_berryflavor_aggregate! - - """ - fetch data from the table: "pokemon_v2_berryflavor" using primary key columns - """ - pokemon_v2_berryflavor_by_pk(id: Int!): pokemon_v2_berryflavor - - """ - fetch data from the table: "pokemon_v2_berryflavormap" - """ - pokemon_v2_berryflavormap( - """distinct select on columns""" - distinct_on: [pokemon_v2_berryflavormap_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berryflavormap_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berryflavormap_bool_exp - ): [pokemon_v2_berryflavormap!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_berryflavormap" - """ - pokemon_v2_berryflavormap_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_berryflavormap_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berryflavormap_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berryflavormap_bool_exp - ): pokemon_v2_berryflavormap_aggregate! - - """ - fetch data from the table: "pokemon_v2_berryflavormap" using primary key columns - """ - pokemon_v2_berryflavormap_by_pk(id: Int!): pokemon_v2_berryflavormap - - """ - fetch data from the table: "pokemon_v2_berryflavorname" - """ - pokemon_v2_berryflavorname( - """distinct select on columns""" - distinct_on: [pokemon_v2_berryflavorname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berryflavorname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berryflavorname_bool_exp - ): [pokemon_v2_berryflavorname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_berryflavorname" - """ - pokemon_v2_berryflavorname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_berryflavorname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berryflavorname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berryflavorname_bool_exp - ): pokemon_v2_berryflavorname_aggregate! - - """ - fetch data from the table: "pokemon_v2_berryflavorname" using primary key columns - """ - pokemon_v2_berryflavorname_by_pk(id: Int!): pokemon_v2_berryflavorname - - """ - fetch data from the table: "pokemon_v2_characteristic" - """ - pokemon_v2_characteristic( - """distinct select on columns""" - distinct_on: [pokemon_v2_characteristic_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_characteristic_order_by!] - - """filter the rows returned""" - where: pokemon_v2_characteristic_bool_exp - ): [pokemon_v2_characteristic!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_characteristic" - """ - pokemon_v2_characteristic_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_characteristic_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_characteristic_order_by!] - - """filter the rows returned""" - where: pokemon_v2_characteristic_bool_exp - ): pokemon_v2_characteristic_aggregate! - - """ - fetch data from the table: "pokemon_v2_characteristic" using primary key columns - """ - pokemon_v2_characteristic_by_pk(id: Int!): pokemon_v2_characteristic - - """ - fetch data from the table: "pokemon_v2_characteristicdescription" - """ - pokemon_v2_characteristicdescription( - """distinct select on columns""" - distinct_on: [pokemon_v2_characteristicdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_characteristicdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_characteristicdescription_bool_exp - ): [pokemon_v2_characteristicdescription!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_characteristicdescription" - """ - pokemon_v2_characteristicdescription_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_characteristicdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_characteristicdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_characteristicdescription_bool_exp - ): pokemon_v2_characteristicdescription_aggregate! - - """ - fetch data from the table: "pokemon_v2_characteristicdescription" using primary key columns - """ - pokemon_v2_characteristicdescription_by_pk(id: Int!): pokemon_v2_characteristicdescription - - """ - fetch data from the table: "pokemon_v2_contestcombo" - """ - pokemon_v2_contestcombo( - """distinct select on columns""" - distinct_on: [pokemon_v2_contestcombo_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contestcombo_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contestcombo_bool_exp - ): [pokemon_v2_contestcombo!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_contestcombo" - """ - pokemon_v2_contestcombo_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_contestcombo_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contestcombo_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contestcombo_bool_exp - ): pokemon_v2_contestcombo_aggregate! - - """ - fetch data from the table: "pokemon_v2_contestcombo" using primary key columns - """ - pokemon_v2_contestcombo_by_pk(id: Int!): pokemon_v2_contestcombo - - """ - fetch data from the table: "pokemon_v2_contesteffect" - """ - pokemon_v2_contesteffect( - """distinct select on columns""" - distinct_on: [pokemon_v2_contesteffect_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contesteffect_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contesteffect_bool_exp - ): [pokemon_v2_contesteffect!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_contesteffect" - """ - pokemon_v2_contesteffect_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_contesteffect_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contesteffect_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contesteffect_bool_exp - ): pokemon_v2_contesteffect_aggregate! - - """ - fetch data from the table: "pokemon_v2_contesteffect" using primary key columns - """ - pokemon_v2_contesteffect_by_pk(id: Int!): pokemon_v2_contesteffect - - """ - fetch data from the table: "pokemon_v2_contesteffecteffecttext" - """ - pokemon_v2_contesteffecteffecttext( - """distinct select on columns""" - distinct_on: [pokemon_v2_contesteffecteffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contesteffecteffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contesteffecteffecttext_bool_exp - ): [pokemon_v2_contesteffecteffecttext!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_contesteffecteffecttext" - """ - pokemon_v2_contesteffecteffecttext_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_contesteffecteffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contesteffecteffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contesteffecteffecttext_bool_exp - ): pokemon_v2_contesteffecteffecttext_aggregate! - - """ - fetch data from the table: "pokemon_v2_contesteffecteffecttext" using primary key columns - """ - pokemon_v2_contesteffecteffecttext_by_pk(id: Int!): pokemon_v2_contesteffecteffecttext - - """ - fetch data from the table: "pokemon_v2_contesteffectflavortext" - """ - pokemon_v2_contesteffectflavortext( - """distinct select on columns""" - distinct_on: [pokemon_v2_contesteffectflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contesteffectflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contesteffectflavortext_bool_exp - ): [pokemon_v2_contesteffectflavortext!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_contesteffectflavortext" - """ - pokemon_v2_contesteffectflavortext_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_contesteffectflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contesteffectflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contesteffectflavortext_bool_exp - ): pokemon_v2_contesteffectflavortext_aggregate! - - """ - fetch data from the table: "pokemon_v2_contesteffectflavortext" using primary key columns - """ - pokemon_v2_contesteffectflavortext_by_pk(id: Int!): pokemon_v2_contesteffectflavortext - - """ - fetch data from the table: "pokemon_v2_contesttype" - """ - pokemon_v2_contesttype( - """distinct select on columns""" - distinct_on: [pokemon_v2_contesttype_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contesttype_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contesttype_bool_exp - ): [pokemon_v2_contesttype!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_contesttype" - """ - pokemon_v2_contesttype_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_contesttype_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contesttype_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contesttype_bool_exp - ): pokemon_v2_contesttype_aggregate! - - """ - fetch data from the table: "pokemon_v2_contesttype" using primary key columns - """ - pokemon_v2_contesttype_by_pk(id: Int!): pokemon_v2_contesttype - - """ - fetch data from the table: "pokemon_v2_contesttypename" - """ - pokemon_v2_contesttypename( - """distinct select on columns""" - distinct_on: [pokemon_v2_contesttypename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contesttypename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contesttypename_bool_exp - ): [pokemon_v2_contesttypename!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_contesttypename" - """ - pokemon_v2_contesttypename_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_contesttypename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contesttypename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contesttypename_bool_exp - ): pokemon_v2_contesttypename_aggregate! - - """ - fetch data from the table: "pokemon_v2_contesttypename" using primary key columns - """ - pokemon_v2_contesttypename_by_pk(id: Int!): pokemon_v2_contesttypename - - """ - fetch data from the table: "pokemon_v2_egggroup" - """ - pokemon_v2_egggroup( - """distinct select on columns""" - distinct_on: [pokemon_v2_egggroup_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_egggroup_order_by!] - - """filter the rows returned""" - where: pokemon_v2_egggroup_bool_exp - ): [pokemon_v2_egggroup!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_egggroup" - """ - pokemon_v2_egggroup_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_egggroup_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_egggroup_order_by!] - - """filter the rows returned""" - where: pokemon_v2_egggroup_bool_exp - ): pokemon_v2_egggroup_aggregate! - - """ - fetch data from the table: "pokemon_v2_egggroup" using primary key columns - """ - pokemon_v2_egggroup_by_pk(id: Int!): pokemon_v2_egggroup - - """ - fetch data from the table: "pokemon_v2_egggroupname" - """ - pokemon_v2_egggroupname( - """distinct select on columns""" - distinct_on: [pokemon_v2_egggroupname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_egggroupname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_egggroupname_bool_exp - ): [pokemon_v2_egggroupname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_egggroupname" - """ - pokemon_v2_egggroupname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_egggroupname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_egggroupname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_egggroupname_bool_exp - ): pokemon_v2_egggroupname_aggregate! - - """ - fetch data from the table: "pokemon_v2_egggroupname" using primary key columns - """ - pokemon_v2_egggroupname_by_pk(id: Int!): pokemon_v2_egggroupname - - """ - fetch data from the table: "pokemon_v2_encounter" - """ - pokemon_v2_encounter( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounter_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounter_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounter_bool_exp - ): [pokemon_v2_encounter!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_encounter" - """ - pokemon_v2_encounter_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounter_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounter_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounter_bool_exp - ): pokemon_v2_encounter_aggregate! - - """ - fetch data from the table: "pokemon_v2_encounter" using primary key columns - """ - pokemon_v2_encounter_by_pk(id: Int!): pokemon_v2_encounter - - """ - fetch data from the table: "pokemon_v2_encountercondition" - """ - pokemon_v2_encountercondition( - """distinct select on columns""" - distinct_on: [pokemon_v2_encountercondition_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encountercondition_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encountercondition_bool_exp - ): [pokemon_v2_encountercondition!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_encountercondition" - """ - pokemon_v2_encountercondition_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_encountercondition_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encountercondition_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encountercondition_bool_exp - ): pokemon_v2_encountercondition_aggregate! - - """ - fetch data from the table: "pokemon_v2_encountercondition" using primary key columns - """ - pokemon_v2_encountercondition_by_pk(id: Int!): pokemon_v2_encountercondition - - """ - fetch data from the table: "pokemon_v2_encounterconditionname" - """ - pokemon_v2_encounterconditionname( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterconditionname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterconditionname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterconditionname_bool_exp - ): [pokemon_v2_encounterconditionname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_encounterconditionname" - """ - pokemon_v2_encounterconditionname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterconditionname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterconditionname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterconditionname_bool_exp - ): pokemon_v2_encounterconditionname_aggregate! - - """ - fetch data from the table: "pokemon_v2_encounterconditionname" using primary key columns - """ - pokemon_v2_encounterconditionname_by_pk(id: Int!): pokemon_v2_encounterconditionname - - """ - fetch data from the table: "pokemon_v2_encounterconditionvalue" - """ - pokemon_v2_encounterconditionvalue( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterconditionvalue_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterconditionvalue_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterconditionvalue_bool_exp - ): [pokemon_v2_encounterconditionvalue!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_encounterconditionvalue" - """ - pokemon_v2_encounterconditionvalue_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterconditionvalue_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterconditionvalue_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterconditionvalue_bool_exp - ): pokemon_v2_encounterconditionvalue_aggregate! - - """ - fetch data from the table: "pokemon_v2_encounterconditionvalue" using primary key columns - """ - pokemon_v2_encounterconditionvalue_by_pk(id: Int!): pokemon_v2_encounterconditionvalue - - """ - fetch data from the table: "pokemon_v2_encounterconditionvaluemap" - """ - pokemon_v2_encounterconditionvaluemap( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterconditionvaluemap_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterconditionvaluemap_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterconditionvaluemap_bool_exp - ): [pokemon_v2_encounterconditionvaluemap!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_encounterconditionvaluemap" - """ - pokemon_v2_encounterconditionvaluemap_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterconditionvaluemap_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterconditionvaluemap_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterconditionvaluemap_bool_exp - ): pokemon_v2_encounterconditionvaluemap_aggregate! - - """ - fetch data from the table: "pokemon_v2_encounterconditionvaluemap" using primary key columns - """ - pokemon_v2_encounterconditionvaluemap_by_pk(id: Int!): pokemon_v2_encounterconditionvaluemap - - """ - fetch data from the table: "pokemon_v2_encounterconditionvaluename" - """ - pokemon_v2_encounterconditionvaluename( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterconditionvaluename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterconditionvaluename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterconditionvaluename_bool_exp - ): [pokemon_v2_encounterconditionvaluename!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_encounterconditionvaluename" - """ - pokemon_v2_encounterconditionvaluename_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterconditionvaluename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterconditionvaluename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterconditionvaluename_bool_exp - ): pokemon_v2_encounterconditionvaluename_aggregate! - - """ - fetch data from the table: "pokemon_v2_encounterconditionvaluename" using primary key columns - """ - pokemon_v2_encounterconditionvaluename_by_pk(id: Int!): pokemon_v2_encounterconditionvaluename - - """ - fetch data from the table: "pokemon_v2_encountermethod" - """ - pokemon_v2_encountermethod( - """distinct select on columns""" - distinct_on: [pokemon_v2_encountermethod_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encountermethod_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encountermethod_bool_exp - ): [pokemon_v2_encountermethod!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_encountermethod" - """ - pokemon_v2_encountermethod_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_encountermethod_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encountermethod_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encountermethod_bool_exp - ): pokemon_v2_encountermethod_aggregate! - - """ - fetch data from the table: "pokemon_v2_encountermethod" using primary key columns - """ - pokemon_v2_encountermethod_by_pk(id: Int!): pokemon_v2_encountermethod - - """ - fetch data from the table: "pokemon_v2_encountermethodname" - """ - pokemon_v2_encountermethodname( - """distinct select on columns""" - distinct_on: [pokemon_v2_encountermethodname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encountermethodname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encountermethodname_bool_exp - ): [pokemon_v2_encountermethodname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_encountermethodname" - """ - pokemon_v2_encountermethodname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_encountermethodname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encountermethodname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encountermethodname_bool_exp - ): pokemon_v2_encountermethodname_aggregate! - - """ - fetch data from the table: "pokemon_v2_encountermethodname" using primary key columns - """ - pokemon_v2_encountermethodname_by_pk(id: Int!): pokemon_v2_encountermethodname - - """ - fetch data from the table: "pokemon_v2_encounterslot" - """ - pokemon_v2_encounterslot( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterslot_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterslot_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterslot_bool_exp - ): [pokemon_v2_encounterslot!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_encounterslot" - """ - pokemon_v2_encounterslot_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterslot_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterslot_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterslot_bool_exp - ): pokemon_v2_encounterslot_aggregate! - - """ - fetch data from the table: "pokemon_v2_encounterslot" using primary key columns - """ - pokemon_v2_encounterslot_by_pk(id: Int!): pokemon_v2_encounterslot - - """ - fetch data from the table: "pokemon_v2_evolutionchain" - """ - pokemon_v2_evolutionchain( - """distinct select on columns""" - distinct_on: [pokemon_v2_evolutionchain_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_evolutionchain_order_by!] - - """filter the rows returned""" - where: pokemon_v2_evolutionchain_bool_exp - ): [pokemon_v2_evolutionchain!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_evolutionchain" - """ - pokemon_v2_evolutionchain_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_evolutionchain_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_evolutionchain_order_by!] - - """filter the rows returned""" - where: pokemon_v2_evolutionchain_bool_exp - ): pokemon_v2_evolutionchain_aggregate! - - """ - fetch data from the table: "pokemon_v2_evolutionchain" using primary key columns - """ - pokemon_v2_evolutionchain_by_pk(id: Int!): pokemon_v2_evolutionchain - - """ - fetch data from the table: "pokemon_v2_evolutiontrigger" - """ - pokemon_v2_evolutiontrigger( - """distinct select on columns""" - distinct_on: [pokemon_v2_evolutiontrigger_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_evolutiontrigger_order_by!] - - """filter the rows returned""" - where: pokemon_v2_evolutiontrigger_bool_exp - ): [pokemon_v2_evolutiontrigger!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_evolutiontrigger" - """ - pokemon_v2_evolutiontrigger_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_evolutiontrigger_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_evolutiontrigger_order_by!] - - """filter the rows returned""" - where: pokemon_v2_evolutiontrigger_bool_exp - ): pokemon_v2_evolutiontrigger_aggregate! - - """ - fetch data from the table: "pokemon_v2_evolutiontrigger" using primary key columns - """ - pokemon_v2_evolutiontrigger_by_pk(id: Int!): pokemon_v2_evolutiontrigger - - """ - fetch data from the table: "pokemon_v2_evolutiontriggername" - """ - pokemon_v2_evolutiontriggername( - """distinct select on columns""" - distinct_on: [pokemon_v2_evolutiontriggername_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_evolutiontriggername_order_by!] - - """filter the rows returned""" - where: pokemon_v2_evolutiontriggername_bool_exp - ): [pokemon_v2_evolutiontriggername!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_evolutiontriggername" - """ - pokemon_v2_evolutiontriggername_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_evolutiontriggername_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_evolutiontriggername_order_by!] - - """filter the rows returned""" - where: pokemon_v2_evolutiontriggername_bool_exp - ): pokemon_v2_evolutiontriggername_aggregate! - - """ - fetch data from the table: "pokemon_v2_evolutiontriggername" using primary key columns - """ - pokemon_v2_evolutiontriggername_by_pk(id: Int!): pokemon_v2_evolutiontriggername - - """ - fetch data from the table: "pokemon_v2_experience" - """ - pokemon_v2_experience( - """distinct select on columns""" - distinct_on: [pokemon_v2_experience_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_experience_order_by!] - - """filter the rows returned""" - where: pokemon_v2_experience_bool_exp - ): [pokemon_v2_experience!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_experience" - """ - pokemon_v2_experience_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_experience_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_experience_order_by!] - - """filter the rows returned""" - where: pokemon_v2_experience_bool_exp - ): pokemon_v2_experience_aggregate! - - """ - fetch data from the table: "pokemon_v2_experience" using primary key columns - """ - pokemon_v2_experience_by_pk(id: Int!): pokemon_v2_experience - - """ - fetch data from the table: "pokemon_v2_gender" - """ - pokemon_v2_gender( - """distinct select on columns""" - distinct_on: [pokemon_v2_gender_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_gender_order_by!] - - """filter the rows returned""" - where: pokemon_v2_gender_bool_exp - ): [pokemon_v2_gender!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_gender" - """ - pokemon_v2_gender_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_gender_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_gender_order_by!] - - """filter the rows returned""" - where: pokemon_v2_gender_bool_exp - ): pokemon_v2_gender_aggregate! - - """ - fetch data from the table: "pokemon_v2_gender" using primary key columns - """ - pokemon_v2_gender_by_pk(id: Int!): pokemon_v2_gender - - """ - fetch data from the table: "pokemon_v2_generation" - """ - pokemon_v2_generation( - """distinct select on columns""" - distinct_on: [pokemon_v2_generation_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_generation_order_by!] - - """filter the rows returned""" - where: pokemon_v2_generation_bool_exp - ): [pokemon_v2_generation!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_generation" - """ - pokemon_v2_generation_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_generation_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_generation_order_by!] - - """filter the rows returned""" - where: pokemon_v2_generation_bool_exp - ): pokemon_v2_generation_aggregate! - - """ - fetch data from the table: "pokemon_v2_generation" using primary key columns - """ - pokemon_v2_generation_by_pk(id: Int!): pokemon_v2_generation - - """ - fetch data from the table: "pokemon_v2_generationname" - """ - pokemon_v2_generationname( - """distinct select on columns""" - distinct_on: [pokemon_v2_generationname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_generationname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_generationname_bool_exp - ): [pokemon_v2_generationname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_generationname" - """ - pokemon_v2_generationname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_generationname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_generationname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_generationname_bool_exp - ): pokemon_v2_generationname_aggregate! - - """ - fetch data from the table: "pokemon_v2_generationname" using primary key columns - """ - pokemon_v2_generationname_by_pk(id: Int!): pokemon_v2_generationname - - """ - fetch data from the table: "pokemon_v2_growthrate" - """ - pokemon_v2_growthrate( - """distinct select on columns""" - distinct_on: [pokemon_v2_growthrate_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_growthrate_order_by!] - - """filter the rows returned""" - where: pokemon_v2_growthrate_bool_exp - ): [pokemon_v2_growthrate!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_growthrate" - """ - pokemon_v2_growthrate_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_growthrate_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_growthrate_order_by!] - - """filter the rows returned""" - where: pokemon_v2_growthrate_bool_exp - ): pokemon_v2_growthrate_aggregate! - - """ - fetch data from the table: "pokemon_v2_growthrate" using primary key columns - """ - pokemon_v2_growthrate_by_pk(id: Int!): pokemon_v2_growthrate - - """ - fetch data from the table: "pokemon_v2_growthratedescription" - """ - pokemon_v2_growthratedescription( - """distinct select on columns""" - distinct_on: [pokemon_v2_growthratedescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_growthratedescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_growthratedescription_bool_exp - ): [pokemon_v2_growthratedescription!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_growthratedescription" - """ - pokemon_v2_growthratedescription_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_growthratedescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_growthratedescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_growthratedescription_bool_exp - ): pokemon_v2_growthratedescription_aggregate! - - """ - fetch data from the table: "pokemon_v2_growthratedescription" using primary key columns - """ - pokemon_v2_growthratedescription_by_pk(id: Int!): pokemon_v2_growthratedescription - - """ - fetch data from the table: "pokemon_v2_item" - """ - pokemon_v2_item( - """distinct select on columns""" - distinct_on: [pokemon_v2_item_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_item_order_by!] - - """filter the rows returned""" - where: pokemon_v2_item_bool_exp - ): [pokemon_v2_item!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_item" - """ - pokemon_v2_item_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_item_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_item_order_by!] - - """filter the rows returned""" - where: pokemon_v2_item_bool_exp - ): pokemon_v2_item_aggregate! - - """fetch data from the table: "pokemon_v2_item" using primary key columns""" - pokemon_v2_item_by_pk(id: Int!): pokemon_v2_item - - """ - fetch data from the table: "pokemon_v2_itemattribute" - """ - pokemon_v2_itemattribute( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemattribute_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemattribute_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemattribute_bool_exp - ): [pokemon_v2_itemattribute!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_itemattribute" - """ - pokemon_v2_itemattribute_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemattribute_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemattribute_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemattribute_bool_exp - ): pokemon_v2_itemattribute_aggregate! - - """ - fetch data from the table: "pokemon_v2_itemattribute" using primary key columns - """ - pokemon_v2_itemattribute_by_pk(id: Int!): pokemon_v2_itemattribute - - """ - fetch data from the table: "pokemon_v2_itemattributedescription" - """ - pokemon_v2_itemattributedescription( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemattributedescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemattributedescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemattributedescription_bool_exp - ): [pokemon_v2_itemattributedescription!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_itemattributedescription" - """ - pokemon_v2_itemattributedescription_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemattributedescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemattributedescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemattributedescription_bool_exp - ): pokemon_v2_itemattributedescription_aggregate! - - """ - fetch data from the table: "pokemon_v2_itemattributedescription" using primary key columns - """ - pokemon_v2_itemattributedescription_by_pk(id: Int!): pokemon_v2_itemattributedescription - - """ - fetch data from the table: "pokemon_v2_itemattributemap" - """ - pokemon_v2_itemattributemap( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemattributemap_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemattributemap_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemattributemap_bool_exp - ): [pokemon_v2_itemattributemap!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_itemattributemap" - """ - pokemon_v2_itemattributemap_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemattributemap_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemattributemap_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemattributemap_bool_exp - ): pokemon_v2_itemattributemap_aggregate! - - """ - fetch data from the table: "pokemon_v2_itemattributemap" using primary key columns - """ - pokemon_v2_itemattributemap_by_pk(id: Int!): pokemon_v2_itemattributemap - - """ - fetch data from the table: "pokemon_v2_itemattributename" - """ - pokemon_v2_itemattributename( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemattributename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemattributename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemattributename_bool_exp - ): [pokemon_v2_itemattributename!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_itemattributename" - """ - pokemon_v2_itemattributename_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemattributename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemattributename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemattributename_bool_exp - ): pokemon_v2_itemattributename_aggregate! - - """ - fetch data from the table: "pokemon_v2_itemattributename" using primary key columns - """ - pokemon_v2_itemattributename_by_pk(id: Int!): pokemon_v2_itemattributename - - """ - fetch data from the table: "pokemon_v2_itemcategory" - """ - pokemon_v2_itemcategory( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemcategory_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemcategory_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemcategory_bool_exp - ): [pokemon_v2_itemcategory!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_itemcategory" - """ - pokemon_v2_itemcategory_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemcategory_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemcategory_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemcategory_bool_exp - ): pokemon_v2_itemcategory_aggregate! - - """ - fetch data from the table: "pokemon_v2_itemcategory" using primary key columns - """ - pokemon_v2_itemcategory_by_pk(id: Int!): pokemon_v2_itemcategory - - """ - fetch data from the table: "pokemon_v2_itemcategoryname" - """ - pokemon_v2_itemcategoryname( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemcategoryname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemcategoryname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemcategoryname_bool_exp - ): [pokemon_v2_itemcategoryname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_itemcategoryname" - """ - pokemon_v2_itemcategoryname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemcategoryname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemcategoryname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemcategoryname_bool_exp - ): pokemon_v2_itemcategoryname_aggregate! - - """ - fetch data from the table: "pokemon_v2_itemcategoryname" using primary key columns - """ - pokemon_v2_itemcategoryname_by_pk(id: Int!): pokemon_v2_itemcategoryname - - """ - fetch data from the table: "pokemon_v2_itemeffecttext" - """ - pokemon_v2_itemeffecttext( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemeffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemeffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemeffecttext_bool_exp - ): [pokemon_v2_itemeffecttext!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_itemeffecttext" - """ - pokemon_v2_itemeffecttext_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemeffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemeffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemeffecttext_bool_exp - ): pokemon_v2_itemeffecttext_aggregate! - - """ - fetch data from the table: "pokemon_v2_itemeffecttext" using primary key columns - """ - pokemon_v2_itemeffecttext_by_pk(id: Int!): pokemon_v2_itemeffecttext - - """ - fetch data from the table: "pokemon_v2_itemflavortext" - """ - pokemon_v2_itemflavortext( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemflavortext_bool_exp - ): [pokemon_v2_itemflavortext!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_itemflavortext" - """ - pokemon_v2_itemflavortext_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemflavortext_bool_exp - ): pokemon_v2_itemflavortext_aggregate! - - """ - fetch data from the table: "pokemon_v2_itemflavortext" using primary key columns - """ - pokemon_v2_itemflavortext_by_pk(id: Int!): pokemon_v2_itemflavortext - - """ - fetch data from the table: "pokemon_v2_itemflingeffect" - """ - pokemon_v2_itemflingeffect( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemflingeffect_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemflingeffect_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemflingeffect_bool_exp - ): [pokemon_v2_itemflingeffect!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_itemflingeffect" - """ - pokemon_v2_itemflingeffect_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemflingeffect_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemflingeffect_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemflingeffect_bool_exp - ): pokemon_v2_itemflingeffect_aggregate! - - """ - fetch data from the table: "pokemon_v2_itemflingeffect" using primary key columns - """ - pokemon_v2_itemflingeffect_by_pk(id: Int!): pokemon_v2_itemflingeffect - - """ - fetch data from the table: "pokemon_v2_itemflingeffecteffecttext" - """ - pokemon_v2_itemflingeffecteffecttext( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemflingeffecteffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemflingeffecteffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemflingeffecteffecttext_bool_exp - ): [pokemon_v2_itemflingeffecteffecttext!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_itemflingeffecteffecttext" - """ - pokemon_v2_itemflingeffecteffecttext_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemflingeffecteffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemflingeffecteffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemflingeffecteffecttext_bool_exp - ): pokemon_v2_itemflingeffecteffecttext_aggregate! - - """ - fetch data from the table: "pokemon_v2_itemflingeffecteffecttext" using primary key columns - """ - pokemon_v2_itemflingeffecteffecttext_by_pk(id: Int!): pokemon_v2_itemflingeffecteffecttext - - """ - fetch data from the table: "pokemon_v2_itemgameindex" - """ - pokemon_v2_itemgameindex( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemgameindex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemgameindex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemgameindex_bool_exp - ): [pokemon_v2_itemgameindex!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_itemgameindex" - """ - pokemon_v2_itemgameindex_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemgameindex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemgameindex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemgameindex_bool_exp - ): pokemon_v2_itemgameindex_aggregate! - - """ - fetch data from the table: "pokemon_v2_itemgameindex" using primary key columns - """ - pokemon_v2_itemgameindex_by_pk(id: Int!): pokemon_v2_itemgameindex - - """ - fetch data from the table: "pokemon_v2_itemname" - """ - pokemon_v2_itemname( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemname_bool_exp - ): [pokemon_v2_itemname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_itemname" - """ - pokemon_v2_itemname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemname_bool_exp - ): pokemon_v2_itemname_aggregate! - - """ - fetch data from the table: "pokemon_v2_itemname" using primary key columns - """ - pokemon_v2_itemname_by_pk(id: Int!): pokemon_v2_itemname - - """ - fetch data from the table: "pokemon_v2_itempocket" - """ - pokemon_v2_itempocket( - """distinct select on columns""" - distinct_on: [pokemon_v2_itempocket_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itempocket_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itempocket_bool_exp - ): [pokemon_v2_itempocket!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_itempocket" - """ - pokemon_v2_itempocket_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itempocket_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itempocket_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itempocket_bool_exp - ): pokemon_v2_itempocket_aggregate! - - """ - fetch data from the table: "pokemon_v2_itempocket" using primary key columns - """ - pokemon_v2_itempocket_by_pk(id: Int!): pokemon_v2_itempocket - - """ - fetch data from the table: "pokemon_v2_itempocketname" - """ - pokemon_v2_itempocketname( - """distinct select on columns""" - distinct_on: [pokemon_v2_itempocketname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itempocketname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itempocketname_bool_exp - ): [pokemon_v2_itempocketname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_itempocketname" - """ - pokemon_v2_itempocketname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itempocketname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itempocketname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itempocketname_bool_exp - ): pokemon_v2_itempocketname_aggregate! - - """ - fetch data from the table: "pokemon_v2_itempocketname" using primary key columns - """ - pokemon_v2_itempocketname_by_pk(id: Int!): pokemon_v2_itempocketname - - """An array relationship""" - pokemon_v2_itemsprites( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemsprites_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemsprites_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemsprites_bool_exp - ): [pokemon_v2_itemsprites!]! - - """An aggregate relationship""" - pokemon_v2_itemsprites_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemsprites_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemsprites_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemsprites_bool_exp - ): pokemon_v2_itemsprites_aggregate! - - """ - fetch data from the table: "pokemon_v2_itemsprites" using primary key columns - """ - pokemon_v2_itemsprites_by_pk(id: Int!): pokemon_v2_itemsprites - - """ - fetch data from the table: "pokemon_v2_language" - """ - pokemon_v2_language( - """distinct select on columns""" - distinct_on: [pokemon_v2_language_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_language_order_by!] - - """filter the rows returned""" - where: pokemon_v2_language_bool_exp - ): [pokemon_v2_language!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_language" - """ - pokemon_v2_language_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_language_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_language_order_by!] - - """filter the rows returned""" - where: pokemon_v2_language_bool_exp - ): pokemon_v2_language_aggregate! - - """ - fetch data from the table: "pokemon_v2_language" using primary key columns - """ - pokemon_v2_language_by_pk(id: Int!): pokemon_v2_language - - """ - fetch data from the table: "pokemon_v2_languagename" - """ - pokemon_v2_languagename( - """distinct select on columns""" - distinct_on: [pokemon_v2_languagename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_languagename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_languagename_bool_exp - ): [pokemon_v2_languagename!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_languagename" - """ - pokemon_v2_languagename_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_languagename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_languagename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_languagename_bool_exp - ): pokemon_v2_languagename_aggregate! - - """ - fetch data from the table: "pokemon_v2_languagename" using primary key columns - """ - pokemon_v2_languagename_by_pk(id: Int!): pokemon_v2_languagename - - """ - fetch data from the table: "pokemon_v2_location" - """ - pokemon_v2_location( - """distinct select on columns""" - distinct_on: [pokemon_v2_location_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_location_order_by!] - - """filter the rows returned""" - where: pokemon_v2_location_bool_exp - ): [pokemon_v2_location!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_location" - """ - pokemon_v2_location_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_location_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_location_order_by!] - - """filter the rows returned""" - where: pokemon_v2_location_bool_exp - ): pokemon_v2_location_aggregate! - - """ - fetch data from the table: "pokemon_v2_location" using primary key columns - """ - pokemon_v2_location_by_pk(id: Int!): pokemon_v2_location - - """ - fetch data from the table: "pokemon_v2_locationarea" - """ - pokemon_v2_locationarea( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationarea_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationarea_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationarea_bool_exp - ): [pokemon_v2_locationarea!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_locationarea" - """ - pokemon_v2_locationarea_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationarea_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationarea_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationarea_bool_exp - ): pokemon_v2_locationarea_aggregate! - - """ - fetch data from the table: "pokemon_v2_locationarea" using primary key columns - """ - pokemon_v2_locationarea_by_pk(id: Int!): pokemon_v2_locationarea - - """ - fetch data from the table: "pokemon_v2_locationareaencounterrate" - """ - pokemon_v2_locationareaencounterrate( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationareaencounterrate_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationareaencounterrate_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationareaencounterrate_bool_exp - ): [pokemon_v2_locationareaencounterrate!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_locationareaencounterrate" - """ - pokemon_v2_locationareaencounterrate_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationareaencounterrate_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationareaencounterrate_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationareaencounterrate_bool_exp - ): pokemon_v2_locationareaencounterrate_aggregate! - - """ - fetch data from the table: "pokemon_v2_locationareaencounterrate" using primary key columns - """ - pokemon_v2_locationareaencounterrate_by_pk(id: Int!): pokemon_v2_locationareaencounterrate - - """ - fetch data from the table: "pokemon_v2_locationareaname" - """ - pokemon_v2_locationareaname( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationareaname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationareaname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationareaname_bool_exp - ): [pokemon_v2_locationareaname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_locationareaname" - """ - pokemon_v2_locationareaname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationareaname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationareaname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationareaname_bool_exp - ): pokemon_v2_locationareaname_aggregate! - - """ - fetch data from the table: "pokemon_v2_locationareaname" using primary key columns - """ - pokemon_v2_locationareaname_by_pk(id: Int!): pokemon_v2_locationareaname - - """ - fetch data from the table: "pokemon_v2_locationgameindex" - """ - pokemon_v2_locationgameindex( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationgameindex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationgameindex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationgameindex_bool_exp - ): [pokemon_v2_locationgameindex!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_locationgameindex" - """ - pokemon_v2_locationgameindex_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationgameindex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationgameindex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationgameindex_bool_exp - ): pokemon_v2_locationgameindex_aggregate! - - """ - fetch data from the table: "pokemon_v2_locationgameindex" using primary key columns - """ - pokemon_v2_locationgameindex_by_pk(id: Int!): pokemon_v2_locationgameindex - - """ - fetch data from the table: "pokemon_v2_locationname" - """ - pokemon_v2_locationname( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationname_bool_exp - ): [pokemon_v2_locationname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_locationname" - """ - pokemon_v2_locationname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationname_bool_exp - ): pokemon_v2_locationname_aggregate! - - """ - fetch data from the table: "pokemon_v2_locationname" using primary key columns - """ - pokemon_v2_locationname_by_pk(id: Int!): pokemon_v2_locationname - - """ - fetch data from the table: "pokemon_v2_machine" - """ - pokemon_v2_machine( - """distinct select on columns""" - distinct_on: [pokemon_v2_machine_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_machine_order_by!] - - """filter the rows returned""" - where: pokemon_v2_machine_bool_exp - ): [pokemon_v2_machine!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_machine" - """ - pokemon_v2_machine_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_machine_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_machine_order_by!] - - """filter the rows returned""" - where: pokemon_v2_machine_bool_exp - ): pokemon_v2_machine_aggregate! - - """ - fetch data from the table: "pokemon_v2_machine" using primary key columns - """ - pokemon_v2_machine_by_pk(id: Int!): pokemon_v2_machine - - """ - fetch data from the table: "pokemon_v2_move" - """ - pokemon_v2_move( - """distinct select on columns""" - distinct_on: [pokemon_v2_move_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_move_order_by!] - - """filter the rows returned""" - where: pokemon_v2_move_bool_exp - ): [pokemon_v2_move!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_move" - """ - pokemon_v2_move_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_move_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_move_order_by!] - - """filter the rows returned""" - where: pokemon_v2_move_bool_exp - ): pokemon_v2_move_aggregate! - - """fetch data from the table: "pokemon_v2_move" using primary key columns""" - pokemon_v2_move_by_pk(id: Int!): pokemon_v2_move - - """ - fetch data from the table: "pokemon_v2_moveattribute" - """ - pokemon_v2_moveattribute( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveattribute_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveattribute_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveattribute_bool_exp - ): [pokemon_v2_moveattribute!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_moveattribute" - """ - pokemon_v2_moveattribute_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveattribute_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveattribute_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveattribute_bool_exp - ): pokemon_v2_moveattribute_aggregate! - - """ - fetch data from the table: "pokemon_v2_moveattribute" using primary key columns - """ - pokemon_v2_moveattribute_by_pk(id: Int!): pokemon_v2_moveattribute - - """ - fetch data from the table: "pokemon_v2_moveattributedescription" - """ - pokemon_v2_moveattributedescription( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveattributedescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveattributedescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveattributedescription_bool_exp - ): [pokemon_v2_moveattributedescription!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_moveattributedescription" - """ - pokemon_v2_moveattributedescription_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveattributedescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveattributedescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveattributedescription_bool_exp - ): pokemon_v2_moveattributedescription_aggregate! - - """ - fetch data from the table: "pokemon_v2_moveattributedescription" using primary key columns - """ - pokemon_v2_moveattributedescription_by_pk(id: Int!): pokemon_v2_moveattributedescription - - """ - fetch data from the table: "pokemon_v2_moveattributemap" - """ - pokemon_v2_moveattributemap( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveattributemap_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveattributemap_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveattributemap_bool_exp - ): [pokemon_v2_moveattributemap!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_moveattributemap" - """ - pokemon_v2_moveattributemap_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveattributemap_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveattributemap_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveattributemap_bool_exp - ): pokemon_v2_moveattributemap_aggregate! - - """ - fetch data from the table: "pokemon_v2_moveattributemap" using primary key columns - """ - pokemon_v2_moveattributemap_by_pk(id: Int!): pokemon_v2_moveattributemap - - """ - fetch data from the table: "pokemon_v2_moveattributename" - """ - pokemon_v2_moveattributename( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveattributename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveattributename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveattributename_bool_exp - ): [pokemon_v2_moveattributename!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_moveattributename" - """ - pokemon_v2_moveattributename_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveattributename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveattributename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveattributename_bool_exp - ): pokemon_v2_moveattributename_aggregate! - - """ - fetch data from the table: "pokemon_v2_moveattributename" using primary key columns - """ - pokemon_v2_moveattributename_by_pk(id: Int!): pokemon_v2_moveattributename - - """ - fetch data from the table: "pokemon_v2_movebattlestyle" - """ - pokemon_v2_movebattlestyle( - """distinct select on columns""" - distinct_on: [pokemon_v2_movebattlestyle_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movebattlestyle_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movebattlestyle_bool_exp - ): [pokemon_v2_movebattlestyle!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movebattlestyle" - """ - pokemon_v2_movebattlestyle_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movebattlestyle_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movebattlestyle_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movebattlestyle_bool_exp - ): pokemon_v2_movebattlestyle_aggregate! - - """ - fetch data from the table: "pokemon_v2_movebattlestyle" using primary key columns - """ - pokemon_v2_movebattlestyle_by_pk(id: Int!): pokemon_v2_movebattlestyle - - """ - fetch data from the table: "pokemon_v2_movebattlestylename" - """ - pokemon_v2_movebattlestylename( - """distinct select on columns""" - distinct_on: [pokemon_v2_movebattlestylename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movebattlestylename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movebattlestylename_bool_exp - ): [pokemon_v2_movebattlestylename!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movebattlestylename" - """ - pokemon_v2_movebattlestylename_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movebattlestylename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movebattlestylename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movebattlestylename_bool_exp - ): pokemon_v2_movebattlestylename_aggregate! - - """ - fetch data from the table: "pokemon_v2_movebattlestylename" using primary key columns - """ - pokemon_v2_movebattlestylename_by_pk(id: Int!): pokemon_v2_movebattlestylename - - """ - fetch data from the table: "pokemon_v2_movechange" - """ - pokemon_v2_movechange( - """distinct select on columns""" - distinct_on: [pokemon_v2_movechange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movechange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movechange_bool_exp - ): [pokemon_v2_movechange!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movechange" - """ - pokemon_v2_movechange_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movechange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movechange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movechange_bool_exp - ): pokemon_v2_movechange_aggregate! - - """ - fetch data from the table: "pokemon_v2_movechange" using primary key columns - """ - pokemon_v2_movechange_by_pk(id: Int!): pokemon_v2_movechange - - """ - fetch data from the table: "pokemon_v2_movedamageclass" - """ - pokemon_v2_movedamageclass( - """distinct select on columns""" - distinct_on: [pokemon_v2_movedamageclass_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movedamageclass_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movedamageclass_bool_exp - ): [pokemon_v2_movedamageclass!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movedamageclass" - """ - pokemon_v2_movedamageclass_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movedamageclass_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movedamageclass_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movedamageclass_bool_exp - ): pokemon_v2_movedamageclass_aggregate! - - """ - fetch data from the table: "pokemon_v2_movedamageclass" using primary key columns - """ - pokemon_v2_movedamageclass_by_pk(id: Int!): pokemon_v2_movedamageclass - - """ - fetch data from the table: "pokemon_v2_movedamageclassdescription" - """ - pokemon_v2_movedamageclassdescription( - """distinct select on columns""" - distinct_on: [pokemon_v2_movedamageclassdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movedamageclassdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movedamageclassdescription_bool_exp - ): [pokemon_v2_movedamageclassdescription!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movedamageclassdescription" - """ - pokemon_v2_movedamageclassdescription_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movedamageclassdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movedamageclassdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movedamageclassdescription_bool_exp - ): pokemon_v2_movedamageclassdescription_aggregate! - - """ - fetch data from the table: "pokemon_v2_movedamageclassdescription" using primary key columns - """ - pokemon_v2_movedamageclassdescription_by_pk(id: Int!): pokemon_v2_movedamageclassdescription - - """ - fetch data from the table: "pokemon_v2_movedamageclassname" - """ - pokemon_v2_movedamageclassname( - """distinct select on columns""" - distinct_on: [pokemon_v2_movedamageclassname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movedamageclassname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movedamageclassname_bool_exp - ): [pokemon_v2_movedamageclassname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movedamageclassname" - """ - pokemon_v2_movedamageclassname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movedamageclassname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movedamageclassname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movedamageclassname_bool_exp - ): pokemon_v2_movedamageclassname_aggregate! - - """ - fetch data from the table: "pokemon_v2_movedamageclassname" using primary key columns - """ - pokemon_v2_movedamageclassname_by_pk(id: Int!): pokemon_v2_movedamageclassname - - """ - fetch data from the table: "pokemon_v2_moveeffect" - """ - pokemon_v2_moveeffect( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveeffect_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveeffect_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveeffect_bool_exp - ): [pokemon_v2_moveeffect!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_moveeffect" - """ - pokemon_v2_moveeffect_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveeffect_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveeffect_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveeffect_bool_exp - ): pokemon_v2_moveeffect_aggregate! - - """ - fetch data from the table: "pokemon_v2_moveeffect" using primary key columns - """ - pokemon_v2_moveeffect_by_pk(id: Int!): pokemon_v2_moveeffect - - """ - fetch data from the table: "pokemon_v2_moveeffectchange" - """ - pokemon_v2_moveeffectchange( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveeffectchange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveeffectchange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveeffectchange_bool_exp - ): [pokemon_v2_moveeffectchange!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_moveeffectchange" - """ - pokemon_v2_moveeffectchange_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveeffectchange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveeffectchange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveeffectchange_bool_exp - ): pokemon_v2_moveeffectchange_aggregate! - - """ - fetch data from the table: "pokemon_v2_moveeffectchange" using primary key columns - """ - pokemon_v2_moveeffectchange_by_pk(id: Int!): pokemon_v2_moveeffectchange - - """ - fetch data from the table: "pokemon_v2_moveeffectchangeeffecttext" - """ - pokemon_v2_moveeffectchangeeffecttext( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveeffectchangeeffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveeffectchangeeffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveeffectchangeeffecttext_bool_exp - ): [pokemon_v2_moveeffectchangeeffecttext!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_moveeffectchangeeffecttext" - """ - pokemon_v2_moveeffectchangeeffecttext_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveeffectchangeeffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveeffectchangeeffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveeffectchangeeffecttext_bool_exp - ): pokemon_v2_moveeffectchangeeffecttext_aggregate! - - """ - fetch data from the table: "pokemon_v2_moveeffectchangeeffecttext" using primary key columns - """ - pokemon_v2_moveeffectchangeeffecttext_by_pk(id: Int!): pokemon_v2_moveeffectchangeeffecttext - - """ - fetch data from the table: "pokemon_v2_moveeffecteffecttext" - """ - pokemon_v2_moveeffecteffecttext( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveeffecteffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveeffecteffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveeffecteffecttext_bool_exp - ): [pokemon_v2_moveeffecteffecttext!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_moveeffecteffecttext" - """ - pokemon_v2_moveeffecteffecttext_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveeffecteffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveeffecteffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveeffecteffecttext_bool_exp - ): pokemon_v2_moveeffecteffecttext_aggregate! - - """ - fetch data from the table: "pokemon_v2_moveeffecteffecttext" using primary key columns - """ - pokemon_v2_moveeffecteffecttext_by_pk(id: Int!): pokemon_v2_moveeffecteffecttext - - """ - fetch data from the table: "pokemon_v2_moveflavortext" - """ - pokemon_v2_moveflavortext( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveflavortext_bool_exp - ): [pokemon_v2_moveflavortext!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_moveflavortext" - """ - pokemon_v2_moveflavortext_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveflavortext_bool_exp - ): pokemon_v2_moveflavortext_aggregate! - - """ - fetch data from the table: "pokemon_v2_moveflavortext" using primary key columns - """ - pokemon_v2_moveflavortext_by_pk(id: Int!): pokemon_v2_moveflavortext - - """ - fetch data from the table: "pokemon_v2_movelearnmethod" - """ - pokemon_v2_movelearnmethod( - """distinct select on columns""" - distinct_on: [pokemon_v2_movelearnmethod_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movelearnmethod_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movelearnmethod_bool_exp - ): [pokemon_v2_movelearnmethod!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movelearnmethod" - """ - pokemon_v2_movelearnmethod_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movelearnmethod_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movelearnmethod_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movelearnmethod_bool_exp - ): pokemon_v2_movelearnmethod_aggregate! - - """ - fetch data from the table: "pokemon_v2_movelearnmethod" using primary key columns - """ - pokemon_v2_movelearnmethod_by_pk(id: Int!): pokemon_v2_movelearnmethod - - """ - fetch data from the table: "pokemon_v2_movelearnmethoddescription" - """ - pokemon_v2_movelearnmethoddescription( - """distinct select on columns""" - distinct_on: [pokemon_v2_movelearnmethoddescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movelearnmethoddescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movelearnmethoddescription_bool_exp - ): [pokemon_v2_movelearnmethoddescription!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movelearnmethoddescription" - """ - pokemon_v2_movelearnmethoddescription_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movelearnmethoddescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movelearnmethoddescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movelearnmethoddescription_bool_exp - ): pokemon_v2_movelearnmethoddescription_aggregate! - - """ - fetch data from the table: "pokemon_v2_movelearnmethoddescription" using primary key columns - """ - pokemon_v2_movelearnmethoddescription_by_pk(id: Int!): pokemon_v2_movelearnmethoddescription - - """ - fetch data from the table: "pokemon_v2_movelearnmethodname" - """ - pokemon_v2_movelearnmethodname( - """distinct select on columns""" - distinct_on: [pokemon_v2_movelearnmethodname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movelearnmethodname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movelearnmethodname_bool_exp - ): [pokemon_v2_movelearnmethodname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movelearnmethodname" - """ - pokemon_v2_movelearnmethodname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movelearnmethodname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movelearnmethodname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movelearnmethodname_bool_exp - ): pokemon_v2_movelearnmethodname_aggregate! - - """ - fetch data from the table: "pokemon_v2_movelearnmethodname" using primary key columns - """ - pokemon_v2_movelearnmethodname_by_pk(id: Int!): pokemon_v2_movelearnmethodname - - """An array relationship""" - pokemon_v2_movemeta( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemeta_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemeta_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemeta_bool_exp - ): [pokemon_v2_movemeta!]! - - """An aggregate relationship""" - pokemon_v2_movemeta_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemeta_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemeta_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemeta_bool_exp - ): pokemon_v2_movemeta_aggregate! - - """ - fetch data from the table: "pokemon_v2_movemeta" using primary key columns - """ - pokemon_v2_movemeta_by_pk(id: Int!): pokemon_v2_movemeta - - """ - fetch data from the table: "pokemon_v2_movemetaailment" - """ - pokemon_v2_movemetaailment( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemetaailment_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemetaailment_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemetaailment_bool_exp - ): [pokemon_v2_movemetaailment!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movemetaailment" - """ - pokemon_v2_movemetaailment_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemetaailment_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemetaailment_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemetaailment_bool_exp - ): pokemon_v2_movemetaailment_aggregate! - - """ - fetch data from the table: "pokemon_v2_movemetaailment" using primary key columns - """ - pokemon_v2_movemetaailment_by_pk(id: Int!): pokemon_v2_movemetaailment - - """ - fetch data from the table: "pokemon_v2_movemetaailmentname" - """ - pokemon_v2_movemetaailmentname( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemetaailmentname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemetaailmentname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemetaailmentname_bool_exp - ): [pokemon_v2_movemetaailmentname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movemetaailmentname" - """ - pokemon_v2_movemetaailmentname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemetaailmentname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemetaailmentname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemetaailmentname_bool_exp - ): pokemon_v2_movemetaailmentname_aggregate! - - """ - fetch data from the table: "pokemon_v2_movemetaailmentname" using primary key columns - """ - pokemon_v2_movemetaailmentname_by_pk(id: Int!): pokemon_v2_movemetaailmentname - - """ - fetch data from the table: "pokemon_v2_movemetacategory" - """ - pokemon_v2_movemetacategory( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemetacategory_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemetacategory_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemetacategory_bool_exp - ): [pokemon_v2_movemetacategory!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movemetacategory" - """ - pokemon_v2_movemetacategory_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemetacategory_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemetacategory_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemetacategory_bool_exp - ): pokemon_v2_movemetacategory_aggregate! - - """ - fetch data from the table: "pokemon_v2_movemetacategory" using primary key columns - """ - pokemon_v2_movemetacategory_by_pk(id: Int!): pokemon_v2_movemetacategory - - """ - fetch data from the table: "pokemon_v2_movemetacategorydescription" - """ - pokemon_v2_movemetacategorydescription( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemetacategorydescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemetacategorydescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemetacategorydescription_bool_exp - ): [pokemon_v2_movemetacategorydescription!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movemetacategorydescription" - """ - pokemon_v2_movemetacategorydescription_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemetacategorydescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemetacategorydescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemetacategorydescription_bool_exp - ): pokemon_v2_movemetacategorydescription_aggregate! - - """ - fetch data from the table: "pokemon_v2_movemetacategorydescription" using primary key columns - """ - pokemon_v2_movemetacategorydescription_by_pk(id: Int!): pokemon_v2_movemetacategorydescription - - """ - fetch data from the table: "pokemon_v2_movemetastatchange" - """ - pokemon_v2_movemetastatchange( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemetastatchange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemetastatchange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemetastatchange_bool_exp - ): [pokemon_v2_movemetastatchange!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movemetastatchange" - """ - pokemon_v2_movemetastatchange_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemetastatchange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemetastatchange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemetastatchange_bool_exp - ): pokemon_v2_movemetastatchange_aggregate! - - """ - fetch data from the table: "pokemon_v2_movemetastatchange" using primary key columns - """ - pokemon_v2_movemetastatchange_by_pk(id: Int!): pokemon_v2_movemetastatchange - - """ - fetch data from the table: "pokemon_v2_movename" - """ - pokemon_v2_movename( - """distinct select on columns""" - distinct_on: [pokemon_v2_movename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movename_bool_exp - ): [pokemon_v2_movename!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movename" - """ - pokemon_v2_movename_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movename_bool_exp - ): pokemon_v2_movename_aggregate! - - """ - fetch data from the table: "pokemon_v2_movename" using primary key columns - """ - pokemon_v2_movename_by_pk(id: Int!): pokemon_v2_movename - - """ - fetch data from the table: "pokemon_v2_movetarget" - """ - pokemon_v2_movetarget( - """distinct select on columns""" - distinct_on: [pokemon_v2_movetarget_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movetarget_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movetarget_bool_exp - ): [pokemon_v2_movetarget!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movetarget" - """ - pokemon_v2_movetarget_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movetarget_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movetarget_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movetarget_bool_exp - ): pokemon_v2_movetarget_aggregate! - - """ - fetch data from the table: "pokemon_v2_movetarget" using primary key columns - """ - pokemon_v2_movetarget_by_pk(id: Int!): pokemon_v2_movetarget - - """ - fetch data from the table: "pokemon_v2_movetargetdescription" - """ - pokemon_v2_movetargetdescription( - """distinct select on columns""" - distinct_on: [pokemon_v2_movetargetdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movetargetdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movetargetdescription_bool_exp - ): [pokemon_v2_movetargetdescription!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movetargetdescription" - """ - pokemon_v2_movetargetdescription_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movetargetdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movetargetdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movetargetdescription_bool_exp - ): pokemon_v2_movetargetdescription_aggregate! - - """ - fetch data from the table: "pokemon_v2_movetargetdescription" using primary key columns - """ - pokemon_v2_movetargetdescription_by_pk(id: Int!): pokemon_v2_movetargetdescription - - """ - fetch data from the table: "pokemon_v2_movetargetname" - """ - pokemon_v2_movetargetname( - """distinct select on columns""" - distinct_on: [pokemon_v2_movetargetname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movetargetname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movetargetname_bool_exp - ): [pokemon_v2_movetargetname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movetargetname" - """ - pokemon_v2_movetargetname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movetargetname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movetargetname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movetargetname_bool_exp - ): pokemon_v2_movetargetname_aggregate! - - """ - fetch data from the table: "pokemon_v2_movetargetname" using primary key columns - """ - pokemon_v2_movetargetname_by_pk(id: Int!): pokemon_v2_movetargetname - - """ - fetch data from the table: "pokemon_v2_nature" - """ - pokemon_v2_nature( - """distinct select on columns""" - distinct_on: [pokemon_v2_nature_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_nature_order_by!] - - """filter the rows returned""" - where: pokemon_v2_nature_bool_exp - ): [pokemon_v2_nature!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_nature" - """ - pokemon_v2_nature_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_nature_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_nature_order_by!] - - """filter the rows returned""" - where: pokemon_v2_nature_bool_exp - ): pokemon_v2_nature_aggregate! - - """ - fetch data from the table: "pokemon_v2_nature" using primary key columns - """ - pokemon_v2_nature_by_pk(id: Int!): pokemon_v2_nature - - """ - fetch data from the table: "pokemon_v2_naturebattlestylepreference" - """ - pokemon_v2_naturebattlestylepreference( - """distinct select on columns""" - distinct_on: [pokemon_v2_naturebattlestylepreference_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_naturebattlestylepreference_order_by!] - - """filter the rows returned""" - where: pokemon_v2_naturebattlestylepreference_bool_exp - ): [pokemon_v2_naturebattlestylepreference!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_naturebattlestylepreference" - """ - pokemon_v2_naturebattlestylepreference_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_naturebattlestylepreference_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_naturebattlestylepreference_order_by!] - - """filter the rows returned""" - where: pokemon_v2_naturebattlestylepreference_bool_exp - ): pokemon_v2_naturebattlestylepreference_aggregate! - - """ - fetch data from the table: "pokemon_v2_naturebattlestylepreference" using primary key columns - """ - pokemon_v2_naturebattlestylepreference_by_pk(id: Int!): pokemon_v2_naturebattlestylepreference - - """ - fetch data from the table: "pokemon_v2_naturename" - """ - pokemon_v2_naturename( - """distinct select on columns""" - distinct_on: [pokemon_v2_naturename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_naturename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_naturename_bool_exp - ): [pokemon_v2_naturename!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_naturename" - """ - pokemon_v2_naturename_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_naturename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_naturename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_naturename_bool_exp - ): pokemon_v2_naturename_aggregate! - - """ - fetch data from the table: "pokemon_v2_naturename" using primary key columns - """ - pokemon_v2_naturename_by_pk(id: Int!): pokemon_v2_naturename - - """ - fetch data from the table: "pokemon_v2_naturepokeathlonstat" - """ - pokemon_v2_naturepokeathlonstat( - """distinct select on columns""" - distinct_on: [pokemon_v2_naturepokeathlonstat_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_naturepokeathlonstat_order_by!] - - """filter the rows returned""" - where: pokemon_v2_naturepokeathlonstat_bool_exp - ): [pokemon_v2_naturepokeathlonstat!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_naturepokeathlonstat" - """ - pokemon_v2_naturepokeathlonstat_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_naturepokeathlonstat_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_naturepokeathlonstat_order_by!] - - """filter the rows returned""" - where: pokemon_v2_naturepokeathlonstat_bool_exp - ): pokemon_v2_naturepokeathlonstat_aggregate! - - """ - fetch data from the table: "pokemon_v2_naturepokeathlonstat" using primary key columns - """ - pokemon_v2_naturepokeathlonstat_by_pk(id: Int!): pokemon_v2_naturepokeathlonstat - - """ - fetch data from the table: "pokemon_v2_palpark" - """ - pokemon_v2_palpark( - """distinct select on columns""" - distinct_on: [pokemon_v2_palpark_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_palpark_order_by!] - - """filter the rows returned""" - where: pokemon_v2_palpark_bool_exp - ): [pokemon_v2_palpark!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_palpark" - """ - pokemon_v2_palpark_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_palpark_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_palpark_order_by!] - - """filter the rows returned""" - where: pokemon_v2_palpark_bool_exp - ): pokemon_v2_palpark_aggregate! - - """ - fetch data from the table: "pokemon_v2_palpark" using primary key columns - """ - pokemon_v2_palpark_by_pk(id: Int!): pokemon_v2_palpark - - """ - fetch data from the table: "pokemon_v2_palparkarea" - """ - pokemon_v2_palparkarea( - """distinct select on columns""" - distinct_on: [pokemon_v2_palparkarea_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_palparkarea_order_by!] - - """filter the rows returned""" - where: pokemon_v2_palparkarea_bool_exp - ): [pokemon_v2_palparkarea!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_palparkarea" - """ - pokemon_v2_palparkarea_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_palparkarea_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_palparkarea_order_by!] - - """filter the rows returned""" - where: pokemon_v2_palparkarea_bool_exp - ): pokemon_v2_palparkarea_aggregate! - - """ - fetch data from the table: "pokemon_v2_palparkarea" using primary key columns - """ - pokemon_v2_palparkarea_by_pk(id: Int!): pokemon_v2_palparkarea - - """ - fetch data from the table: "pokemon_v2_palparkareaname" - """ - pokemon_v2_palparkareaname( - """distinct select on columns""" - distinct_on: [pokemon_v2_palparkareaname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_palparkareaname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_palparkareaname_bool_exp - ): [pokemon_v2_palparkareaname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_palparkareaname" - """ - pokemon_v2_palparkareaname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_palparkareaname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_palparkareaname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_palparkareaname_bool_exp - ): pokemon_v2_palparkareaname_aggregate! - - """ - fetch data from the table: "pokemon_v2_palparkareaname" using primary key columns - """ - pokemon_v2_palparkareaname_by_pk(id: Int!): pokemon_v2_palparkareaname - - """ - fetch data from the table: "pokemon_v2_pokeathlonstat" - """ - pokemon_v2_pokeathlonstat( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokeathlonstat_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokeathlonstat_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokeathlonstat_bool_exp - ): [pokemon_v2_pokeathlonstat!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokeathlonstat" - """ - pokemon_v2_pokeathlonstat_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokeathlonstat_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokeathlonstat_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokeathlonstat_bool_exp - ): pokemon_v2_pokeathlonstat_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokeathlonstat" using primary key columns - """ - pokemon_v2_pokeathlonstat_by_pk(id: Int!): pokemon_v2_pokeathlonstat - - """ - fetch data from the table: "pokemon_v2_pokeathlonstatname" - """ - pokemon_v2_pokeathlonstatname( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokeathlonstatname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokeathlonstatname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokeathlonstatname_bool_exp - ): [pokemon_v2_pokeathlonstatname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokeathlonstatname" - """ - pokemon_v2_pokeathlonstatname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokeathlonstatname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokeathlonstatname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokeathlonstatname_bool_exp - ): pokemon_v2_pokeathlonstatname_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokeathlonstatname" using primary key columns - """ - pokemon_v2_pokeathlonstatname_by_pk(id: Int!): pokemon_v2_pokeathlonstatname - - """ - fetch data from the table: "pokemon_v2_pokedex" - """ - pokemon_v2_pokedex( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokedex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokedex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokedex_bool_exp - ): [pokemon_v2_pokedex!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokedex" - """ - pokemon_v2_pokedex_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokedex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokedex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokedex_bool_exp - ): pokemon_v2_pokedex_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokedex" using primary key columns - """ - pokemon_v2_pokedex_by_pk(id: Int!): pokemon_v2_pokedex - - """ - fetch data from the table: "pokemon_v2_pokedexdescription" - """ - pokemon_v2_pokedexdescription( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokedexdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokedexdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokedexdescription_bool_exp - ): [pokemon_v2_pokedexdescription!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokedexdescription" - """ - pokemon_v2_pokedexdescription_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokedexdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokedexdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokedexdescription_bool_exp - ): pokemon_v2_pokedexdescription_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokedexdescription" using primary key columns - """ - pokemon_v2_pokedexdescription_by_pk(id: Int!): pokemon_v2_pokedexdescription - - """ - fetch data from the table: "pokemon_v2_pokedexname" - """ - pokemon_v2_pokedexname( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokedexname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokedexname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokedexname_bool_exp - ): [pokemon_v2_pokedexname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokedexname" - """ - pokemon_v2_pokedexname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokedexname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokedexname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokedexname_bool_exp - ): pokemon_v2_pokedexname_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokedexname" using primary key columns - """ - pokemon_v2_pokedexname_by_pk(id: Int!): pokemon_v2_pokedexname - - """ - fetch data from the table: "pokemon_v2_pokedexversiongroup" - """ - pokemon_v2_pokedexversiongroup( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokedexversiongroup_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokedexversiongroup_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokedexversiongroup_bool_exp - ): [pokemon_v2_pokedexversiongroup!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokedexversiongroup" - """ - pokemon_v2_pokedexversiongroup_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokedexversiongroup_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokedexversiongroup_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokedexversiongroup_bool_exp - ): pokemon_v2_pokedexversiongroup_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokedexversiongroup" using primary key columns - """ - pokemon_v2_pokedexversiongroup_by_pk(id: Int!): pokemon_v2_pokedexversiongroup - - """ - fetch data from the table: "pokemon_v2_pokemon" - """ - pokemon_v2_pokemon( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemon_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemon_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemon_bool_exp - ): [pokemon_v2_pokemon!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemon" - """ - pokemon_v2_pokemon_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemon_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemon_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemon_bool_exp - ): pokemon_v2_pokemon_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemon" using primary key columns - """ - pokemon_v2_pokemon_by_pk(id: Int!): pokemon_v2_pokemon - - """ - fetch data from the table: "pokemon_v2_pokemonability" - """ - pokemon_v2_pokemonability( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonability_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonability_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonability_bool_exp - ): [pokemon_v2_pokemonability!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonability" - """ - pokemon_v2_pokemonability_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonability_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonability_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonability_bool_exp - ): pokemon_v2_pokemonability_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonability" using primary key columns - """ - pokemon_v2_pokemonability_by_pk(id: Int!): pokemon_v2_pokemonability - - """ - fetch data from the table: "pokemon_v2_pokemonabilitypast" - """ - pokemon_v2_pokemonabilitypast( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonabilitypast_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonabilitypast_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonabilitypast_bool_exp - ): [pokemon_v2_pokemonabilitypast!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonabilitypast" - """ - pokemon_v2_pokemonabilitypast_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonabilitypast_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonabilitypast_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonabilitypast_bool_exp - ): pokemon_v2_pokemonabilitypast_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonabilitypast" using primary key columns - """ - pokemon_v2_pokemonabilitypast_by_pk(id: Int!): pokemon_v2_pokemonabilitypast - - """ - fetch data from the table: "pokemon_v2_pokemoncolor" - """ - pokemon_v2_pokemoncolor( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemoncolor_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemoncolor_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemoncolor_bool_exp - ): [pokemon_v2_pokemoncolor!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemoncolor" - """ - pokemon_v2_pokemoncolor_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemoncolor_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemoncolor_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemoncolor_bool_exp - ): pokemon_v2_pokemoncolor_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemoncolor" using primary key columns - """ - pokemon_v2_pokemoncolor_by_pk(id: Int!): pokemon_v2_pokemoncolor - - """ - fetch data from the table: "pokemon_v2_pokemoncolorname" - """ - pokemon_v2_pokemoncolorname( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemoncolorname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemoncolorname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemoncolorname_bool_exp - ): [pokemon_v2_pokemoncolorname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemoncolorname" - """ - pokemon_v2_pokemoncolorname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemoncolorname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemoncolorname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemoncolorname_bool_exp - ): pokemon_v2_pokemoncolorname_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemoncolorname" using primary key columns - """ - pokemon_v2_pokemoncolorname_by_pk(id: Int!): pokemon_v2_pokemoncolorname - - """An array relationship""" - pokemon_v2_pokemoncries( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemoncries_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemoncries_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemoncries_bool_exp - ): [pokemon_v2_pokemoncries!]! - - """An aggregate relationship""" - pokemon_v2_pokemoncries_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemoncries_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemoncries_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemoncries_bool_exp - ): pokemon_v2_pokemoncries_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemoncries" using primary key columns - """ - pokemon_v2_pokemoncries_by_pk(id: Int!): pokemon_v2_pokemoncries - - """ - fetch data from the table: "pokemon_v2_pokemondexnumber" - """ - pokemon_v2_pokemondexnumber( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemondexnumber_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemondexnumber_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemondexnumber_bool_exp - ): [pokemon_v2_pokemondexnumber!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemondexnumber" - """ - pokemon_v2_pokemondexnumber_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemondexnumber_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemondexnumber_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemondexnumber_bool_exp - ): pokemon_v2_pokemondexnumber_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemondexnumber" using primary key columns - """ - pokemon_v2_pokemondexnumber_by_pk(id: Int!): pokemon_v2_pokemondexnumber - - """ - fetch data from the table: "pokemon_v2_pokemonegggroup" - """ - pokemon_v2_pokemonegggroup( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonegggroup_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonegggroup_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonegggroup_bool_exp - ): [pokemon_v2_pokemonegggroup!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonegggroup" - """ - pokemon_v2_pokemonegggroup_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonegggroup_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonegggroup_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonegggroup_bool_exp - ): pokemon_v2_pokemonegggroup_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonegggroup" using primary key columns - """ - pokemon_v2_pokemonegggroup_by_pk(id: Int!): pokemon_v2_pokemonegggroup - - """ - fetch data from the table: "pokemon_v2_pokemonevolution" - """ - pokemon_v2_pokemonevolution( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonevolution_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonevolution_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonevolution_bool_exp - ): [pokemon_v2_pokemonevolution!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonevolution" - """ - pokemon_v2_pokemonevolution_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonevolution_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonevolution_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonevolution_bool_exp - ): pokemon_v2_pokemonevolution_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonevolution" using primary key columns - """ - pokemon_v2_pokemonevolution_by_pk(id: Int!): pokemon_v2_pokemonevolution - - """ - fetch data from the table: "pokemon_v2_pokemonform" - """ - pokemon_v2_pokemonform( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonform_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonform_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonform_bool_exp - ): [pokemon_v2_pokemonform!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonform" - """ - pokemon_v2_pokemonform_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonform_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonform_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonform_bool_exp - ): pokemon_v2_pokemonform_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonform" using primary key columns - """ - pokemon_v2_pokemonform_by_pk(id: Int!): pokemon_v2_pokemonform - - """ - fetch data from the table: "pokemon_v2_pokemonformgeneration" - """ - pokemon_v2_pokemonformgeneration( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonformgeneration_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonformgeneration_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonformgeneration_bool_exp - ): [pokemon_v2_pokemonformgeneration!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonformgeneration" - """ - pokemon_v2_pokemonformgeneration_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonformgeneration_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonformgeneration_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonformgeneration_bool_exp - ): pokemon_v2_pokemonformgeneration_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonformgeneration" using primary key columns - """ - pokemon_v2_pokemonformgeneration_by_pk(id: Int!): pokemon_v2_pokemonformgeneration - - """ - fetch data from the table: "pokemon_v2_pokemonformname" - """ - pokemon_v2_pokemonformname( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonformname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonformname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonformname_bool_exp - ): [pokemon_v2_pokemonformname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonformname" - """ - pokemon_v2_pokemonformname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonformname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonformname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonformname_bool_exp - ): pokemon_v2_pokemonformname_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonformname" using primary key columns - """ - pokemon_v2_pokemonformname_by_pk(id: Int!): pokemon_v2_pokemonformname - - """An array relationship""" - pokemon_v2_pokemonformsprites( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonformsprites_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonformsprites_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonformsprites_bool_exp - ): [pokemon_v2_pokemonformsprites!]! - - """An aggregate relationship""" - pokemon_v2_pokemonformsprites_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonformsprites_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonformsprites_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonformsprites_bool_exp - ): pokemon_v2_pokemonformsprites_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonformsprites" using primary key columns - """ - pokemon_v2_pokemonformsprites_by_pk(id: Int!): pokemon_v2_pokemonformsprites - - """ - fetch data from the table: "pokemon_v2_pokemonformtype" - """ - pokemon_v2_pokemonformtype( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonformtype_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonformtype_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonformtype_bool_exp - ): [pokemon_v2_pokemonformtype!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonformtype" - """ - pokemon_v2_pokemonformtype_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonformtype_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonformtype_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonformtype_bool_exp - ): pokemon_v2_pokemonformtype_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonformtype" using primary key columns - """ - pokemon_v2_pokemonformtype_by_pk(id: Int!): pokemon_v2_pokemonformtype - - """ - fetch data from the table: "pokemon_v2_pokemongameindex" - """ - pokemon_v2_pokemongameindex( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemongameindex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemongameindex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemongameindex_bool_exp - ): [pokemon_v2_pokemongameindex!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemongameindex" - """ - pokemon_v2_pokemongameindex_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemongameindex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemongameindex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemongameindex_bool_exp - ): pokemon_v2_pokemongameindex_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemongameindex" using primary key columns - """ - pokemon_v2_pokemongameindex_by_pk(id: Int!): pokemon_v2_pokemongameindex - - """ - fetch data from the table: "pokemon_v2_pokemonhabitat" - """ - pokemon_v2_pokemonhabitat( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonhabitat_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonhabitat_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonhabitat_bool_exp - ): [pokemon_v2_pokemonhabitat!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonhabitat" - """ - pokemon_v2_pokemonhabitat_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonhabitat_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonhabitat_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonhabitat_bool_exp - ): pokemon_v2_pokemonhabitat_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonhabitat" using primary key columns - """ - pokemon_v2_pokemonhabitat_by_pk(id: Int!): pokemon_v2_pokemonhabitat - - """ - fetch data from the table: "pokemon_v2_pokemonhabitatname" - """ - pokemon_v2_pokemonhabitatname( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonhabitatname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonhabitatname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonhabitatname_bool_exp - ): [pokemon_v2_pokemonhabitatname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonhabitatname" - """ - pokemon_v2_pokemonhabitatname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonhabitatname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonhabitatname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonhabitatname_bool_exp - ): pokemon_v2_pokemonhabitatname_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonhabitatname" using primary key columns - """ - pokemon_v2_pokemonhabitatname_by_pk(id: Int!): pokemon_v2_pokemonhabitatname - - """ - fetch data from the table: "pokemon_v2_pokemonitem" - """ - pokemon_v2_pokemonitem( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonitem_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonitem_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonitem_bool_exp - ): [pokemon_v2_pokemonitem!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonitem" - """ - pokemon_v2_pokemonitem_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonitem_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonitem_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonitem_bool_exp - ): pokemon_v2_pokemonitem_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonitem" using primary key columns - """ - pokemon_v2_pokemonitem_by_pk(id: Int!): pokemon_v2_pokemonitem - - """ - fetch data from the table: "pokemon_v2_pokemonmove" - """ - pokemon_v2_pokemonmove( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonmove_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonmove_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonmove_bool_exp - ): [pokemon_v2_pokemonmove!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonmove" - """ - pokemon_v2_pokemonmove_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonmove_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonmove_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonmove_bool_exp - ): pokemon_v2_pokemonmove_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonmove" using primary key columns - """ - pokemon_v2_pokemonmove_by_pk(id: Int!): pokemon_v2_pokemonmove - - """ - fetch data from the table: "pokemon_v2_pokemonshape" - """ - pokemon_v2_pokemonshape( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonshape_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonshape_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonshape_bool_exp - ): [pokemon_v2_pokemonshape!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonshape" - """ - pokemon_v2_pokemonshape_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonshape_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonshape_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonshape_bool_exp - ): pokemon_v2_pokemonshape_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonshape" using primary key columns - """ - pokemon_v2_pokemonshape_by_pk(id: Int!): pokemon_v2_pokemonshape - - """ - fetch data from the table: "pokemon_v2_pokemonshapename" - """ - pokemon_v2_pokemonshapename( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonshapename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonshapename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonshapename_bool_exp - ): [pokemon_v2_pokemonshapename!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonshapename" - """ - pokemon_v2_pokemonshapename_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonshapename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonshapename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonshapename_bool_exp - ): pokemon_v2_pokemonshapename_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonshapename" using primary key columns - """ - pokemon_v2_pokemonshapename_by_pk(id: Int!): pokemon_v2_pokemonshapename - - """An array relationship""" - pokemon_v2_pokemonspecies( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspecies_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspecies_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspecies_bool_exp - ): [pokemon_v2_pokemonspecies!]! - - """An aggregate relationship""" - pokemon_v2_pokemonspecies_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspecies_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspecies_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspecies_bool_exp - ): pokemon_v2_pokemonspecies_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonspecies" using primary key columns - """ - pokemon_v2_pokemonspecies_by_pk(id: Int!): pokemon_v2_pokemonspecies - - """ - fetch data from the table: "pokemon_v2_pokemonspeciesdescription" - """ - pokemon_v2_pokemonspeciesdescription( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspeciesdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspeciesdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspeciesdescription_bool_exp - ): [pokemon_v2_pokemonspeciesdescription!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonspeciesdescription" - """ - pokemon_v2_pokemonspeciesdescription_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspeciesdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspeciesdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspeciesdescription_bool_exp - ): pokemon_v2_pokemonspeciesdescription_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonspeciesdescription" using primary key columns - """ - pokemon_v2_pokemonspeciesdescription_by_pk(id: Int!): pokemon_v2_pokemonspeciesdescription - - """ - fetch data from the table: "pokemon_v2_pokemonspeciesflavortext" - """ - pokemon_v2_pokemonspeciesflavortext( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspeciesflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspeciesflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspeciesflavortext_bool_exp - ): [pokemon_v2_pokemonspeciesflavortext!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonspeciesflavortext" - """ - pokemon_v2_pokemonspeciesflavortext_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspeciesflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspeciesflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspeciesflavortext_bool_exp - ): pokemon_v2_pokemonspeciesflavortext_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonspeciesflavortext" using primary key columns - """ - pokemon_v2_pokemonspeciesflavortext_by_pk(id: Int!): pokemon_v2_pokemonspeciesflavortext - - """ - fetch data from the table: "pokemon_v2_pokemonspeciesname" - """ - pokemon_v2_pokemonspeciesname( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspeciesname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspeciesname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspeciesname_bool_exp - ): [pokemon_v2_pokemonspeciesname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonspeciesname" - """ - pokemon_v2_pokemonspeciesname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspeciesname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspeciesname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspeciesname_bool_exp - ): pokemon_v2_pokemonspeciesname_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonspeciesname" using primary key columns - """ - pokemon_v2_pokemonspeciesname_by_pk(id: Int!): pokemon_v2_pokemonspeciesname - - """An array relationship""" - pokemon_v2_pokemonsprites( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonsprites_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonsprites_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonsprites_bool_exp - ): [pokemon_v2_pokemonsprites!]! - - """An aggregate relationship""" - pokemon_v2_pokemonsprites_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonsprites_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonsprites_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonsprites_bool_exp - ): pokemon_v2_pokemonsprites_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonsprites" using primary key columns - """ - pokemon_v2_pokemonsprites_by_pk(id: Int!): pokemon_v2_pokemonsprites - - """ - fetch data from the table: "pokemon_v2_pokemonstat" - """ - pokemon_v2_pokemonstat( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonstat_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonstat_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonstat_bool_exp - ): [pokemon_v2_pokemonstat!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonstat" - """ - pokemon_v2_pokemonstat_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonstat_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonstat_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonstat_bool_exp - ): pokemon_v2_pokemonstat_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonstat" using primary key columns - """ - pokemon_v2_pokemonstat_by_pk(id: Int!): pokemon_v2_pokemonstat - - """ - fetch data from the table: "pokemon_v2_pokemontype" - """ - pokemon_v2_pokemontype( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemontype_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemontype_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemontype_bool_exp - ): [pokemon_v2_pokemontype!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemontype" - """ - pokemon_v2_pokemontype_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemontype_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemontype_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemontype_bool_exp - ): pokemon_v2_pokemontype_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemontype" using primary key columns - """ - pokemon_v2_pokemontype_by_pk(id: Int!): pokemon_v2_pokemontype - - """ - fetch data from the table: "pokemon_v2_pokemontypepast" - """ - pokemon_v2_pokemontypepast( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemontypepast_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemontypepast_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemontypepast_bool_exp - ): [pokemon_v2_pokemontypepast!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemontypepast" - """ - pokemon_v2_pokemontypepast_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemontypepast_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemontypepast_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemontypepast_bool_exp - ): pokemon_v2_pokemontypepast_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemontypepast" using primary key columns - """ - pokemon_v2_pokemontypepast_by_pk(id: Int!): pokemon_v2_pokemontypepast - - """ - fetch data from the table: "pokemon_v2_region" - """ - pokemon_v2_region( - """distinct select on columns""" - distinct_on: [pokemon_v2_region_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_region_order_by!] - - """filter the rows returned""" - where: pokemon_v2_region_bool_exp - ): [pokemon_v2_region!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_region" - """ - pokemon_v2_region_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_region_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_region_order_by!] - - """filter the rows returned""" - where: pokemon_v2_region_bool_exp - ): pokemon_v2_region_aggregate! - - """ - fetch data from the table: "pokemon_v2_region" using primary key columns - """ - pokemon_v2_region_by_pk(id: Int!): pokemon_v2_region - - """ - fetch data from the table: "pokemon_v2_regionname" - """ - pokemon_v2_regionname( - """distinct select on columns""" - distinct_on: [pokemon_v2_regionname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_regionname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_regionname_bool_exp - ): [pokemon_v2_regionname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_regionname" - """ - pokemon_v2_regionname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_regionname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_regionname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_regionname_bool_exp - ): pokemon_v2_regionname_aggregate! - - """ - fetch data from the table: "pokemon_v2_regionname" using primary key columns - """ - pokemon_v2_regionname_by_pk(id: Int!): pokemon_v2_regionname - - """ - fetch data from the table: "pokemon_v2_stat" - """ - pokemon_v2_stat( - """distinct select on columns""" - distinct_on: [pokemon_v2_stat_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_stat_order_by!] - - """filter the rows returned""" - where: pokemon_v2_stat_bool_exp - ): [pokemon_v2_stat!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_stat" - """ - pokemon_v2_stat_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_stat_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_stat_order_by!] - - """filter the rows returned""" - where: pokemon_v2_stat_bool_exp - ): pokemon_v2_stat_aggregate! - - """fetch data from the table: "pokemon_v2_stat" using primary key columns""" - pokemon_v2_stat_by_pk(id: Int!): pokemon_v2_stat - - """ - fetch data from the table: "pokemon_v2_statname" - """ - pokemon_v2_statname( - """distinct select on columns""" - distinct_on: [pokemon_v2_statname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_statname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_statname_bool_exp - ): [pokemon_v2_statname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_statname" - """ - pokemon_v2_statname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_statname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_statname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_statname_bool_exp - ): pokemon_v2_statname_aggregate! - - """ - fetch data from the table: "pokemon_v2_statname" using primary key columns - """ - pokemon_v2_statname_by_pk(id: Int!): pokemon_v2_statname - - """ - fetch data from the table: "pokemon_v2_supercontestcombo" - """ - pokemon_v2_supercontestcombo( - """distinct select on columns""" - distinct_on: [pokemon_v2_supercontestcombo_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_supercontestcombo_order_by!] - - """filter the rows returned""" - where: pokemon_v2_supercontestcombo_bool_exp - ): [pokemon_v2_supercontestcombo!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_supercontestcombo" - """ - pokemon_v2_supercontestcombo_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_supercontestcombo_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_supercontestcombo_order_by!] - - """filter the rows returned""" - where: pokemon_v2_supercontestcombo_bool_exp - ): pokemon_v2_supercontestcombo_aggregate! - - """ - fetch data from the table: "pokemon_v2_supercontestcombo" using primary key columns - """ - pokemon_v2_supercontestcombo_by_pk(id: Int!): pokemon_v2_supercontestcombo - - """ - fetch data from the table: "pokemon_v2_supercontesteffect" - """ - pokemon_v2_supercontesteffect( - """distinct select on columns""" - distinct_on: [pokemon_v2_supercontesteffect_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_supercontesteffect_order_by!] - - """filter the rows returned""" - where: pokemon_v2_supercontesteffect_bool_exp - ): [pokemon_v2_supercontesteffect!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_supercontesteffect" - """ - pokemon_v2_supercontesteffect_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_supercontesteffect_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_supercontesteffect_order_by!] - - """filter the rows returned""" - where: pokemon_v2_supercontesteffect_bool_exp - ): pokemon_v2_supercontesteffect_aggregate! - - """ - fetch data from the table: "pokemon_v2_supercontesteffect" using primary key columns - """ - pokemon_v2_supercontesteffect_by_pk(id: Int!): pokemon_v2_supercontesteffect - - """ - fetch data from the table: "pokemon_v2_supercontesteffectflavortext" - """ - pokemon_v2_supercontesteffectflavortext( - """distinct select on columns""" - distinct_on: [pokemon_v2_supercontesteffectflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_supercontesteffectflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_supercontesteffectflavortext_bool_exp - ): [pokemon_v2_supercontesteffectflavortext!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_supercontesteffectflavortext" - """ - pokemon_v2_supercontesteffectflavortext_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_supercontesteffectflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_supercontesteffectflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_supercontesteffectflavortext_bool_exp - ): pokemon_v2_supercontesteffectflavortext_aggregate! - - """ - fetch data from the table: "pokemon_v2_supercontesteffectflavortext" using primary key columns - """ - pokemon_v2_supercontesteffectflavortext_by_pk(id: Int!): pokemon_v2_supercontesteffectflavortext - - """ - fetch data from the table: "pokemon_v2_type" - """ - pokemon_v2_type( - """distinct select on columns""" - distinct_on: [pokemon_v2_type_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_type_order_by!] - - """filter the rows returned""" - where: pokemon_v2_type_bool_exp - ): [pokemon_v2_type!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_type" - """ - pokemon_v2_type_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_type_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_type_order_by!] - - """filter the rows returned""" - where: pokemon_v2_type_bool_exp - ): pokemon_v2_type_aggregate! - - """fetch data from the table: "pokemon_v2_type" using primary key columns""" - pokemon_v2_type_by_pk(id: Int!): pokemon_v2_type - - """ - fetch data from the table: "pokemon_v2_typeefficacy" - """ - pokemon_v2_typeefficacy( - """distinct select on columns""" - distinct_on: [pokemon_v2_typeefficacy_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_typeefficacy_order_by!] - - """filter the rows returned""" - where: pokemon_v2_typeefficacy_bool_exp - ): [pokemon_v2_typeefficacy!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_typeefficacy" - """ - pokemon_v2_typeefficacy_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_typeefficacy_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_typeefficacy_order_by!] - - """filter the rows returned""" - where: pokemon_v2_typeefficacy_bool_exp - ): pokemon_v2_typeefficacy_aggregate! - - """ - fetch data from the table: "pokemon_v2_typeefficacy" using primary key columns - """ - pokemon_v2_typeefficacy_by_pk(id: Int!): pokemon_v2_typeefficacy - - """ - fetch data from the table: "pokemon_v2_typeefficacypast" - """ - pokemon_v2_typeefficacypast( - """distinct select on columns""" - distinct_on: [pokemon_v2_typeefficacypast_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_typeefficacypast_order_by!] - - """filter the rows returned""" - where: pokemon_v2_typeefficacypast_bool_exp - ): [pokemon_v2_typeefficacypast!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_typeefficacypast" - """ - pokemon_v2_typeefficacypast_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_typeefficacypast_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_typeefficacypast_order_by!] - - """filter the rows returned""" - where: pokemon_v2_typeefficacypast_bool_exp - ): pokemon_v2_typeefficacypast_aggregate! - - """ - fetch data from the table: "pokemon_v2_typeefficacypast" using primary key columns - """ - pokemon_v2_typeefficacypast_by_pk(id: Int!): pokemon_v2_typeefficacypast - - """ - fetch data from the table: "pokemon_v2_typegameindex" - """ - pokemon_v2_typegameindex( - """distinct select on columns""" - distinct_on: [pokemon_v2_typegameindex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_typegameindex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_typegameindex_bool_exp - ): [pokemon_v2_typegameindex!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_typegameindex" - """ - pokemon_v2_typegameindex_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_typegameindex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_typegameindex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_typegameindex_bool_exp - ): pokemon_v2_typegameindex_aggregate! - - """ - fetch data from the table: "pokemon_v2_typegameindex" using primary key columns - """ - pokemon_v2_typegameindex_by_pk(id: Int!): pokemon_v2_typegameindex - - """ - fetch data from the table: "pokemon_v2_typename" - """ - pokemon_v2_typename( - """distinct select on columns""" - distinct_on: [pokemon_v2_typename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_typename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_typename_bool_exp - ): [pokemon_v2_typename!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_typename" - """ - pokemon_v2_typename_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_typename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_typename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_typename_bool_exp - ): pokemon_v2_typename_aggregate! - - """ - fetch data from the table: "pokemon_v2_typename" using primary key columns - """ - pokemon_v2_typename_by_pk(id: Int!): pokemon_v2_typename - - """ - fetch data from the table: "pokemon_v2_version" - """ - pokemon_v2_version( - """distinct select on columns""" - distinct_on: [pokemon_v2_version_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_version_order_by!] - - """filter the rows returned""" - where: pokemon_v2_version_bool_exp - ): [pokemon_v2_version!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_version" - """ - pokemon_v2_version_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_version_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_version_order_by!] - - """filter the rows returned""" - where: pokemon_v2_version_bool_exp - ): pokemon_v2_version_aggregate! - - """ - fetch data from the table: "pokemon_v2_version" using primary key columns - """ - pokemon_v2_version_by_pk(id: Int!): pokemon_v2_version - - """ - fetch data from the table: "pokemon_v2_versiongroup" - """ - pokemon_v2_versiongroup( - """distinct select on columns""" - distinct_on: [pokemon_v2_versiongroup_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_versiongroup_order_by!] - - """filter the rows returned""" - where: pokemon_v2_versiongroup_bool_exp - ): [pokemon_v2_versiongroup!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_versiongroup" - """ - pokemon_v2_versiongroup_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_versiongroup_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_versiongroup_order_by!] - - """filter the rows returned""" - where: pokemon_v2_versiongroup_bool_exp - ): pokemon_v2_versiongroup_aggregate! - - """ - fetch data from the table: "pokemon_v2_versiongroup" using primary key columns - """ - pokemon_v2_versiongroup_by_pk(id: Int!): pokemon_v2_versiongroup - - """ - fetch data from the table: "pokemon_v2_versiongroupmovelearnmethod" - """ - pokemon_v2_versiongroupmovelearnmethod( - """distinct select on columns""" - distinct_on: [pokemon_v2_versiongroupmovelearnmethod_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_versiongroupmovelearnmethod_order_by!] - - """filter the rows returned""" - where: pokemon_v2_versiongroupmovelearnmethod_bool_exp - ): [pokemon_v2_versiongroupmovelearnmethod!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_versiongroupmovelearnmethod" - """ - pokemon_v2_versiongroupmovelearnmethod_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_versiongroupmovelearnmethod_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_versiongroupmovelearnmethod_order_by!] - - """filter the rows returned""" - where: pokemon_v2_versiongroupmovelearnmethod_bool_exp - ): pokemon_v2_versiongroupmovelearnmethod_aggregate! - - """ - fetch data from the table: "pokemon_v2_versiongroupmovelearnmethod" using primary key columns - """ - pokemon_v2_versiongroupmovelearnmethod_by_pk(id: Int!): pokemon_v2_versiongroupmovelearnmethod - - """ - fetch data from the table: "pokemon_v2_versiongroupregion" - """ - pokemon_v2_versiongroupregion( - """distinct select on columns""" - distinct_on: [pokemon_v2_versiongroupregion_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_versiongroupregion_order_by!] - - """filter the rows returned""" - where: pokemon_v2_versiongroupregion_bool_exp - ): [pokemon_v2_versiongroupregion!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_versiongroupregion" - """ - pokemon_v2_versiongroupregion_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_versiongroupregion_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_versiongroupregion_order_by!] - - """filter the rows returned""" - where: pokemon_v2_versiongroupregion_bool_exp - ): pokemon_v2_versiongroupregion_aggregate! - - """ - fetch data from the table: "pokemon_v2_versiongroupregion" using primary key columns - """ - pokemon_v2_versiongroupregion_by_pk(id: Int!): pokemon_v2_versiongroupregion - - """ - fetch data from the table: "pokemon_v2_versionname" - """ - pokemon_v2_versionname( - """distinct select on columns""" - distinct_on: [pokemon_v2_versionname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_versionname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_versionname_bool_exp - ): [pokemon_v2_versionname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_versionname" - """ - pokemon_v2_versionname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_versionname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_versionname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_versionname_bool_exp - ): pokemon_v2_versionname_aggregate! - - """ - fetch data from the table: "pokemon_v2_versionname" using primary key columns - """ - pokemon_v2_versionname_by_pk(id: Int!): pokemon_v2_versionname -} - -type subscription_root { - """ - fetch data from the table: "pokemon_v2_ability" - """ - pokemon_v2_ability( - """distinct select on columns""" - distinct_on: [pokemon_v2_ability_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_ability_order_by!] - - """filter the rows returned""" - where: pokemon_v2_ability_bool_exp - ): [pokemon_v2_ability!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_ability" - """ - pokemon_v2_ability_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_ability_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_ability_order_by!] - - """filter the rows returned""" - where: pokemon_v2_ability_bool_exp - ): pokemon_v2_ability_aggregate! - - """ - fetch data from the table: "pokemon_v2_ability" using primary key columns - """ - pokemon_v2_ability_by_pk(id: Int!): pokemon_v2_ability - - """ - fetch data from the table in a streaming manner: "pokemon_v2_ability" - """ - pokemon_v2_ability_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_ability_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_ability_bool_exp - ): [pokemon_v2_ability!]! - - """ - fetch data from the table: "pokemon_v2_abilitychange" - """ - pokemon_v2_abilitychange( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilitychange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilitychange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilitychange_bool_exp - ): [pokemon_v2_abilitychange!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_abilitychange" - """ - pokemon_v2_abilitychange_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilitychange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilitychange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilitychange_bool_exp - ): pokemon_v2_abilitychange_aggregate! - - """ - fetch data from the table: "pokemon_v2_abilitychange" using primary key columns - """ - pokemon_v2_abilitychange_by_pk(id: Int!): pokemon_v2_abilitychange - - """ - fetch data from the table in a streaming manner: "pokemon_v2_abilitychange" - """ - pokemon_v2_abilitychange_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_abilitychange_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_abilitychange_bool_exp - ): [pokemon_v2_abilitychange!]! - - """ - fetch data from the table: "pokemon_v2_abilitychangeeffecttext" - """ - pokemon_v2_abilitychangeeffecttext( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilitychangeeffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilitychangeeffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilitychangeeffecttext_bool_exp - ): [pokemon_v2_abilitychangeeffecttext!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_abilitychangeeffecttext" - """ - pokemon_v2_abilitychangeeffecttext_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilitychangeeffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilitychangeeffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilitychangeeffecttext_bool_exp - ): pokemon_v2_abilitychangeeffecttext_aggregate! - - """ - fetch data from the table: "pokemon_v2_abilitychangeeffecttext" using primary key columns - """ - pokemon_v2_abilitychangeeffecttext_by_pk(id: Int!): pokemon_v2_abilitychangeeffecttext - - """ - fetch data from the table in a streaming manner: "pokemon_v2_abilitychangeeffecttext" - """ - pokemon_v2_abilitychangeeffecttext_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_abilitychangeeffecttext_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_abilitychangeeffecttext_bool_exp - ): [pokemon_v2_abilitychangeeffecttext!]! - - """ - fetch data from the table: "pokemon_v2_abilityeffecttext" - """ - pokemon_v2_abilityeffecttext( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilityeffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilityeffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilityeffecttext_bool_exp - ): [pokemon_v2_abilityeffecttext!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_abilityeffecttext" - """ - pokemon_v2_abilityeffecttext_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilityeffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilityeffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilityeffecttext_bool_exp - ): pokemon_v2_abilityeffecttext_aggregate! - - """ - fetch data from the table: "pokemon_v2_abilityeffecttext" using primary key columns - """ - pokemon_v2_abilityeffecttext_by_pk(id: Int!): pokemon_v2_abilityeffecttext - - """ - fetch data from the table in a streaming manner: "pokemon_v2_abilityeffecttext" - """ - pokemon_v2_abilityeffecttext_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_abilityeffecttext_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_abilityeffecttext_bool_exp - ): [pokemon_v2_abilityeffecttext!]! - - """ - fetch data from the table: "pokemon_v2_abilityflavortext" - """ - pokemon_v2_abilityflavortext( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilityflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilityflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilityflavortext_bool_exp - ): [pokemon_v2_abilityflavortext!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_abilityflavortext" - """ - pokemon_v2_abilityflavortext_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilityflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilityflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilityflavortext_bool_exp - ): pokemon_v2_abilityflavortext_aggregate! - - """ - fetch data from the table: "pokemon_v2_abilityflavortext" using primary key columns - """ - pokemon_v2_abilityflavortext_by_pk(id: Int!): pokemon_v2_abilityflavortext - - """ - fetch data from the table in a streaming manner: "pokemon_v2_abilityflavortext" - """ - pokemon_v2_abilityflavortext_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_abilityflavortext_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_abilityflavortext_bool_exp - ): [pokemon_v2_abilityflavortext!]! - - """ - fetch data from the table: "pokemon_v2_abilityname" - """ - pokemon_v2_abilityname( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilityname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilityname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilityname_bool_exp - ): [pokemon_v2_abilityname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_abilityname" - """ - pokemon_v2_abilityname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_abilityname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_abilityname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_abilityname_bool_exp - ): pokemon_v2_abilityname_aggregate! - - """ - fetch data from the table: "pokemon_v2_abilityname" using primary key columns - """ - pokemon_v2_abilityname_by_pk(id: Int!): pokemon_v2_abilityname - - """ - fetch data from the table in a streaming manner: "pokemon_v2_abilityname" - """ - pokemon_v2_abilityname_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_abilityname_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_abilityname_bool_exp - ): [pokemon_v2_abilityname!]! - - """ - fetch data from the table: "pokemon_v2_berry" - """ - pokemon_v2_berry( - """distinct select on columns""" - distinct_on: [pokemon_v2_berry_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berry_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berry_bool_exp - ): [pokemon_v2_berry!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_berry" - """ - pokemon_v2_berry_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_berry_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berry_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berry_bool_exp - ): pokemon_v2_berry_aggregate! - - """ - fetch data from the table: "pokemon_v2_berry" using primary key columns - """ - pokemon_v2_berry_by_pk(id: Int!): pokemon_v2_berry - - """ - fetch data from the table in a streaming manner: "pokemon_v2_berry" - """ - pokemon_v2_berry_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_berry_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_berry_bool_exp - ): [pokemon_v2_berry!]! - - """ - fetch data from the table: "pokemon_v2_berryfirmness" - """ - pokemon_v2_berryfirmness( - """distinct select on columns""" - distinct_on: [pokemon_v2_berryfirmness_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berryfirmness_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berryfirmness_bool_exp - ): [pokemon_v2_berryfirmness!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_berryfirmness" - """ - pokemon_v2_berryfirmness_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_berryfirmness_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berryfirmness_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berryfirmness_bool_exp - ): pokemon_v2_berryfirmness_aggregate! - - """ - fetch data from the table: "pokemon_v2_berryfirmness" using primary key columns - """ - pokemon_v2_berryfirmness_by_pk(id: Int!): pokemon_v2_berryfirmness - - """ - fetch data from the table in a streaming manner: "pokemon_v2_berryfirmness" - """ - pokemon_v2_berryfirmness_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_berryfirmness_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_berryfirmness_bool_exp - ): [pokemon_v2_berryfirmness!]! - - """ - fetch data from the table: "pokemon_v2_berryfirmnessname" - """ - pokemon_v2_berryfirmnessname( - """distinct select on columns""" - distinct_on: [pokemon_v2_berryfirmnessname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berryfirmnessname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berryfirmnessname_bool_exp - ): [pokemon_v2_berryfirmnessname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_berryfirmnessname" - """ - pokemon_v2_berryfirmnessname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_berryfirmnessname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berryfirmnessname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berryfirmnessname_bool_exp - ): pokemon_v2_berryfirmnessname_aggregate! - - """ - fetch data from the table: "pokemon_v2_berryfirmnessname" using primary key columns - """ - pokemon_v2_berryfirmnessname_by_pk(id: Int!): pokemon_v2_berryfirmnessname - - """ - fetch data from the table in a streaming manner: "pokemon_v2_berryfirmnessname" - """ - pokemon_v2_berryfirmnessname_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_berryfirmnessname_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_berryfirmnessname_bool_exp - ): [pokemon_v2_berryfirmnessname!]! - - """ - fetch data from the table: "pokemon_v2_berryflavor" - """ - pokemon_v2_berryflavor( - """distinct select on columns""" - distinct_on: [pokemon_v2_berryflavor_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berryflavor_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berryflavor_bool_exp - ): [pokemon_v2_berryflavor!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_berryflavor" - """ - pokemon_v2_berryflavor_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_berryflavor_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berryflavor_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berryflavor_bool_exp - ): pokemon_v2_berryflavor_aggregate! - - """ - fetch data from the table: "pokemon_v2_berryflavor" using primary key columns - """ - pokemon_v2_berryflavor_by_pk(id: Int!): pokemon_v2_berryflavor - - """ - fetch data from the table in a streaming manner: "pokemon_v2_berryflavor" - """ - pokemon_v2_berryflavor_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_berryflavor_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_berryflavor_bool_exp - ): [pokemon_v2_berryflavor!]! - - """ - fetch data from the table: "pokemon_v2_berryflavormap" - """ - pokemon_v2_berryflavormap( - """distinct select on columns""" - distinct_on: [pokemon_v2_berryflavormap_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berryflavormap_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berryflavormap_bool_exp - ): [pokemon_v2_berryflavormap!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_berryflavormap" - """ - pokemon_v2_berryflavormap_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_berryflavormap_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berryflavormap_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berryflavormap_bool_exp - ): pokemon_v2_berryflavormap_aggregate! - - """ - fetch data from the table: "pokemon_v2_berryflavormap" using primary key columns - """ - pokemon_v2_berryflavormap_by_pk(id: Int!): pokemon_v2_berryflavormap - - """ - fetch data from the table in a streaming manner: "pokemon_v2_berryflavormap" - """ - pokemon_v2_berryflavormap_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_berryflavormap_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_berryflavormap_bool_exp - ): [pokemon_v2_berryflavormap!]! - - """ - fetch data from the table: "pokemon_v2_berryflavorname" - """ - pokemon_v2_berryflavorname( - """distinct select on columns""" - distinct_on: [pokemon_v2_berryflavorname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berryflavorname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berryflavorname_bool_exp - ): [pokemon_v2_berryflavorname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_berryflavorname" - """ - pokemon_v2_berryflavorname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_berryflavorname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_berryflavorname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_berryflavorname_bool_exp - ): pokemon_v2_berryflavorname_aggregate! - - """ - fetch data from the table: "pokemon_v2_berryflavorname" using primary key columns - """ - pokemon_v2_berryflavorname_by_pk(id: Int!): pokemon_v2_berryflavorname - - """ - fetch data from the table in a streaming manner: "pokemon_v2_berryflavorname" - """ - pokemon_v2_berryflavorname_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_berryflavorname_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_berryflavorname_bool_exp - ): [pokemon_v2_berryflavorname!]! - - """ - fetch data from the table: "pokemon_v2_characteristic" - """ - pokemon_v2_characteristic( - """distinct select on columns""" - distinct_on: [pokemon_v2_characteristic_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_characteristic_order_by!] - - """filter the rows returned""" - where: pokemon_v2_characteristic_bool_exp - ): [pokemon_v2_characteristic!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_characteristic" - """ - pokemon_v2_characteristic_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_characteristic_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_characteristic_order_by!] - - """filter the rows returned""" - where: pokemon_v2_characteristic_bool_exp - ): pokemon_v2_characteristic_aggregate! - - """ - fetch data from the table: "pokemon_v2_characteristic" using primary key columns - """ - pokemon_v2_characteristic_by_pk(id: Int!): pokemon_v2_characteristic - - """ - fetch data from the table in a streaming manner: "pokemon_v2_characteristic" - """ - pokemon_v2_characteristic_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_characteristic_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_characteristic_bool_exp - ): [pokemon_v2_characteristic!]! - - """ - fetch data from the table: "pokemon_v2_characteristicdescription" - """ - pokemon_v2_characteristicdescription( - """distinct select on columns""" - distinct_on: [pokemon_v2_characteristicdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_characteristicdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_characteristicdescription_bool_exp - ): [pokemon_v2_characteristicdescription!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_characteristicdescription" - """ - pokemon_v2_characteristicdescription_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_characteristicdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_characteristicdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_characteristicdescription_bool_exp - ): pokemon_v2_characteristicdescription_aggregate! - - """ - fetch data from the table: "pokemon_v2_characteristicdescription" using primary key columns - """ - pokemon_v2_characteristicdescription_by_pk(id: Int!): pokemon_v2_characteristicdescription - - """ - fetch data from the table in a streaming manner: "pokemon_v2_characteristicdescription" - """ - pokemon_v2_characteristicdescription_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_characteristicdescription_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_characteristicdescription_bool_exp - ): [pokemon_v2_characteristicdescription!]! - - """ - fetch data from the table: "pokemon_v2_contestcombo" - """ - pokemon_v2_contestcombo( - """distinct select on columns""" - distinct_on: [pokemon_v2_contestcombo_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contestcombo_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contestcombo_bool_exp - ): [pokemon_v2_contestcombo!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_contestcombo" - """ - pokemon_v2_contestcombo_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_contestcombo_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contestcombo_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contestcombo_bool_exp - ): pokemon_v2_contestcombo_aggregate! - - """ - fetch data from the table: "pokemon_v2_contestcombo" using primary key columns - """ - pokemon_v2_contestcombo_by_pk(id: Int!): pokemon_v2_contestcombo - - """ - fetch data from the table in a streaming manner: "pokemon_v2_contestcombo" - """ - pokemon_v2_contestcombo_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_contestcombo_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_contestcombo_bool_exp - ): [pokemon_v2_contestcombo!]! - - """ - fetch data from the table: "pokemon_v2_contesteffect" - """ - pokemon_v2_contesteffect( - """distinct select on columns""" - distinct_on: [pokemon_v2_contesteffect_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contesteffect_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contesteffect_bool_exp - ): [pokemon_v2_contesteffect!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_contesteffect" - """ - pokemon_v2_contesteffect_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_contesteffect_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contesteffect_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contesteffect_bool_exp - ): pokemon_v2_contesteffect_aggregate! - - """ - fetch data from the table: "pokemon_v2_contesteffect" using primary key columns - """ - pokemon_v2_contesteffect_by_pk(id: Int!): pokemon_v2_contesteffect - - """ - fetch data from the table in a streaming manner: "pokemon_v2_contesteffect" - """ - pokemon_v2_contesteffect_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_contesteffect_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_contesteffect_bool_exp - ): [pokemon_v2_contesteffect!]! - - """ - fetch data from the table: "pokemon_v2_contesteffecteffecttext" - """ - pokemon_v2_contesteffecteffecttext( - """distinct select on columns""" - distinct_on: [pokemon_v2_contesteffecteffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contesteffecteffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contesteffecteffecttext_bool_exp - ): [pokemon_v2_contesteffecteffecttext!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_contesteffecteffecttext" - """ - pokemon_v2_contesteffecteffecttext_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_contesteffecteffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contesteffecteffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contesteffecteffecttext_bool_exp - ): pokemon_v2_contesteffecteffecttext_aggregate! - - """ - fetch data from the table: "pokemon_v2_contesteffecteffecttext" using primary key columns - """ - pokemon_v2_contesteffecteffecttext_by_pk(id: Int!): pokemon_v2_contesteffecteffecttext - - """ - fetch data from the table in a streaming manner: "pokemon_v2_contesteffecteffecttext" - """ - pokemon_v2_contesteffecteffecttext_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_contesteffecteffecttext_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_contesteffecteffecttext_bool_exp - ): [pokemon_v2_contesteffecteffecttext!]! - - """ - fetch data from the table: "pokemon_v2_contesteffectflavortext" - """ - pokemon_v2_contesteffectflavortext( - """distinct select on columns""" - distinct_on: [pokemon_v2_contesteffectflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contesteffectflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contesteffectflavortext_bool_exp - ): [pokemon_v2_contesteffectflavortext!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_contesteffectflavortext" - """ - pokemon_v2_contesteffectflavortext_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_contesteffectflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contesteffectflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contesteffectflavortext_bool_exp - ): pokemon_v2_contesteffectflavortext_aggregate! - - """ - fetch data from the table: "pokemon_v2_contesteffectflavortext" using primary key columns - """ - pokemon_v2_contesteffectflavortext_by_pk(id: Int!): pokemon_v2_contesteffectflavortext - - """ - fetch data from the table in a streaming manner: "pokemon_v2_contesteffectflavortext" - """ - pokemon_v2_contesteffectflavortext_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_contesteffectflavortext_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_contesteffectflavortext_bool_exp - ): [pokemon_v2_contesteffectflavortext!]! - - """ - fetch data from the table: "pokemon_v2_contesttype" - """ - pokemon_v2_contesttype( - """distinct select on columns""" - distinct_on: [pokemon_v2_contesttype_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contesttype_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contesttype_bool_exp - ): [pokemon_v2_contesttype!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_contesttype" - """ - pokemon_v2_contesttype_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_contesttype_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contesttype_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contesttype_bool_exp - ): pokemon_v2_contesttype_aggregate! - - """ - fetch data from the table: "pokemon_v2_contesttype" using primary key columns - """ - pokemon_v2_contesttype_by_pk(id: Int!): pokemon_v2_contesttype - - """ - fetch data from the table in a streaming manner: "pokemon_v2_contesttype" - """ - pokemon_v2_contesttype_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_contesttype_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_contesttype_bool_exp - ): [pokemon_v2_contesttype!]! - - """ - fetch data from the table: "pokemon_v2_contesttypename" - """ - pokemon_v2_contesttypename( - """distinct select on columns""" - distinct_on: [pokemon_v2_contesttypename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contesttypename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contesttypename_bool_exp - ): [pokemon_v2_contesttypename!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_contesttypename" - """ - pokemon_v2_contesttypename_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_contesttypename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_contesttypename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_contesttypename_bool_exp - ): pokemon_v2_contesttypename_aggregate! - - """ - fetch data from the table: "pokemon_v2_contesttypename" using primary key columns - """ - pokemon_v2_contesttypename_by_pk(id: Int!): pokemon_v2_contesttypename - - """ - fetch data from the table in a streaming manner: "pokemon_v2_contesttypename" - """ - pokemon_v2_contesttypename_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_contesttypename_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_contesttypename_bool_exp - ): [pokemon_v2_contesttypename!]! - - """ - fetch data from the table: "pokemon_v2_egggroup" - """ - pokemon_v2_egggroup( - """distinct select on columns""" - distinct_on: [pokemon_v2_egggroup_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_egggroup_order_by!] - - """filter the rows returned""" - where: pokemon_v2_egggroup_bool_exp - ): [pokemon_v2_egggroup!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_egggroup" - """ - pokemon_v2_egggroup_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_egggroup_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_egggroup_order_by!] - - """filter the rows returned""" - where: pokemon_v2_egggroup_bool_exp - ): pokemon_v2_egggroup_aggregate! - - """ - fetch data from the table: "pokemon_v2_egggroup" using primary key columns - """ - pokemon_v2_egggroup_by_pk(id: Int!): pokemon_v2_egggroup - - """ - fetch data from the table in a streaming manner: "pokemon_v2_egggroup" - """ - pokemon_v2_egggroup_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_egggroup_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_egggroup_bool_exp - ): [pokemon_v2_egggroup!]! - - """ - fetch data from the table: "pokemon_v2_egggroupname" - """ - pokemon_v2_egggroupname( - """distinct select on columns""" - distinct_on: [pokemon_v2_egggroupname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_egggroupname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_egggroupname_bool_exp - ): [pokemon_v2_egggroupname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_egggroupname" - """ - pokemon_v2_egggroupname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_egggroupname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_egggroupname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_egggroupname_bool_exp - ): pokemon_v2_egggroupname_aggregate! - - """ - fetch data from the table: "pokemon_v2_egggroupname" using primary key columns - """ - pokemon_v2_egggroupname_by_pk(id: Int!): pokemon_v2_egggroupname - - """ - fetch data from the table in a streaming manner: "pokemon_v2_egggroupname" - """ - pokemon_v2_egggroupname_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_egggroupname_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_egggroupname_bool_exp - ): [pokemon_v2_egggroupname!]! - - """ - fetch data from the table: "pokemon_v2_encounter" - """ - pokemon_v2_encounter( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounter_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounter_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounter_bool_exp - ): [pokemon_v2_encounter!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_encounter" - """ - pokemon_v2_encounter_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounter_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounter_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounter_bool_exp - ): pokemon_v2_encounter_aggregate! - - """ - fetch data from the table: "pokemon_v2_encounter" using primary key columns - """ - pokemon_v2_encounter_by_pk(id: Int!): pokemon_v2_encounter - - """ - fetch data from the table in a streaming manner: "pokemon_v2_encounter" - """ - pokemon_v2_encounter_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_encounter_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_encounter_bool_exp - ): [pokemon_v2_encounter!]! - - """ - fetch data from the table: "pokemon_v2_encountercondition" - """ - pokemon_v2_encountercondition( - """distinct select on columns""" - distinct_on: [pokemon_v2_encountercondition_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encountercondition_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encountercondition_bool_exp - ): [pokemon_v2_encountercondition!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_encountercondition" - """ - pokemon_v2_encountercondition_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_encountercondition_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encountercondition_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encountercondition_bool_exp - ): pokemon_v2_encountercondition_aggregate! - - """ - fetch data from the table: "pokemon_v2_encountercondition" using primary key columns - """ - pokemon_v2_encountercondition_by_pk(id: Int!): pokemon_v2_encountercondition - - """ - fetch data from the table in a streaming manner: "pokemon_v2_encountercondition" - """ - pokemon_v2_encountercondition_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_encountercondition_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_encountercondition_bool_exp - ): [pokemon_v2_encountercondition!]! - - """ - fetch data from the table: "pokemon_v2_encounterconditionname" - """ - pokemon_v2_encounterconditionname( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterconditionname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterconditionname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterconditionname_bool_exp - ): [pokemon_v2_encounterconditionname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_encounterconditionname" - """ - pokemon_v2_encounterconditionname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterconditionname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterconditionname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterconditionname_bool_exp - ): pokemon_v2_encounterconditionname_aggregate! - - """ - fetch data from the table: "pokemon_v2_encounterconditionname" using primary key columns - """ - pokemon_v2_encounterconditionname_by_pk(id: Int!): pokemon_v2_encounterconditionname - - """ - fetch data from the table in a streaming manner: "pokemon_v2_encounterconditionname" - """ - pokemon_v2_encounterconditionname_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_encounterconditionname_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_encounterconditionname_bool_exp - ): [pokemon_v2_encounterconditionname!]! - - """ - fetch data from the table: "pokemon_v2_encounterconditionvalue" - """ - pokemon_v2_encounterconditionvalue( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterconditionvalue_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterconditionvalue_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterconditionvalue_bool_exp - ): [pokemon_v2_encounterconditionvalue!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_encounterconditionvalue" - """ - pokemon_v2_encounterconditionvalue_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterconditionvalue_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterconditionvalue_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterconditionvalue_bool_exp - ): pokemon_v2_encounterconditionvalue_aggregate! - - """ - fetch data from the table: "pokemon_v2_encounterconditionvalue" using primary key columns - """ - pokemon_v2_encounterconditionvalue_by_pk(id: Int!): pokemon_v2_encounterconditionvalue - - """ - fetch data from the table in a streaming manner: "pokemon_v2_encounterconditionvalue" - """ - pokemon_v2_encounterconditionvalue_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_encounterconditionvalue_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_encounterconditionvalue_bool_exp - ): [pokemon_v2_encounterconditionvalue!]! - - """ - fetch data from the table: "pokemon_v2_encounterconditionvaluemap" - """ - pokemon_v2_encounterconditionvaluemap( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterconditionvaluemap_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterconditionvaluemap_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterconditionvaluemap_bool_exp - ): [pokemon_v2_encounterconditionvaluemap!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_encounterconditionvaluemap" - """ - pokemon_v2_encounterconditionvaluemap_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterconditionvaluemap_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterconditionvaluemap_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterconditionvaluemap_bool_exp - ): pokemon_v2_encounterconditionvaluemap_aggregate! - - """ - fetch data from the table: "pokemon_v2_encounterconditionvaluemap" using primary key columns - """ - pokemon_v2_encounterconditionvaluemap_by_pk(id: Int!): pokemon_v2_encounterconditionvaluemap - - """ - fetch data from the table in a streaming manner: "pokemon_v2_encounterconditionvaluemap" - """ - pokemon_v2_encounterconditionvaluemap_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_encounterconditionvaluemap_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_encounterconditionvaluemap_bool_exp - ): [pokemon_v2_encounterconditionvaluemap!]! - - """ - fetch data from the table: "pokemon_v2_encounterconditionvaluename" - """ - pokemon_v2_encounterconditionvaluename( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterconditionvaluename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterconditionvaluename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterconditionvaluename_bool_exp - ): [pokemon_v2_encounterconditionvaluename!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_encounterconditionvaluename" - """ - pokemon_v2_encounterconditionvaluename_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterconditionvaluename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterconditionvaluename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterconditionvaluename_bool_exp - ): pokemon_v2_encounterconditionvaluename_aggregate! - - """ - fetch data from the table: "pokemon_v2_encounterconditionvaluename" using primary key columns - """ - pokemon_v2_encounterconditionvaluename_by_pk(id: Int!): pokemon_v2_encounterconditionvaluename - - """ - fetch data from the table in a streaming manner: "pokemon_v2_encounterconditionvaluename" - """ - pokemon_v2_encounterconditionvaluename_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_encounterconditionvaluename_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_encounterconditionvaluename_bool_exp - ): [pokemon_v2_encounterconditionvaluename!]! - - """ - fetch data from the table: "pokemon_v2_encountermethod" - """ - pokemon_v2_encountermethod( - """distinct select on columns""" - distinct_on: [pokemon_v2_encountermethod_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encountermethod_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encountermethod_bool_exp - ): [pokemon_v2_encountermethod!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_encountermethod" - """ - pokemon_v2_encountermethod_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_encountermethod_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encountermethod_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encountermethod_bool_exp - ): pokemon_v2_encountermethod_aggregate! - - """ - fetch data from the table: "pokemon_v2_encountermethod" using primary key columns - """ - pokemon_v2_encountermethod_by_pk(id: Int!): pokemon_v2_encountermethod - - """ - fetch data from the table in a streaming manner: "pokemon_v2_encountermethod" - """ - pokemon_v2_encountermethod_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_encountermethod_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_encountermethod_bool_exp - ): [pokemon_v2_encountermethod!]! - - """ - fetch data from the table: "pokemon_v2_encountermethodname" - """ - pokemon_v2_encountermethodname( - """distinct select on columns""" - distinct_on: [pokemon_v2_encountermethodname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encountermethodname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encountermethodname_bool_exp - ): [pokemon_v2_encountermethodname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_encountermethodname" - """ - pokemon_v2_encountermethodname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_encountermethodname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encountermethodname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encountermethodname_bool_exp - ): pokemon_v2_encountermethodname_aggregate! - - """ - fetch data from the table: "pokemon_v2_encountermethodname" using primary key columns - """ - pokemon_v2_encountermethodname_by_pk(id: Int!): pokemon_v2_encountermethodname - - """ - fetch data from the table in a streaming manner: "pokemon_v2_encountermethodname" - """ - pokemon_v2_encountermethodname_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_encountermethodname_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_encountermethodname_bool_exp - ): [pokemon_v2_encountermethodname!]! - - """ - fetch data from the table: "pokemon_v2_encounterslot" - """ - pokemon_v2_encounterslot( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterslot_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterslot_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterslot_bool_exp - ): [pokemon_v2_encounterslot!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_encounterslot" - """ - pokemon_v2_encounterslot_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_encounterslot_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_encounterslot_order_by!] - - """filter the rows returned""" - where: pokemon_v2_encounterslot_bool_exp - ): pokemon_v2_encounterslot_aggregate! - - """ - fetch data from the table: "pokemon_v2_encounterslot" using primary key columns - """ - pokemon_v2_encounterslot_by_pk(id: Int!): pokemon_v2_encounterslot - - """ - fetch data from the table in a streaming manner: "pokemon_v2_encounterslot" - """ - pokemon_v2_encounterslot_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_encounterslot_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_encounterslot_bool_exp - ): [pokemon_v2_encounterslot!]! - - """ - fetch data from the table: "pokemon_v2_evolutionchain" - """ - pokemon_v2_evolutionchain( - """distinct select on columns""" - distinct_on: [pokemon_v2_evolutionchain_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_evolutionchain_order_by!] - - """filter the rows returned""" - where: pokemon_v2_evolutionchain_bool_exp - ): [pokemon_v2_evolutionchain!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_evolutionchain" - """ - pokemon_v2_evolutionchain_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_evolutionchain_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_evolutionchain_order_by!] - - """filter the rows returned""" - where: pokemon_v2_evolutionchain_bool_exp - ): pokemon_v2_evolutionchain_aggregate! - - """ - fetch data from the table: "pokemon_v2_evolutionchain" using primary key columns - """ - pokemon_v2_evolutionchain_by_pk(id: Int!): pokemon_v2_evolutionchain - - """ - fetch data from the table in a streaming manner: "pokemon_v2_evolutionchain" - """ - pokemon_v2_evolutionchain_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_evolutionchain_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_evolutionchain_bool_exp - ): [pokemon_v2_evolutionchain!]! - - """ - fetch data from the table: "pokemon_v2_evolutiontrigger" - """ - pokemon_v2_evolutiontrigger( - """distinct select on columns""" - distinct_on: [pokemon_v2_evolutiontrigger_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_evolutiontrigger_order_by!] - - """filter the rows returned""" - where: pokemon_v2_evolutiontrigger_bool_exp - ): [pokemon_v2_evolutiontrigger!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_evolutiontrigger" - """ - pokemon_v2_evolutiontrigger_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_evolutiontrigger_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_evolutiontrigger_order_by!] - - """filter the rows returned""" - where: pokemon_v2_evolutiontrigger_bool_exp - ): pokemon_v2_evolutiontrigger_aggregate! - - """ - fetch data from the table: "pokemon_v2_evolutiontrigger" using primary key columns - """ - pokemon_v2_evolutiontrigger_by_pk(id: Int!): pokemon_v2_evolutiontrigger - - """ - fetch data from the table in a streaming manner: "pokemon_v2_evolutiontrigger" - """ - pokemon_v2_evolutiontrigger_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_evolutiontrigger_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_evolutiontrigger_bool_exp - ): [pokemon_v2_evolutiontrigger!]! - - """ - fetch data from the table: "pokemon_v2_evolutiontriggername" - """ - pokemon_v2_evolutiontriggername( - """distinct select on columns""" - distinct_on: [pokemon_v2_evolutiontriggername_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_evolutiontriggername_order_by!] - - """filter the rows returned""" - where: pokemon_v2_evolutiontriggername_bool_exp - ): [pokemon_v2_evolutiontriggername!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_evolutiontriggername" - """ - pokemon_v2_evolutiontriggername_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_evolutiontriggername_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_evolutiontriggername_order_by!] - - """filter the rows returned""" - where: pokemon_v2_evolutiontriggername_bool_exp - ): pokemon_v2_evolutiontriggername_aggregate! - - """ - fetch data from the table: "pokemon_v2_evolutiontriggername" using primary key columns - """ - pokemon_v2_evolutiontriggername_by_pk(id: Int!): pokemon_v2_evolutiontriggername - - """ - fetch data from the table in a streaming manner: "pokemon_v2_evolutiontriggername" - """ - pokemon_v2_evolutiontriggername_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_evolutiontriggername_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_evolutiontriggername_bool_exp - ): [pokemon_v2_evolutiontriggername!]! - - """ - fetch data from the table: "pokemon_v2_experience" - """ - pokemon_v2_experience( - """distinct select on columns""" - distinct_on: [pokemon_v2_experience_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_experience_order_by!] - - """filter the rows returned""" - where: pokemon_v2_experience_bool_exp - ): [pokemon_v2_experience!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_experience" - """ - pokemon_v2_experience_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_experience_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_experience_order_by!] - - """filter the rows returned""" - where: pokemon_v2_experience_bool_exp - ): pokemon_v2_experience_aggregate! - - """ - fetch data from the table: "pokemon_v2_experience" using primary key columns - """ - pokemon_v2_experience_by_pk(id: Int!): pokemon_v2_experience - - """ - fetch data from the table in a streaming manner: "pokemon_v2_experience" - """ - pokemon_v2_experience_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_experience_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_experience_bool_exp - ): [pokemon_v2_experience!]! - - """ - fetch data from the table: "pokemon_v2_gender" - """ - pokemon_v2_gender( - """distinct select on columns""" - distinct_on: [pokemon_v2_gender_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_gender_order_by!] - - """filter the rows returned""" - where: pokemon_v2_gender_bool_exp - ): [pokemon_v2_gender!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_gender" - """ - pokemon_v2_gender_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_gender_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_gender_order_by!] - - """filter the rows returned""" - where: pokemon_v2_gender_bool_exp - ): pokemon_v2_gender_aggregate! - - """ - fetch data from the table: "pokemon_v2_gender" using primary key columns - """ - pokemon_v2_gender_by_pk(id: Int!): pokemon_v2_gender - - """ - fetch data from the table in a streaming manner: "pokemon_v2_gender" - """ - pokemon_v2_gender_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_gender_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_gender_bool_exp - ): [pokemon_v2_gender!]! - - """ - fetch data from the table: "pokemon_v2_generation" - """ - pokemon_v2_generation( - """distinct select on columns""" - distinct_on: [pokemon_v2_generation_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_generation_order_by!] - - """filter the rows returned""" - where: pokemon_v2_generation_bool_exp - ): [pokemon_v2_generation!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_generation" - """ - pokemon_v2_generation_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_generation_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_generation_order_by!] - - """filter the rows returned""" - where: pokemon_v2_generation_bool_exp - ): pokemon_v2_generation_aggregate! - - """ - fetch data from the table: "pokemon_v2_generation" using primary key columns - """ - pokemon_v2_generation_by_pk(id: Int!): pokemon_v2_generation - - """ - fetch data from the table in a streaming manner: "pokemon_v2_generation" - """ - pokemon_v2_generation_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_generation_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_generation_bool_exp - ): [pokemon_v2_generation!]! - - """ - fetch data from the table: "pokemon_v2_generationname" - """ - pokemon_v2_generationname( - """distinct select on columns""" - distinct_on: [pokemon_v2_generationname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_generationname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_generationname_bool_exp - ): [pokemon_v2_generationname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_generationname" - """ - pokemon_v2_generationname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_generationname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_generationname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_generationname_bool_exp - ): pokemon_v2_generationname_aggregate! - - """ - fetch data from the table: "pokemon_v2_generationname" using primary key columns - """ - pokemon_v2_generationname_by_pk(id: Int!): pokemon_v2_generationname - - """ - fetch data from the table in a streaming manner: "pokemon_v2_generationname" - """ - pokemon_v2_generationname_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_generationname_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_generationname_bool_exp - ): [pokemon_v2_generationname!]! - - """ - fetch data from the table: "pokemon_v2_growthrate" - """ - pokemon_v2_growthrate( - """distinct select on columns""" - distinct_on: [pokemon_v2_growthrate_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_growthrate_order_by!] - - """filter the rows returned""" - where: pokemon_v2_growthrate_bool_exp - ): [pokemon_v2_growthrate!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_growthrate" - """ - pokemon_v2_growthrate_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_growthrate_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_growthrate_order_by!] - - """filter the rows returned""" - where: pokemon_v2_growthrate_bool_exp - ): pokemon_v2_growthrate_aggregate! - - """ - fetch data from the table: "pokemon_v2_growthrate" using primary key columns - """ - pokemon_v2_growthrate_by_pk(id: Int!): pokemon_v2_growthrate - - """ - fetch data from the table in a streaming manner: "pokemon_v2_growthrate" - """ - pokemon_v2_growthrate_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_growthrate_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_growthrate_bool_exp - ): [pokemon_v2_growthrate!]! - - """ - fetch data from the table: "pokemon_v2_growthratedescription" - """ - pokemon_v2_growthratedescription( - """distinct select on columns""" - distinct_on: [pokemon_v2_growthratedescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_growthratedescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_growthratedescription_bool_exp - ): [pokemon_v2_growthratedescription!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_growthratedescription" - """ - pokemon_v2_growthratedescription_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_growthratedescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_growthratedescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_growthratedescription_bool_exp - ): pokemon_v2_growthratedescription_aggregate! - - """ - fetch data from the table: "pokemon_v2_growthratedescription" using primary key columns - """ - pokemon_v2_growthratedescription_by_pk(id: Int!): pokemon_v2_growthratedescription - - """ - fetch data from the table in a streaming manner: "pokemon_v2_growthratedescription" - """ - pokemon_v2_growthratedescription_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_growthratedescription_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_growthratedescription_bool_exp - ): [pokemon_v2_growthratedescription!]! - - """ - fetch data from the table: "pokemon_v2_item" - """ - pokemon_v2_item( - """distinct select on columns""" - distinct_on: [pokemon_v2_item_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_item_order_by!] - - """filter the rows returned""" - where: pokemon_v2_item_bool_exp - ): [pokemon_v2_item!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_item" - """ - pokemon_v2_item_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_item_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_item_order_by!] - - """filter the rows returned""" - where: pokemon_v2_item_bool_exp - ): pokemon_v2_item_aggregate! - - """fetch data from the table: "pokemon_v2_item" using primary key columns""" - pokemon_v2_item_by_pk(id: Int!): pokemon_v2_item - - """ - fetch data from the table in a streaming manner: "pokemon_v2_item" - """ - pokemon_v2_item_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_item_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_item_bool_exp - ): [pokemon_v2_item!]! - - """ - fetch data from the table: "pokemon_v2_itemattribute" - """ - pokemon_v2_itemattribute( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemattribute_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemattribute_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemattribute_bool_exp - ): [pokemon_v2_itemattribute!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_itemattribute" - """ - pokemon_v2_itemattribute_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemattribute_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemattribute_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemattribute_bool_exp - ): pokemon_v2_itemattribute_aggregate! - - """ - fetch data from the table: "pokemon_v2_itemattribute" using primary key columns - """ - pokemon_v2_itemattribute_by_pk(id: Int!): pokemon_v2_itemattribute - - """ - fetch data from the table in a streaming manner: "pokemon_v2_itemattribute" - """ - pokemon_v2_itemattribute_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_itemattribute_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_itemattribute_bool_exp - ): [pokemon_v2_itemattribute!]! - - """ - fetch data from the table: "pokemon_v2_itemattributedescription" - """ - pokemon_v2_itemattributedescription( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemattributedescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemattributedescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemattributedescription_bool_exp - ): [pokemon_v2_itemattributedescription!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_itemattributedescription" - """ - pokemon_v2_itemattributedescription_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemattributedescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemattributedescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemattributedescription_bool_exp - ): pokemon_v2_itemattributedescription_aggregate! - - """ - fetch data from the table: "pokemon_v2_itemattributedescription" using primary key columns - """ - pokemon_v2_itemattributedescription_by_pk(id: Int!): pokemon_v2_itemattributedescription - - """ - fetch data from the table in a streaming manner: "pokemon_v2_itemattributedescription" - """ - pokemon_v2_itemattributedescription_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_itemattributedescription_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_itemattributedescription_bool_exp - ): [pokemon_v2_itemattributedescription!]! - - """ - fetch data from the table: "pokemon_v2_itemattributemap" - """ - pokemon_v2_itemattributemap( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemattributemap_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemattributemap_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemattributemap_bool_exp - ): [pokemon_v2_itemattributemap!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_itemattributemap" - """ - pokemon_v2_itemattributemap_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemattributemap_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemattributemap_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemattributemap_bool_exp - ): pokemon_v2_itemattributemap_aggregate! - - """ - fetch data from the table: "pokemon_v2_itemattributemap" using primary key columns - """ - pokemon_v2_itemattributemap_by_pk(id: Int!): pokemon_v2_itemattributemap - - """ - fetch data from the table in a streaming manner: "pokemon_v2_itemattributemap" - """ - pokemon_v2_itemattributemap_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_itemattributemap_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_itemattributemap_bool_exp - ): [pokemon_v2_itemattributemap!]! - - """ - fetch data from the table: "pokemon_v2_itemattributename" - """ - pokemon_v2_itemattributename( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemattributename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemattributename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemattributename_bool_exp - ): [pokemon_v2_itemattributename!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_itemattributename" - """ - pokemon_v2_itemattributename_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemattributename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemattributename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemattributename_bool_exp - ): pokemon_v2_itemattributename_aggregate! - - """ - fetch data from the table: "pokemon_v2_itemattributename" using primary key columns - """ - pokemon_v2_itemattributename_by_pk(id: Int!): pokemon_v2_itemattributename - - """ - fetch data from the table in a streaming manner: "pokemon_v2_itemattributename" - """ - pokemon_v2_itemattributename_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_itemattributename_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_itemattributename_bool_exp - ): [pokemon_v2_itemattributename!]! - - """ - fetch data from the table: "pokemon_v2_itemcategory" - """ - pokemon_v2_itemcategory( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemcategory_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemcategory_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemcategory_bool_exp - ): [pokemon_v2_itemcategory!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_itemcategory" - """ - pokemon_v2_itemcategory_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemcategory_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemcategory_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemcategory_bool_exp - ): pokemon_v2_itemcategory_aggregate! - - """ - fetch data from the table: "pokemon_v2_itemcategory" using primary key columns - """ - pokemon_v2_itemcategory_by_pk(id: Int!): pokemon_v2_itemcategory - - """ - fetch data from the table in a streaming manner: "pokemon_v2_itemcategory" - """ - pokemon_v2_itemcategory_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_itemcategory_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_itemcategory_bool_exp - ): [pokemon_v2_itemcategory!]! - - """ - fetch data from the table: "pokemon_v2_itemcategoryname" - """ - pokemon_v2_itemcategoryname( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemcategoryname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemcategoryname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemcategoryname_bool_exp - ): [pokemon_v2_itemcategoryname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_itemcategoryname" - """ - pokemon_v2_itemcategoryname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemcategoryname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemcategoryname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemcategoryname_bool_exp - ): pokemon_v2_itemcategoryname_aggregate! - - """ - fetch data from the table: "pokemon_v2_itemcategoryname" using primary key columns - """ - pokemon_v2_itemcategoryname_by_pk(id: Int!): pokemon_v2_itemcategoryname - - """ - fetch data from the table in a streaming manner: "pokemon_v2_itemcategoryname" - """ - pokemon_v2_itemcategoryname_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_itemcategoryname_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_itemcategoryname_bool_exp - ): [pokemon_v2_itemcategoryname!]! - - """ - fetch data from the table: "pokemon_v2_itemeffecttext" - """ - pokemon_v2_itemeffecttext( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemeffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemeffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemeffecttext_bool_exp - ): [pokemon_v2_itemeffecttext!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_itemeffecttext" - """ - pokemon_v2_itemeffecttext_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemeffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemeffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemeffecttext_bool_exp - ): pokemon_v2_itemeffecttext_aggregate! - - """ - fetch data from the table: "pokemon_v2_itemeffecttext" using primary key columns - """ - pokemon_v2_itemeffecttext_by_pk(id: Int!): pokemon_v2_itemeffecttext - - """ - fetch data from the table in a streaming manner: "pokemon_v2_itemeffecttext" - """ - pokemon_v2_itemeffecttext_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_itemeffecttext_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_itemeffecttext_bool_exp - ): [pokemon_v2_itemeffecttext!]! - - """ - fetch data from the table: "pokemon_v2_itemflavortext" - """ - pokemon_v2_itemflavortext( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemflavortext_bool_exp - ): [pokemon_v2_itemflavortext!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_itemflavortext" - """ - pokemon_v2_itemflavortext_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemflavortext_bool_exp - ): pokemon_v2_itemflavortext_aggregate! - - """ - fetch data from the table: "pokemon_v2_itemflavortext" using primary key columns - """ - pokemon_v2_itemflavortext_by_pk(id: Int!): pokemon_v2_itemflavortext - - """ - fetch data from the table in a streaming manner: "pokemon_v2_itemflavortext" - """ - pokemon_v2_itemflavortext_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_itemflavortext_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_itemflavortext_bool_exp - ): [pokemon_v2_itemflavortext!]! - - """ - fetch data from the table: "pokemon_v2_itemflingeffect" - """ - pokemon_v2_itemflingeffect( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemflingeffect_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemflingeffect_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemflingeffect_bool_exp - ): [pokemon_v2_itemflingeffect!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_itemflingeffect" - """ - pokemon_v2_itemflingeffect_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemflingeffect_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemflingeffect_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemflingeffect_bool_exp - ): pokemon_v2_itemflingeffect_aggregate! - - """ - fetch data from the table: "pokemon_v2_itemflingeffect" using primary key columns - """ - pokemon_v2_itemflingeffect_by_pk(id: Int!): pokemon_v2_itemflingeffect - - """ - fetch data from the table in a streaming manner: "pokemon_v2_itemflingeffect" - """ - pokemon_v2_itemflingeffect_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_itemflingeffect_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_itemflingeffect_bool_exp - ): [pokemon_v2_itemflingeffect!]! - - """ - fetch data from the table: "pokemon_v2_itemflingeffecteffecttext" - """ - pokemon_v2_itemflingeffecteffecttext( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemflingeffecteffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemflingeffecteffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemflingeffecteffecttext_bool_exp - ): [pokemon_v2_itemflingeffecteffecttext!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_itemflingeffecteffecttext" - """ - pokemon_v2_itemflingeffecteffecttext_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemflingeffecteffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemflingeffecteffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemflingeffecteffecttext_bool_exp - ): pokemon_v2_itemflingeffecteffecttext_aggregate! - - """ - fetch data from the table: "pokemon_v2_itemflingeffecteffecttext" using primary key columns - """ - pokemon_v2_itemflingeffecteffecttext_by_pk(id: Int!): pokemon_v2_itemflingeffecteffecttext - - """ - fetch data from the table in a streaming manner: "pokemon_v2_itemflingeffecteffecttext" - """ - pokemon_v2_itemflingeffecteffecttext_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_itemflingeffecteffecttext_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_itemflingeffecteffecttext_bool_exp - ): [pokemon_v2_itemflingeffecteffecttext!]! - - """ - fetch data from the table: "pokemon_v2_itemgameindex" - """ - pokemon_v2_itemgameindex( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemgameindex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemgameindex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemgameindex_bool_exp - ): [pokemon_v2_itemgameindex!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_itemgameindex" - """ - pokemon_v2_itemgameindex_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemgameindex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemgameindex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemgameindex_bool_exp - ): pokemon_v2_itemgameindex_aggregate! - - """ - fetch data from the table: "pokemon_v2_itemgameindex" using primary key columns - """ - pokemon_v2_itemgameindex_by_pk(id: Int!): pokemon_v2_itemgameindex - - """ - fetch data from the table in a streaming manner: "pokemon_v2_itemgameindex" - """ - pokemon_v2_itemgameindex_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_itemgameindex_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_itemgameindex_bool_exp - ): [pokemon_v2_itemgameindex!]! - - """ - fetch data from the table: "pokemon_v2_itemname" - """ - pokemon_v2_itemname( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemname_bool_exp - ): [pokemon_v2_itemname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_itemname" - """ - pokemon_v2_itemname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemname_bool_exp - ): pokemon_v2_itemname_aggregate! - - """ - fetch data from the table: "pokemon_v2_itemname" using primary key columns - """ - pokemon_v2_itemname_by_pk(id: Int!): pokemon_v2_itemname - - """ - fetch data from the table in a streaming manner: "pokemon_v2_itemname" - """ - pokemon_v2_itemname_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_itemname_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_itemname_bool_exp - ): [pokemon_v2_itemname!]! - - """ - fetch data from the table: "pokemon_v2_itempocket" - """ - pokemon_v2_itempocket( - """distinct select on columns""" - distinct_on: [pokemon_v2_itempocket_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itempocket_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itempocket_bool_exp - ): [pokemon_v2_itempocket!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_itempocket" - """ - pokemon_v2_itempocket_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itempocket_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itempocket_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itempocket_bool_exp - ): pokemon_v2_itempocket_aggregate! - - """ - fetch data from the table: "pokemon_v2_itempocket" using primary key columns - """ - pokemon_v2_itempocket_by_pk(id: Int!): pokemon_v2_itempocket - - """ - fetch data from the table in a streaming manner: "pokemon_v2_itempocket" - """ - pokemon_v2_itempocket_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_itempocket_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_itempocket_bool_exp - ): [pokemon_v2_itempocket!]! - - """ - fetch data from the table: "pokemon_v2_itempocketname" - """ - pokemon_v2_itempocketname( - """distinct select on columns""" - distinct_on: [pokemon_v2_itempocketname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itempocketname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itempocketname_bool_exp - ): [pokemon_v2_itempocketname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_itempocketname" - """ - pokemon_v2_itempocketname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itempocketname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itempocketname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itempocketname_bool_exp - ): pokemon_v2_itempocketname_aggregate! - - """ - fetch data from the table: "pokemon_v2_itempocketname" using primary key columns - """ - pokemon_v2_itempocketname_by_pk(id: Int!): pokemon_v2_itempocketname - - """ - fetch data from the table in a streaming manner: "pokemon_v2_itempocketname" - """ - pokemon_v2_itempocketname_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_itempocketname_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_itempocketname_bool_exp - ): [pokemon_v2_itempocketname!]! - - """An array relationship""" - pokemon_v2_itemsprites( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemsprites_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemsprites_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemsprites_bool_exp - ): [pokemon_v2_itemsprites!]! - - """An aggregate relationship""" - pokemon_v2_itemsprites_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_itemsprites_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_itemsprites_order_by!] - - """filter the rows returned""" - where: pokemon_v2_itemsprites_bool_exp - ): pokemon_v2_itemsprites_aggregate! - - """ - fetch data from the table: "pokemon_v2_itemsprites" using primary key columns - """ - pokemon_v2_itemsprites_by_pk(id: Int!): pokemon_v2_itemsprites - - """ - fetch data from the table in a streaming manner: "pokemon_v2_itemsprites" - """ - pokemon_v2_itemsprites_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_itemsprites_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_itemsprites_bool_exp - ): [pokemon_v2_itemsprites!]! - - """ - fetch data from the table: "pokemon_v2_language" - """ - pokemon_v2_language( - """distinct select on columns""" - distinct_on: [pokemon_v2_language_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_language_order_by!] - - """filter the rows returned""" - where: pokemon_v2_language_bool_exp - ): [pokemon_v2_language!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_language" - """ - pokemon_v2_language_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_language_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_language_order_by!] - - """filter the rows returned""" - where: pokemon_v2_language_bool_exp - ): pokemon_v2_language_aggregate! - - """ - fetch data from the table: "pokemon_v2_language" using primary key columns - """ - pokemon_v2_language_by_pk(id: Int!): pokemon_v2_language - - """ - fetch data from the table in a streaming manner: "pokemon_v2_language" - """ - pokemon_v2_language_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_language_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_language_bool_exp - ): [pokemon_v2_language!]! - - """ - fetch data from the table: "pokemon_v2_languagename" - """ - pokemon_v2_languagename( - """distinct select on columns""" - distinct_on: [pokemon_v2_languagename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_languagename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_languagename_bool_exp - ): [pokemon_v2_languagename!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_languagename" - """ - pokemon_v2_languagename_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_languagename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_languagename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_languagename_bool_exp - ): pokemon_v2_languagename_aggregate! - - """ - fetch data from the table: "pokemon_v2_languagename" using primary key columns - """ - pokemon_v2_languagename_by_pk(id: Int!): pokemon_v2_languagename - - """ - fetch data from the table in a streaming manner: "pokemon_v2_languagename" - """ - pokemon_v2_languagename_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_languagename_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_languagename_bool_exp - ): [pokemon_v2_languagename!]! - - """ - fetch data from the table: "pokemon_v2_location" - """ - pokemon_v2_location( - """distinct select on columns""" - distinct_on: [pokemon_v2_location_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_location_order_by!] - - """filter the rows returned""" - where: pokemon_v2_location_bool_exp - ): [pokemon_v2_location!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_location" - """ - pokemon_v2_location_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_location_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_location_order_by!] - - """filter the rows returned""" - where: pokemon_v2_location_bool_exp - ): pokemon_v2_location_aggregate! - - """ - fetch data from the table: "pokemon_v2_location" using primary key columns - """ - pokemon_v2_location_by_pk(id: Int!): pokemon_v2_location - - """ - fetch data from the table in a streaming manner: "pokemon_v2_location" - """ - pokemon_v2_location_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_location_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_location_bool_exp - ): [pokemon_v2_location!]! - - """ - fetch data from the table: "pokemon_v2_locationarea" - """ - pokemon_v2_locationarea( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationarea_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationarea_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationarea_bool_exp - ): [pokemon_v2_locationarea!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_locationarea" - """ - pokemon_v2_locationarea_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationarea_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationarea_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationarea_bool_exp - ): pokemon_v2_locationarea_aggregate! - - """ - fetch data from the table: "pokemon_v2_locationarea" using primary key columns - """ - pokemon_v2_locationarea_by_pk(id: Int!): pokemon_v2_locationarea - - """ - fetch data from the table in a streaming manner: "pokemon_v2_locationarea" - """ - pokemon_v2_locationarea_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_locationarea_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_locationarea_bool_exp - ): [pokemon_v2_locationarea!]! - - """ - fetch data from the table: "pokemon_v2_locationareaencounterrate" - """ - pokemon_v2_locationareaencounterrate( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationareaencounterrate_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationareaencounterrate_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationareaencounterrate_bool_exp - ): [pokemon_v2_locationareaencounterrate!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_locationareaencounterrate" - """ - pokemon_v2_locationareaencounterrate_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationareaencounterrate_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationareaencounterrate_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationareaencounterrate_bool_exp - ): pokemon_v2_locationareaencounterrate_aggregate! - - """ - fetch data from the table: "pokemon_v2_locationareaencounterrate" using primary key columns - """ - pokemon_v2_locationareaencounterrate_by_pk(id: Int!): pokemon_v2_locationareaencounterrate - - """ - fetch data from the table in a streaming manner: "pokemon_v2_locationareaencounterrate" - """ - pokemon_v2_locationareaencounterrate_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_locationareaencounterrate_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_locationareaencounterrate_bool_exp - ): [pokemon_v2_locationareaencounterrate!]! - - """ - fetch data from the table: "pokemon_v2_locationareaname" - """ - pokemon_v2_locationareaname( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationareaname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationareaname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationareaname_bool_exp - ): [pokemon_v2_locationareaname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_locationareaname" - """ - pokemon_v2_locationareaname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationareaname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationareaname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationareaname_bool_exp - ): pokemon_v2_locationareaname_aggregate! - - """ - fetch data from the table: "pokemon_v2_locationareaname" using primary key columns - """ - pokemon_v2_locationareaname_by_pk(id: Int!): pokemon_v2_locationareaname - - """ - fetch data from the table in a streaming manner: "pokemon_v2_locationareaname" - """ - pokemon_v2_locationareaname_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_locationareaname_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_locationareaname_bool_exp - ): [pokemon_v2_locationareaname!]! - - """ - fetch data from the table: "pokemon_v2_locationgameindex" - """ - pokemon_v2_locationgameindex( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationgameindex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationgameindex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationgameindex_bool_exp - ): [pokemon_v2_locationgameindex!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_locationgameindex" - """ - pokemon_v2_locationgameindex_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationgameindex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationgameindex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationgameindex_bool_exp - ): pokemon_v2_locationgameindex_aggregate! - - """ - fetch data from the table: "pokemon_v2_locationgameindex" using primary key columns - """ - pokemon_v2_locationgameindex_by_pk(id: Int!): pokemon_v2_locationgameindex - - """ - fetch data from the table in a streaming manner: "pokemon_v2_locationgameindex" - """ - pokemon_v2_locationgameindex_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_locationgameindex_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_locationgameindex_bool_exp - ): [pokemon_v2_locationgameindex!]! - - """ - fetch data from the table: "pokemon_v2_locationname" - """ - pokemon_v2_locationname( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationname_bool_exp - ): [pokemon_v2_locationname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_locationname" - """ - pokemon_v2_locationname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_locationname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_locationname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_locationname_bool_exp - ): pokemon_v2_locationname_aggregate! - - """ - fetch data from the table: "pokemon_v2_locationname" using primary key columns - """ - pokemon_v2_locationname_by_pk(id: Int!): pokemon_v2_locationname - - """ - fetch data from the table in a streaming manner: "pokemon_v2_locationname" - """ - pokemon_v2_locationname_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_locationname_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_locationname_bool_exp - ): [pokemon_v2_locationname!]! - - """ - fetch data from the table: "pokemon_v2_machine" - """ - pokemon_v2_machine( - """distinct select on columns""" - distinct_on: [pokemon_v2_machine_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_machine_order_by!] - - """filter the rows returned""" - where: pokemon_v2_machine_bool_exp - ): [pokemon_v2_machine!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_machine" - """ - pokemon_v2_machine_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_machine_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_machine_order_by!] - - """filter the rows returned""" - where: pokemon_v2_machine_bool_exp - ): pokemon_v2_machine_aggregate! - - """ - fetch data from the table: "pokemon_v2_machine" using primary key columns - """ - pokemon_v2_machine_by_pk(id: Int!): pokemon_v2_machine - - """ - fetch data from the table in a streaming manner: "pokemon_v2_machine" - """ - pokemon_v2_machine_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_machine_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_machine_bool_exp - ): [pokemon_v2_machine!]! - - """ - fetch data from the table: "pokemon_v2_move" - """ - pokemon_v2_move( - """distinct select on columns""" - distinct_on: [pokemon_v2_move_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_move_order_by!] - - """filter the rows returned""" - where: pokemon_v2_move_bool_exp - ): [pokemon_v2_move!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_move" - """ - pokemon_v2_move_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_move_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_move_order_by!] - - """filter the rows returned""" - where: pokemon_v2_move_bool_exp - ): pokemon_v2_move_aggregate! - - """fetch data from the table: "pokemon_v2_move" using primary key columns""" - pokemon_v2_move_by_pk(id: Int!): pokemon_v2_move - - """ - fetch data from the table in a streaming manner: "pokemon_v2_move" - """ - pokemon_v2_move_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_move_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_move_bool_exp - ): [pokemon_v2_move!]! - - """ - fetch data from the table: "pokemon_v2_moveattribute" - """ - pokemon_v2_moveattribute( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveattribute_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveattribute_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveattribute_bool_exp - ): [pokemon_v2_moveattribute!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_moveattribute" - """ - pokemon_v2_moveattribute_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveattribute_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveattribute_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveattribute_bool_exp - ): pokemon_v2_moveattribute_aggregate! - - """ - fetch data from the table: "pokemon_v2_moveattribute" using primary key columns - """ - pokemon_v2_moveattribute_by_pk(id: Int!): pokemon_v2_moveattribute - - """ - fetch data from the table in a streaming manner: "pokemon_v2_moveattribute" - """ - pokemon_v2_moveattribute_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_moveattribute_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_moveattribute_bool_exp - ): [pokemon_v2_moveattribute!]! - - """ - fetch data from the table: "pokemon_v2_moveattributedescription" - """ - pokemon_v2_moveattributedescription( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveattributedescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveattributedescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveattributedescription_bool_exp - ): [pokemon_v2_moveattributedescription!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_moveattributedescription" - """ - pokemon_v2_moveattributedescription_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveattributedescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveattributedescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveattributedescription_bool_exp - ): pokemon_v2_moveattributedescription_aggregate! - - """ - fetch data from the table: "pokemon_v2_moveattributedescription" using primary key columns - """ - pokemon_v2_moveattributedescription_by_pk(id: Int!): pokemon_v2_moveattributedescription - - """ - fetch data from the table in a streaming manner: "pokemon_v2_moveattributedescription" - """ - pokemon_v2_moveattributedescription_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_moveattributedescription_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_moveattributedescription_bool_exp - ): [pokemon_v2_moveattributedescription!]! - - """ - fetch data from the table: "pokemon_v2_moveattributemap" - """ - pokemon_v2_moveattributemap( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveattributemap_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveattributemap_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveattributemap_bool_exp - ): [pokemon_v2_moveattributemap!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_moveattributemap" - """ - pokemon_v2_moveattributemap_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveattributemap_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveattributemap_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveattributemap_bool_exp - ): pokemon_v2_moveattributemap_aggregate! - - """ - fetch data from the table: "pokemon_v2_moveattributemap" using primary key columns - """ - pokemon_v2_moveattributemap_by_pk(id: Int!): pokemon_v2_moveattributemap - - """ - fetch data from the table in a streaming manner: "pokemon_v2_moveattributemap" - """ - pokemon_v2_moveattributemap_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_moveattributemap_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_moveattributemap_bool_exp - ): [pokemon_v2_moveattributemap!]! - - """ - fetch data from the table: "pokemon_v2_moveattributename" - """ - pokemon_v2_moveattributename( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveattributename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveattributename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveattributename_bool_exp - ): [pokemon_v2_moveattributename!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_moveattributename" - """ - pokemon_v2_moveattributename_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveattributename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveattributename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveattributename_bool_exp - ): pokemon_v2_moveattributename_aggregate! - - """ - fetch data from the table: "pokemon_v2_moveattributename" using primary key columns - """ - pokemon_v2_moveattributename_by_pk(id: Int!): pokemon_v2_moveattributename - - """ - fetch data from the table in a streaming manner: "pokemon_v2_moveattributename" - """ - pokemon_v2_moveattributename_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_moveattributename_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_moveattributename_bool_exp - ): [pokemon_v2_moveattributename!]! - - """ - fetch data from the table: "pokemon_v2_movebattlestyle" - """ - pokemon_v2_movebattlestyle( - """distinct select on columns""" - distinct_on: [pokemon_v2_movebattlestyle_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movebattlestyle_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movebattlestyle_bool_exp - ): [pokemon_v2_movebattlestyle!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movebattlestyle" - """ - pokemon_v2_movebattlestyle_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movebattlestyle_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movebattlestyle_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movebattlestyle_bool_exp - ): pokemon_v2_movebattlestyle_aggregate! - - """ - fetch data from the table: "pokemon_v2_movebattlestyle" using primary key columns - """ - pokemon_v2_movebattlestyle_by_pk(id: Int!): pokemon_v2_movebattlestyle - - """ - fetch data from the table in a streaming manner: "pokemon_v2_movebattlestyle" - """ - pokemon_v2_movebattlestyle_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_movebattlestyle_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_movebattlestyle_bool_exp - ): [pokemon_v2_movebattlestyle!]! - - """ - fetch data from the table: "pokemon_v2_movebattlestylename" - """ - pokemon_v2_movebattlestylename( - """distinct select on columns""" - distinct_on: [pokemon_v2_movebattlestylename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movebattlestylename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movebattlestylename_bool_exp - ): [pokemon_v2_movebattlestylename!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movebattlestylename" - """ - pokemon_v2_movebattlestylename_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movebattlestylename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movebattlestylename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movebattlestylename_bool_exp - ): pokemon_v2_movebattlestylename_aggregate! - - """ - fetch data from the table: "pokemon_v2_movebattlestylename" using primary key columns - """ - pokemon_v2_movebattlestylename_by_pk(id: Int!): pokemon_v2_movebattlestylename - - """ - fetch data from the table in a streaming manner: "pokemon_v2_movebattlestylename" - """ - pokemon_v2_movebattlestylename_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_movebattlestylename_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_movebattlestylename_bool_exp - ): [pokemon_v2_movebattlestylename!]! - - """ - fetch data from the table: "pokemon_v2_movechange" - """ - pokemon_v2_movechange( - """distinct select on columns""" - distinct_on: [pokemon_v2_movechange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movechange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movechange_bool_exp - ): [pokemon_v2_movechange!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movechange" - """ - pokemon_v2_movechange_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movechange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movechange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movechange_bool_exp - ): pokemon_v2_movechange_aggregate! - - """ - fetch data from the table: "pokemon_v2_movechange" using primary key columns - """ - pokemon_v2_movechange_by_pk(id: Int!): pokemon_v2_movechange - - """ - fetch data from the table in a streaming manner: "pokemon_v2_movechange" - """ - pokemon_v2_movechange_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_movechange_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_movechange_bool_exp - ): [pokemon_v2_movechange!]! - - """ - fetch data from the table: "pokemon_v2_movedamageclass" - """ - pokemon_v2_movedamageclass( - """distinct select on columns""" - distinct_on: [pokemon_v2_movedamageclass_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movedamageclass_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movedamageclass_bool_exp - ): [pokemon_v2_movedamageclass!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movedamageclass" - """ - pokemon_v2_movedamageclass_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movedamageclass_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movedamageclass_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movedamageclass_bool_exp - ): pokemon_v2_movedamageclass_aggregate! - - """ - fetch data from the table: "pokemon_v2_movedamageclass" using primary key columns - """ - pokemon_v2_movedamageclass_by_pk(id: Int!): pokemon_v2_movedamageclass - - """ - fetch data from the table in a streaming manner: "pokemon_v2_movedamageclass" - """ - pokemon_v2_movedamageclass_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_movedamageclass_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_movedamageclass_bool_exp - ): [pokemon_v2_movedamageclass!]! - - """ - fetch data from the table: "pokemon_v2_movedamageclassdescription" - """ - pokemon_v2_movedamageclassdescription( - """distinct select on columns""" - distinct_on: [pokemon_v2_movedamageclassdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movedamageclassdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movedamageclassdescription_bool_exp - ): [pokemon_v2_movedamageclassdescription!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movedamageclassdescription" - """ - pokemon_v2_movedamageclassdescription_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movedamageclassdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movedamageclassdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movedamageclassdescription_bool_exp - ): pokemon_v2_movedamageclassdescription_aggregate! - - """ - fetch data from the table: "pokemon_v2_movedamageclassdescription" using primary key columns - """ - pokemon_v2_movedamageclassdescription_by_pk(id: Int!): pokemon_v2_movedamageclassdescription - - """ - fetch data from the table in a streaming manner: "pokemon_v2_movedamageclassdescription" - """ - pokemon_v2_movedamageclassdescription_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_movedamageclassdescription_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_movedamageclassdescription_bool_exp - ): [pokemon_v2_movedamageclassdescription!]! - - """ - fetch data from the table: "pokemon_v2_movedamageclassname" - """ - pokemon_v2_movedamageclassname( - """distinct select on columns""" - distinct_on: [pokemon_v2_movedamageclassname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movedamageclassname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movedamageclassname_bool_exp - ): [pokemon_v2_movedamageclassname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movedamageclassname" - """ - pokemon_v2_movedamageclassname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movedamageclassname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movedamageclassname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movedamageclassname_bool_exp - ): pokemon_v2_movedamageclassname_aggregate! - - """ - fetch data from the table: "pokemon_v2_movedamageclassname" using primary key columns - """ - pokemon_v2_movedamageclassname_by_pk(id: Int!): pokemon_v2_movedamageclassname - - """ - fetch data from the table in a streaming manner: "pokemon_v2_movedamageclassname" - """ - pokemon_v2_movedamageclassname_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_movedamageclassname_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_movedamageclassname_bool_exp - ): [pokemon_v2_movedamageclassname!]! - - """ - fetch data from the table: "pokemon_v2_moveeffect" - """ - pokemon_v2_moveeffect( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveeffect_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveeffect_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveeffect_bool_exp - ): [pokemon_v2_moveeffect!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_moveeffect" - """ - pokemon_v2_moveeffect_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveeffect_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveeffect_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveeffect_bool_exp - ): pokemon_v2_moveeffect_aggregate! - - """ - fetch data from the table: "pokemon_v2_moveeffect" using primary key columns - """ - pokemon_v2_moveeffect_by_pk(id: Int!): pokemon_v2_moveeffect - - """ - fetch data from the table in a streaming manner: "pokemon_v2_moveeffect" - """ - pokemon_v2_moveeffect_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_moveeffect_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_moveeffect_bool_exp - ): [pokemon_v2_moveeffect!]! - - """ - fetch data from the table: "pokemon_v2_moveeffectchange" - """ - pokemon_v2_moveeffectchange( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveeffectchange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveeffectchange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveeffectchange_bool_exp - ): [pokemon_v2_moveeffectchange!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_moveeffectchange" - """ - pokemon_v2_moveeffectchange_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveeffectchange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveeffectchange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveeffectchange_bool_exp - ): pokemon_v2_moveeffectchange_aggregate! - - """ - fetch data from the table: "pokemon_v2_moveeffectchange" using primary key columns - """ - pokemon_v2_moveeffectchange_by_pk(id: Int!): pokemon_v2_moveeffectchange - - """ - fetch data from the table in a streaming manner: "pokemon_v2_moveeffectchange" - """ - pokemon_v2_moveeffectchange_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_moveeffectchange_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_moveeffectchange_bool_exp - ): [pokemon_v2_moveeffectchange!]! - - """ - fetch data from the table: "pokemon_v2_moveeffectchangeeffecttext" - """ - pokemon_v2_moveeffectchangeeffecttext( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveeffectchangeeffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveeffectchangeeffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveeffectchangeeffecttext_bool_exp - ): [pokemon_v2_moveeffectchangeeffecttext!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_moveeffectchangeeffecttext" - """ - pokemon_v2_moveeffectchangeeffecttext_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveeffectchangeeffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveeffectchangeeffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveeffectchangeeffecttext_bool_exp - ): pokemon_v2_moveeffectchangeeffecttext_aggregate! - - """ - fetch data from the table: "pokemon_v2_moveeffectchangeeffecttext" using primary key columns - """ - pokemon_v2_moveeffectchangeeffecttext_by_pk(id: Int!): pokemon_v2_moveeffectchangeeffecttext - - """ - fetch data from the table in a streaming manner: "pokemon_v2_moveeffectchangeeffecttext" - """ - pokemon_v2_moveeffectchangeeffecttext_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_moveeffectchangeeffecttext_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_moveeffectchangeeffecttext_bool_exp - ): [pokemon_v2_moveeffectchangeeffecttext!]! - - """ - fetch data from the table: "pokemon_v2_moveeffecteffecttext" - """ - pokemon_v2_moveeffecteffecttext( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveeffecteffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveeffecteffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveeffecteffecttext_bool_exp - ): [pokemon_v2_moveeffecteffecttext!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_moveeffecteffecttext" - """ - pokemon_v2_moveeffecteffecttext_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveeffecteffecttext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveeffecteffecttext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveeffecteffecttext_bool_exp - ): pokemon_v2_moveeffecteffecttext_aggregate! - - """ - fetch data from the table: "pokemon_v2_moveeffecteffecttext" using primary key columns - """ - pokemon_v2_moveeffecteffecttext_by_pk(id: Int!): pokemon_v2_moveeffecteffecttext - - """ - fetch data from the table in a streaming manner: "pokemon_v2_moveeffecteffecttext" - """ - pokemon_v2_moveeffecteffecttext_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_moveeffecteffecttext_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_moveeffecteffecttext_bool_exp - ): [pokemon_v2_moveeffecteffecttext!]! - - """ - fetch data from the table: "pokemon_v2_moveflavortext" - """ - pokemon_v2_moveflavortext( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveflavortext_bool_exp - ): [pokemon_v2_moveflavortext!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_moveflavortext" - """ - pokemon_v2_moveflavortext_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_moveflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_moveflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_moveflavortext_bool_exp - ): pokemon_v2_moveflavortext_aggregate! - - """ - fetch data from the table: "pokemon_v2_moveflavortext" using primary key columns - """ - pokemon_v2_moveflavortext_by_pk(id: Int!): pokemon_v2_moveflavortext - - """ - fetch data from the table in a streaming manner: "pokemon_v2_moveflavortext" - """ - pokemon_v2_moveflavortext_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_moveflavortext_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_moveflavortext_bool_exp - ): [pokemon_v2_moveflavortext!]! - - """ - fetch data from the table: "pokemon_v2_movelearnmethod" - """ - pokemon_v2_movelearnmethod( - """distinct select on columns""" - distinct_on: [pokemon_v2_movelearnmethod_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movelearnmethod_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movelearnmethod_bool_exp - ): [pokemon_v2_movelearnmethod!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movelearnmethod" - """ - pokemon_v2_movelearnmethod_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movelearnmethod_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movelearnmethod_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movelearnmethod_bool_exp - ): pokemon_v2_movelearnmethod_aggregate! - - """ - fetch data from the table: "pokemon_v2_movelearnmethod" using primary key columns - """ - pokemon_v2_movelearnmethod_by_pk(id: Int!): pokemon_v2_movelearnmethod - - """ - fetch data from the table in a streaming manner: "pokemon_v2_movelearnmethod" - """ - pokemon_v2_movelearnmethod_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_movelearnmethod_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_movelearnmethod_bool_exp - ): [pokemon_v2_movelearnmethod!]! - - """ - fetch data from the table: "pokemon_v2_movelearnmethoddescription" - """ - pokemon_v2_movelearnmethoddescription( - """distinct select on columns""" - distinct_on: [pokemon_v2_movelearnmethoddescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movelearnmethoddescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movelearnmethoddescription_bool_exp - ): [pokemon_v2_movelearnmethoddescription!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movelearnmethoddescription" - """ - pokemon_v2_movelearnmethoddescription_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movelearnmethoddescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movelearnmethoddescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movelearnmethoddescription_bool_exp - ): pokemon_v2_movelearnmethoddescription_aggregate! - - """ - fetch data from the table: "pokemon_v2_movelearnmethoddescription" using primary key columns - """ - pokemon_v2_movelearnmethoddescription_by_pk(id: Int!): pokemon_v2_movelearnmethoddescription - - """ - fetch data from the table in a streaming manner: "pokemon_v2_movelearnmethoddescription" - """ - pokemon_v2_movelearnmethoddescription_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_movelearnmethoddescription_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_movelearnmethoddescription_bool_exp - ): [pokemon_v2_movelearnmethoddescription!]! - - """ - fetch data from the table: "pokemon_v2_movelearnmethodname" - """ - pokemon_v2_movelearnmethodname( - """distinct select on columns""" - distinct_on: [pokemon_v2_movelearnmethodname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movelearnmethodname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movelearnmethodname_bool_exp - ): [pokemon_v2_movelearnmethodname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movelearnmethodname" - """ - pokemon_v2_movelearnmethodname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movelearnmethodname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movelearnmethodname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movelearnmethodname_bool_exp - ): pokemon_v2_movelearnmethodname_aggregate! - - """ - fetch data from the table: "pokemon_v2_movelearnmethodname" using primary key columns - """ - pokemon_v2_movelearnmethodname_by_pk(id: Int!): pokemon_v2_movelearnmethodname - - """ - fetch data from the table in a streaming manner: "pokemon_v2_movelearnmethodname" - """ - pokemon_v2_movelearnmethodname_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_movelearnmethodname_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_movelearnmethodname_bool_exp - ): [pokemon_v2_movelearnmethodname!]! - - """An array relationship""" - pokemon_v2_movemeta( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemeta_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemeta_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemeta_bool_exp - ): [pokemon_v2_movemeta!]! - - """An aggregate relationship""" - pokemon_v2_movemeta_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemeta_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemeta_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemeta_bool_exp - ): pokemon_v2_movemeta_aggregate! - - """ - fetch data from the table: "pokemon_v2_movemeta" using primary key columns - """ - pokemon_v2_movemeta_by_pk(id: Int!): pokemon_v2_movemeta - - """ - fetch data from the table in a streaming manner: "pokemon_v2_movemeta" - """ - pokemon_v2_movemeta_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_movemeta_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_movemeta_bool_exp - ): [pokemon_v2_movemeta!]! - - """ - fetch data from the table: "pokemon_v2_movemetaailment" - """ - pokemon_v2_movemetaailment( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemetaailment_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemetaailment_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemetaailment_bool_exp - ): [pokemon_v2_movemetaailment!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movemetaailment" - """ - pokemon_v2_movemetaailment_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemetaailment_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemetaailment_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemetaailment_bool_exp - ): pokemon_v2_movemetaailment_aggregate! - - """ - fetch data from the table: "pokemon_v2_movemetaailment" using primary key columns - """ - pokemon_v2_movemetaailment_by_pk(id: Int!): pokemon_v2_movemetaailment - - """ - fetch data from the table in a streaming manner: "pokemon_v2_movemetaailment" - """ - pokemon_v2_movemetaailment_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_movemetaailment_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_movemetaailment_bool_exp - ): [pokemon_v2_movemetaailment!]! - - """ - fetch data from the table: "pokemon_v2_movemetaailmentname" - """ - pokemon_v2_movemetaailmentname( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemetaailmentname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemetaailmentname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemetaailmentname_bool_exp - ): [pokemon_v2_movemetaailmentname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movemetaailmentname" - """ - pokemon_v2_movemetaailmentname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemetaailmentname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemetaailmentname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemetaailmentname_bool_exp - ): pokemon_v2_movemetaailmentname_aggregate! - - """ - fetch data from the table: "pokemon_v2_movemetaailmentname" using primary key columns - """ - pokemon_v2_movemetaailmentname_by_pk(id: Int!): pokemon_v2_movemetaailmentname - - """ - fetch data from the table in a streaming manner: "pokemon_v2_movemetaailmentname" - """ - pokemon_v2_movemetaailmentname_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_movemetaailmentname_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_movemetaailmentname_bool_exp - ): [pokemon_v2_movemetaailmentname!]! - - """ - fetch data from the table: "pokemon_v2_movemetacategory" - """ - pokemon_v2_movemetacategory( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemetacategory_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemetacategory_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemetacategory_bool_exp - ): [pokemon_v2_movemetacategory!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movemetacategory" - """ - pokemon_v2_movemetacategory_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemetacategory_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemetacategory_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemetacategory_bool_exp - ): pokemon_v2_movemetacategory_aggregate! - - """ - fetch data from the table: "pokemon_v2_movemetacategory" using primary key columns - """ - pokemon_v2_movemetacategory_by_pk(id: Int!): pokemon_v2_movemetacategory - - """ - fetch data from the table in a streaming manner: "pokemon_v2_movemetacategory" - """ - pokemon_v2_movemetacategory_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_movemetacategory_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_movemetacategory_bool_exp - ): [pokemon_v2_movemetacategory!]! - - """ - fetch data from the table: "pokemon_v2_movemetacategorydescription" - """ - pokemon_v2_movemetacategorydescription( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemetacategorydescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemetacategorydescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemetacategorydescription_bool_exp - ): [pokemon_v2_movemetacategorydescription!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movemetacategorydescription" - """ - pokemon_v2_movemetacategorydescription_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemetacategorydescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemetacategorydescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemetacategorydescription_bool_exp - ): pokemon_v2_movemetacategorydescription_aggregate! - - """ - fetch data from the table: "pokemon_v2_movemetacategorydescription" using primary key columns - """ - pokemon_v2_movemetacategorydescription_by_pk(id: Int!): pokemon_v2_movemetacategorydescription - - """ - fetch data from the table in a streaming manner: "pokemon_v2_movemetacategorydescription" - """ - pokemon_v2_movemetacategorydescription_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_movemetacategorydescription_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_movemetacategorydescription_bool_exp - ): [pokemon_v2_movemetacategorydescription!]! - - """ - fetch data from the table: "pokemon_v2_movemetastatchange" - """ - pokemon_v2_movemetastatchange( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemetastatchange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemetastatchange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemetastatchange_bool_exp - ): [pokemon_v2_movemetastatchange!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movemetastatchange" - """ - pokemon_v2_movemetastatchange_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movemetastatchange_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movemetastatchange_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movemetastatchange_bool_exp - ): pokemon_v2_movemetastatchange_aggregate! - - """ - fetch data from the table: "pokemon_v2_movemetastatchange" using primary key columns - """ - pokemon_v2_movemetastatchange_by_pk(id: Int!): pokemon_v2_movemetastatchange - - """ - fetch data from the table in a streaming manner: "pokemon_v2_movemetastatchange" - """ - pokemon_v2_movemetastatchange_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_movemetastatchange_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_movemetastatchange_bool_exp - ): [pokemon_v2_movemetastatchange!]! - - """ - fetch data from the table: "pokemon_v2_movename" - """ - pokemon_v2_movename( - """distinct select on columns""" - distinct_on: [pokemon_v2_movename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movename_bool_exp - ): [pokemon_v2_movename!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movename" - """ - pokemon_v2_movename_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movename_bool_exp - ): pokemon_v2_movename_aggregate! - - """ - fetch data from the table: "pokemon_v2_movename" using primary key columns - """ - pokemon_v2_movename_by_pk(id: Int!): pokemon_v2_movename - - """ - fetch data from the table in a streaming manner: "pokemon_v2_movename" - """ - pokemon_v2_movename_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_movename_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_movename_bool_exp - ): [pokemon_v2_movename!]! - - """ - fetch data from the table: "pokemon_v2_movetarget" - """ - pokemon_v2_movetarget( - """distinct select on columns""" - distinct_on: [pokemon_v2_movetarget_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movetarget_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movetarget_bool_exp - ): [pokemon_v2_movetarget!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movetarget" - """ - pokemon_v2_movetarget_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movetarget_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movetarget_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movetarget_bool_exp - ): pokemon_v2_movetarget_aggregate! - - """ - fetch data from the table: "pokemon_v2_movetarget" using primary key columns - """ - pokemon_v2_movetarget_by_pk(id: Int!): pokemon_v2_movetarget - - """ - fetch data from the table in a streaming manner: "pokemon_v2_movetarget" - """ - pokemon_v2_movetarget_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_movetarget_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_movetarget_bool_exp - ): [pokemon_v2_movetarget!]! - - """ - fetch data from the table: "pokemon_v2_movetargetdescription" - """ - pokemon_v2_movetargetdescription( - """distinct select on columns""" - distinct_on: [pokemon_v2_movetargetdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movetargetdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movetargetdescription_bool_exp - ): [pokemon_v2_movetargetdescription!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movetargetdescription" - """ - pokemon_v2_movetargetdescription_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movetargetdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movetargetdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movetargetdescription_bool_exp - ): pokemon_v2_movetargetdescription_aggregate! - - """ - fetch data from the table: "pokemon_v2_movetargetdescription" using primary key columns - """ - pokemon_v2_movetargetdescription_by_pk(id: Int!): pokemon_v2_movetargetdescription - - """ - fetch data from the table in a streaming manner: "pokemon_v2_movetargetdescription" - """ - pokemon_v2_movetargetdescription_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_movetargetdescription_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_movetargetdescription_bool_exp - ): [pokemon_v2_movetargetdescription!]! - - """ - fetch data from the table: "pokemon_v2_movetargetname" - """ - pokemon_v2_movetargetname( - """distinct select on columns""" - distinct_on: [pokemon_v2_movetargetname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movetargetname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movetargetname_bool_exp - ): [pokemon_v2_movetargetname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_movetargetname" - """ - pokemon_v2_movetargetname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_movetargetname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_movetargetname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_movetargetname_bool_exp - ): pokemon_v2_movetargetname_aggregate! - - """ - fetch data from the table: "pokemon_v2_movetargetname" using primary key columns - """ - pokemon_v2_movetargetname_by_pk(id: Int!): pokemon_v2_movetargetname - - """ - fetch data from the table in a streaming manner: "pokemon_v2_movetargetname" - """ - pokemon_v2_movetargetname_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_movetargetname_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_movetargetname_bool_exp - ): [pokemon_v2_movetargetname!]! - - """ - fetch data from the table: "pokemon_v2_nature" - """ - pokemon_v2_nature( - """distinct select on columns""" - distinct_on: [pokemon_v2_nature_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_nature_order_by!] - - """filter the rows returned""" - where: pokemon_v2_nature_bool_exp - ): [pokemon_v2_nature!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_nature" - """ - pokemon_v2_nature_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_nature_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_nature_order_by!] - - """filter the rows returned""" - where: pokemon_v2_nature_bool_exp - ): pokemon_v2_nature_aggregate! - - """ - fetch data from the table: "pokemon_v2_nature" using primary key columns - """ - pokemon_v2_nature_by_pk(id: Int!): pokemon_v2_nature - - """ - fetch data from the table in a streaming manner: "pokemon_v2_nature" - """ - pokemon_v2_nature_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_nature_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_nature_bool_exp - ): [pokemon_v2_nature!]! - - """ - fetch data from the table: "pokemon_v2_naturebattlestylepreference" - """ - pokemon_v2_naturebattlestylepreference( - """distinct select on columns""" - distinct_on: [pokemon_v2_naturebattlestylepreference_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_naturebattlestylepreference_order_by!] - - """filter the rows returned""" - where: pokemon_v2_naturebattlestylepreference_bool_exp - ): [pokemon_v2_naturebattlestylepreference!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_naturebattlestylepreference" - """ - pokemon_v2_naturebattlestylepreference_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_naturebattlestylepreference_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_naturebattlestylepreference_order_by!] - - """filter the rows returned""" - where: pokemon_v2_naturebattlestylepreference_bool_exp - ): pokemon_v2_naturebattlestylepreference_aggregate! - - """ - fetch data from the table: "pokemon_v2_naturebattlestylepreference" using primary key columns - """ - pokemon_v2_naturebattlestylepreference_by_pk(id: Int!): pokemon_v2_naturebattlestylepreference - - """ - fetch data from the table in a streaming manner: "pokemon_v2_naturebattlestylepreference" - """ - pokemon_v2_naturebattlestylepreference_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_naturebattlestylepreference_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_naturebattlestylepreference_bool_exp - ): [pokemon_v2_naturebattlestylepreference!]! - - """ - fetch data from the table: "pokemon_v2_naturename" - """ - pokemon_v2_naturename( - """distinct select on columns""" - distinct_on: [pokemon_v2_naturename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_naturename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_naturename_bool_exp - ): [pokemon_v2_naturename!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_naturename" - """ - pokemon_v2_naturename_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_naturename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_naturename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_naturename_bool_exp - ): pokemon_v2_naturename_aggregate! - - """ - fetch data from the table: "pokemon_v2_naturename" using primary key columns - """ - pokemon_v2_naturename_by_pk(id: Int!): pokemon_v2_naturename - - """ - fetch data from the table in a streaming manner: "pokemon_v2_naturename" - """ - pokemon_v2_naturename_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_naturename_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_naturename_bool_exp - ): [pokemon_v2_naturename!]! - - """ - fetch data from the table: "pokemon_v2_naturepokeathlonstat" - """ - pokemon_v2_naturepokeathlonstat( - """distinct select on columns""" - distinct_on: [pokemon_v2_naturepokeathlonstat_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_naturepokeathlonstat_order_by!] - - """filter the rows returned""" - where: pokemon_v2_naturepokeathlonstat_bool_exp - ): [pokemon_v2_naturepokeathlonstat!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_naturepokeathlonstat" - """ - pokemon_v2_naturepokeathlonstat_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_naturepokeathlonstat_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_naturepokeathlonstat_order_by!] - - """filter the rows returned""" - where: pokemon_v2_naturepokeathlonstat_bool_exp - ): pokemon_v2_naturepokeathlonstat_aggregate! - - """ - fetch data from the table: "pokemon_v2_naturepokeathlonstat" using primary key columns - """ - pokemon_v2_naturepokeathlonstat_by_pk(id: Int!): pokemon_v2_naturepokeathlonstat - - """ - fetch data from the table in a streaming manner: "pokemon_v2_naturepokeathlonstat" - """ - pokemon_v2_naturepokeathlonstat_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_naturepokeathlonstat_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_naturepokeathlonstat_bool_exp - ): [pokemon_v2_naturepokeathlonstat!]! - - """ - fetch data from the table: "pokemon_v2_palpark" - """ - pokemon_v2_palpark( - """distinct select on columns""" - distinct_on: [pokemon_v2_palpark_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_palpark_order_by!] - - """filter the rows returned""" - where: pokemon_v2_palpark_bool_exp - ): [pokemon_v2_palpark!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_palpark" - """ - pokemon_v2_palpark_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_palpark_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_palpark_order_by!] - - """filter the rows returned""" - where: pokemon_v2_palpark_bool_exp - ): pokemon_v2_palpark_aggregate! - - """ - fetch data from the table: "pokemon_v2_palpark" using primary key columns - """ - pokemon_v2_palpark_by_pk(id: Int!): pokemon_v2_palpark - - """ - fetch data from the table in a streaming manner: "pokemon_v2_palpark" - """ - pokemon_v2_palpark_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_palpark_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_palpark_bool_exp - ): [pokemon_v2_palpark!]! - - """ - fetch data from the table: "pokemon_v2_palparkarea" - """ - pokemon_v2_palparkarea( - """distinct select on columns""" - distinct_on: [pokemon_v2_palparkarea_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_palparkarea_order_by!] - - """filter the rows returned""" - where: pokemon_v2_palparkarea_bool_exp - ): [pokemon_v2_palparkarea!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_palparkarea" - """ - pokemon_v2_palparkarea_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_palparkarea_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_palparkarea_order_by!] - - """filter the rows returned""" - where: pokemon_v2_palparkarea_bool_exp - ): pokemon_v2_palparkarea_aggregate! - - """ - fetch data from the table: "pokemon_v2_palparkarea" using primary key columns - """ - pokemon_v2_palparkarea_by_pk(id: Int!): pokemon_v2_palparkarea - - """ - fetch data from the table in a streaming manner: "pokemon_v2_palparkarea" - """ - pokemon_v2_palparkarea_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_palparkarea_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_palparkarea_bool_exp - ): [pokemon_v2_palparkarea!]! - - """ - fetch data from the table: "pokemon_v2_palparkareaname" - """ - pokemon_v2_palparkareaname( - """distinct select on columns""" - distinct_on: [pokemon_v2_palparkareaname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_palparkareaname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_palparkareaname_bool_exp - ): [pokemon_v2_palparkareaname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_palparkareaname" - """ - pokemon_v2_palparkareaname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_palparkareaname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_palparkareaname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_palparkareaname_bool_exp - ): pokemon_v2_palparkareaname_aggregate! - - """ - fetch data from the table: "pokemon_v2_palparkareaname" using primary key columns - """ - pokemon_v2_palparkareaname_by_pk(id: Int!): pokemon_v2_palparkareaname - - """ - fetch data from the table in a streaming manner: "pokemon_v2_palparkareaname" - """ - pokemon_v2_palparkareaname_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_palparkareaname_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_palparkareaname_bool_exp - ): [pokemon_v2_palparkareaname!]! - - """ - fetch data from the table: "pokemon_v2_pokeathlonstat" - """ - pokemon_v2_pokeathlonstat( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokeathlonstat_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokeathlonstat_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokeathlonstat_bool_exp - ): [pokemon_v2_pokeathlonstat!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokeathlonstat" - """ - pokemon_v2_pokeathlonstat_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokeathlonstat_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokeathlonstat_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokeathlonstat_bool_exp - ): pokemon_v2_pokeathlonstat_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokeathlonstat" using primary key columns - """ - pokemon_v2_pokeathlonstat_by_pk(id: Int!): pokemon_v2_pokeathlonstat - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokeathlonstat" - """ - pokemon_v2_pokeathlonstat_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokeathlonstat_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokeathlonstat_bool_exp - ): [pokemon_v2_pokeathlonstat!]! - - """ - fetch data from the table: "pokemon_v2_pokeathlonstatname" - """ - pokemon_v2_pokeathlonstatname( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokeathlonstatname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokeathlonstatname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokeathlonstatname_bool_exp - ): [pokemon_v2_pokeathlonstatname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokeathlonstatname" - """ - pokemon_v2_pokeathlonstatname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokeathlonstatname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokeathlonstatname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokeathlonstatname_bool_exp - ): pokemon_v2_pokeathlonstatname_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokeathlonstatname" using primary key columns - """ - pokemon_v2_pokeathlonstatname_by_pk(id: Int!): pokemon_v2_pokeathlonstatname - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokeathlonstatname" - """ - pokemon_v2_pokeathlonstatname_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokeathlonstatname_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokeathlonstatname_bool_exp - ): [pokemon_v2_pokeathlonstatname!]! - - """ - fetch data from the table: "pokemon_v2_pokedex" - """ - pokemon_v2_pokedex( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokedex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokedex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokedex_bool_exp - ): [pokemon_v2_pokedex!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokedex" - """ - pokemon_v2_pokedex_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokedex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokedex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokedex_bool_exp - ): pokemon_v2_pokedex_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokedex" using primary key columns - """ - pokemon_v2_pokedex_by_pk(id: Int!): pokemon_v2_pokedex - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokedex" - """ - pokemon_v2_pokedex_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokedex_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokedex_bool_exp - ): [pokemon_v2_pokedex!]! - - """ - fetch data from the table: "pokemon_v2_pokedexdescription" - """ - pokemon_v2_pokedexdescription( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokedexdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokedexdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokedexdescription_bool_exp - ): [pokemon_v2_pokedexdescription!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokedexdescription" - """ - pokemon_v2_pokedexdescription_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokedexdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokedexdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokedexdescription_bool_exp - ): pokemon_v2_pokedexdescription_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokedexdescription" using primary key columns - """ - pokemon_v2_pokedexdescription_by_pk(id: Int!): pokemon_v2_pokedexdescription - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokedexdescription" - """ - pokemon_v2_pokedexdescription_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokedexdescription_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokedexdescription_bool_exp - ): [pokemon_v2_pokedexdescription!]! - - """ - fetch data from the table: "pokemon_v2_pokedexname" - """ - pokemon_v2_pokedexname( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokedexname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokedexname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokedexname_bool_exp - ): [pokemon_v2_pokedexname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokedexname" - """ - pokemon_v2_pokedexname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokedexname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokedexname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokedexname_bool_exp - ): pokemon_v2_pokedexname_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokedexname" using primary key columns - """ - pokemon_v2_pokedexname_by_pk(id: Int!): pokemon_v2_pokedexname - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokedexname" - """ - pokemon_v2_pokedexname_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokedexname_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokedexname_bool_exp - ): [pokemon_v2_pokedexname!]! - - """ - fetch data from the table: "pokemon_v2_pokedexversiongroup" - """ - pokemon_v2_pokedexversiongroup( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokedexversiongroup_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokedexversiongroup_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokedexversiongroup_bool_exp - ): [pokemon_v2_pokedexversiongroup!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokedexversiongroup" - """ - pokemon_v2_pokedexversiongroup_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokedexversiongroup_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokedexversiongroup_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokedexversiongroup_bool_exp - ): pokemon_v2_pokedexversiongroup_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokedexversiongroup" using primary key columns - """ - pokemon_v2_pokedexversiongroup_by_pk(id: Int!): pokemon_v2_pokedexversiongroup - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokedexversiongroup" - """ - pokemon_v2_pokedexversiongroup_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokedexversiongroup_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokedexversiongroup_bool_exp - ): [pokemon_v2_pokedexversiongroup!]! - - """ - fetch data from the table: "pokemon_v2_pokemon" - """ - pokemon_v2_pokemon( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemon_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemon_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemon_bool_exp - ): [pokemon_v2_pokemon!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemon" - """ - pokemon_v2_pokemon_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemon_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemon_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemon_bool_exp - ): pokemon_v2_pokemon_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemon" using primary key columns - """ - pokemon_v2_pokemon_by_pk(id: Int!): pokemon_v2_pokemon - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokemon" - """ - pokemon_v2_pokemon_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokemon_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokemon_bool_exp - ): [pokemon_v2_pokemon!]! - - """ - fetch data from the table: "pokemon_v2_pokemonability" - """ - pokemon_v2_pokemonability( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonability_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonability_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonability_bool_exp - ): [pokemon_v2_pokemonability!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonability" - """ - pokemon_v2_pokemonability_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonability_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonability_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonability_bool_exp - ): pokemon_v2_pokemonability_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonability" using primary key columns - """ - pokemon_v2_pokemonability_by_pk(id: Int!): pokemon_v2_pokemonability - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokemonability" - """ - pokemon_v2_pokemonability_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokemonability_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokemonability_bool_exp - ): [pokemon_v2_pokemonability!]! - - """ - fetch data from the table: "pokemon_v2_pokemonabilitypast" - """ - pokemon_v2_pokemonabilitypast( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonabilitypast_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonabilitypast_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonabilitypast_bool_exp - ): [pokemon_v2_pokemonabilitypast!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonabilitypast" - """ - pokemon_v2_pokemonabilitypast_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonabilitypast_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonabilitypast_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonabilitypast_bool_exp - ): pokemon_v2_pokemonabilitypast_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonabilitypast" using primary key columns - """ - pokemon_v2_pokemonabilitypast_by_pk(id: Int!): pokemon_v2_pokemonabilitypast - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokemonabilitypast" - """ - pokemon_v2_pokemonabilitypast_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokemonabilitypast_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokemonabilitypast_bool_exp - ): [pokemon_v2_pokemonabilitypast!]! - - """ - fetch data from the table: "pokemon_v2_pokemoncolor" - """ - pokemon_v2_pokemoncolor( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemoncolor_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemoncolor_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemoncolor_bool_exp - ): [pokemon_v2_pokemoncolor!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemoncolor" - """ - pokemon_v2_pokemoncolor_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemoncolor_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemoncolor_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemoncolor_bool_exp - ): pokemon_v2_pokemoncolor_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemoncolor" using primary key columns - """ - pokemon_v2_pokemoncolor_by_pk(id: Int!): pokemon_v2_pokemoncolor - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokemoncolor" - """ - pokemon_v2_pokemoncolor_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokemoncolor_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokemoncolor_bool_exp - ): [pokemon_v2_pokemoncolor!]! - - """ - fetch data from the table: "pokemon_v2_pokemoncolorname" - """ - pokemon_v2_pokemoncolorname( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemoncolorname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemoncolorname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemoncolorname_bool_exp - ): [pokemon_v2_pokemoncolorname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemoncolorname" - """ - pokemon_v2_pokemoncolorname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemoncolorname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemoncolorname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemoncolorname_bool_exp - ): pokemon_v2_pokemoncolorname_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemoncolorname" using primary key columns - """ - pokemon_v2_pokemoncolorname_by_pk(id: Int!): pokemon_v2_pokemoncolorname - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokemoncolorname" - """ - pokemon_v2_pokemoncolorname_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokemoncolorname_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokemoncolorname_bool_exp - ): [pokemon_v2_pokemoncolorname!]! - - """An array relationship""" - pokemon_v2_pokemoncries( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemoncries_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemoncries_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemoncries_bool_exp - ): [pokemon_v2_pokemoncries!]! - - """An aggregate relationship""" - pokemon_v2_pokemoncries_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemoncries_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemoncries_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemoncries_bool_exp - ): pokemon_v2_pokemoncries_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemoncries" using primary key columns - """ - pokemon_v2_pokemoncries_by_pk(id: Int!): pokemon_v2_pokemoncries - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokemoncries" - """ - pokemon_v2_pokemoncries_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokemoncries_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokemoncries_bool_exp - ): [pokemon_v2_pokemoncries!]! - - """ - fetch data from the table: "pokemon_v2_pokemondexnumber" - """ - pokemon_v2_pokemondexnumber( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemondexnumber_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemondexnumber_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemondexnumber_bool_exp - ): [pokemon_v2_pokemondexnumber!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemondexnumber" - """ - pokemon_v2_pokemondexnumber_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemondexnumber_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemondexnumber_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemondexnumber_bool_exp - ): pokemon_v2_pokemondexnumber_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemondexnumber" using primary key columns - """ - pokemon_v2_pokemondexnumber_by_pk(id: Int!): pokemon_v2_pokemondexnumber - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokemondexnumber" - """ - pokemon_v2_pokemondexnumber_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokemondexnumber_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokemondexnumber_bool_exp - ): [pokemon_v2_pokemondexnumber!]! - - """ - fetch data from the table: "pokemon_v2_pokemonegggroup" - """ - pokemon_v2_pokemonegggroup( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonegggroup_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonegggroup_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonegggroup_bool_exp - ): [pokemon_v2_pokemonegggroup!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonegggroup" - """ - pokemon_v2_pokemonegggroup_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonegggroup_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonegggroup_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonegggroup_bool_exp - ): pokemon_v2_pokemonegggroup_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonegggroup" using primary key columns - """ - pokemon_v2_pokemonegggroup_by_pk(id: Int!): pokemon_v2_pokemonegggroup - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokemonegggroup" - """ - pokemon_v2_pokemonegggroup_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokemonegggroup_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokemonegggroup_bool_exp - ): [pokemon_v2_pokemonegggroup!]! - - """ - fetch data from the table: "pokemon_v2_pokemonevolution" - """ - pokemon_v2_pokemonevolution( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonevolution_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonevolution_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonevolution_bool_exp - ): [pokemon_v2_pokemonevolution!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonevolution" - """ - pokemon_v2_pokemonevolution_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonevolution_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonevolution_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonevolution_bool_exp - ): pokemon_v2_pokemonevolution_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonevolution" using primary key columns - """ - pokemon_v2_pokemonevolution_by_pk(id: Int!): pokemon_v2_pokemonevolution - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokemonevolution" - """ - pokemon_v2_pokemonevolution_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokemonevolution_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokemonevolution_bool_exp - ): [pokemon_v2_pokemonevolution!]! - - """ - fetch data from the table: "pokemon_v2_pokemonform" - """ - pokemon_v2_pokemonform( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonform_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonform_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonform_bool_exp - ): [pokemon_v2_pokemonform!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonform" - """ - pokemon_v2_pokemonform_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonform_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonform_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonform_bool_exp - ): pokemon_v2_pokemonform_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonform" using primary key columns - """ - pokemon_v2_pokemonform_by_pk(id: Int!): pokemon_v2_pokemonform - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokemonform" - """ - pokemon_v2_pokemonform_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokemonform_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokemonform_bool_exp - ): [pokemon_v2_pokemonform!]! - - """ - fetch data from the table: "pokemon_v2_pokemonformgeneration" - """ - pokemon_v2_pokemonformgeneration( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonformgeneration_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonformgeneration_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonformgeneration_bool_exp - ): [pokemon_v2_pokemonformgeneration!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonformgeneration" - """ - pokemon_v2_pokemonformgeneration_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonformgeneration_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonformgeneration_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonformgeneration_bool_exp - ): pokemon_v2_pokemonformgeneration_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonformgeneration" using primary key columns - """ - pokemon_v2_pokemonformgeneration_by_pk(id: Int!): pokemon_v2_pokemonformgeneration - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokemonformgeneration" - """ - pokemon_v2_pokemonformgeneration_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokemonformgeneration_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokemonformgeneration_bool_exp - ): [pokemon_v2_pokemonformgeneration!]! - - """ - fetch data from the table: "pokemon_v2_pokemonformname" - """ - pokemon_v2_pokemonformname( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonformname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonformname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonformname_bool_exp - ): [pokemon_v2_pokemonformname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonformname" - """ - pokemon_v2_pokemonformname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonformname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonformname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonformname_bool_exp - ): pokemon_v2_pokemonformname_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonformname" using primary key columns - """ - pokemon_v2_pokemonformname_by_pk(id: Int!): pokemon_v2_pokemonformname - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokemonformname" - """ - pokemon_v2_pokemonformname_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokemonformname_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokemonformname_bool_exp - ): [pokemon_v2_pokemonformname!]! - - """An array relationship""" - pokemon_v2_pokemonformsprites( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonformsprites_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonformsprites_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonformsprites_bool_exp - ): [pokemon_v2_pokemonformsprites!]! - - """An aggregate relationship""" - pokemon_v2_pokemonformsprites_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonformsprites_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonformsprites_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonformsprites_bool_exp - ): pokemon_v2_pokemonformsprites_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonformsprites" using primary key columns - """ - pokemon_v2_pokemonformsprites_by_pk(id: Int!): pokemon_v2_pokemonformsprites - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokemonformsprites" - """ - pokemon_v2_pokemonformsprites_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokemonformsprites_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokemonformsprites_bool_exp - ): [pokemon_v2_pokemonformsprites!]! - - """ - fetch data from the table: "pokemon_v2_pokemonformtype" - """ - pokemon_v2_pokemonformtype( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonformtype_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonformtype_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonformtype_bool_exp - ): [pokemon_v2_pokemonformtype!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonformtype" - """ - pokemon_v2_pokemonformtype_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonformtype_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonformtype_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonformtype_bool_exp - ): pokemon_v2_pokemonformtype_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonformtype" using primary key columns - """ - pokemon_v2_pokemonformtype_by_pk(id: Int!): pokemon_v2_pokemonformtype - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokemonformtype" - """ - pokemon_v2_pokemonformtype_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokemonformtype_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokemonformtype_bool_exp - ): [pokemon_v2_pokemonformtype!]! - - """ - fetch data from the table: "pokemon_v2_pokemongameindex" - """ - pokemon_v2_pokemongameindex( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemongameindex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemongameindex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemongameindex_bool_exp - ): [pokemon_v2_pokemongameindex!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemongameindex" - """ - pokemon_v2_pokemongameindex_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemongameindex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemongameindex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemongameindex_bool_exp - ): pokemon_v2_pokemongameindex_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemongameindex" using primary key columns - """ - pokemon_v2_pokemongameindex_by_pk(id: Int!): pokemon_v2_pokemongameindex - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokemongameindex" - """ - pokemon_v2_pokemongameindex_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokemongameindex_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokemongameindex_bool_exp - ): [pokemon_v2_pokemongameindex!]! - - """ - fetch data from the table: "pokemon_v2_pokemonhabitat" - """ - pokemon_v2_pokemonhabitat( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonhabitat_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonhabitat_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonhabitat_bool_exp - ): [pokemon_v2_pokemonhabitat!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonhabitat" - """ - pokemon_v2_pokemonhabitat_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonhabitat_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonhabitat_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonhabitat_bool_exp - ): pokemon_v2_pokemonhabitat_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonhabitat" using primary key columns - """ - pokemon_v2_pokemonhabitat_by_pk(id: Int!): pokemon_v2_pokemonhabitat - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokemonhabitat" - """ - pokemon_v2_pokemonhabitat_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokemonhabitat_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokemonhabitat_bool_exp - ): [pokemon_v2_pokemonhabitat!]! - - """ - fetch data from the table: "pokemon_v2_pokemonhabitatname" - """ - pokemon_v2_pokemonhabitatname( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonhabitatname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonhabitatname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonhabitatname_bool_exp - ): [pokemon_v2_pokemonhabitatname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonhabitatname" - """ - pokemon_v2_pokemonhabitatname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonhabitatname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonhabitatname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonhabitatname_bool_exp - ): pokemon_v2_pokemonhabitatname_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonhabitatname" using primary key columns - """ - pokemon_v2_pokemonhabitatname_by_pk(id: Int!): pokemon_v2_pokemonhabitatname - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokemonhabitatname" - """ - pokemon_v2_pokemonhabitatname_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokemonhabitatname_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokemonhabitatname_bool_exp - ): [pokemon_v2_pokemonhabitatname!]! - - """ - fetch data from the table: "pokemon_v2_pokemonitem" - """ - pokemon_v2_pokemonitem( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonitem_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonitem_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonitem_bool_exp - ): [pokemon_v2_pokemonitem!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonitem" - """ - pokemon_v2_pokemonitem_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonitem_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonitem_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonitem_bool_exp - ): pokemon_v2_pokemonitem_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonitem" using primary key columns - """ - pokemon_v2_pokemonitem_by_pk(id: Int!): pokemon_v2_pokemonitem - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokemonitem" - """ - pokemon_v2_pokemonitem_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokemonitem_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokemonitem_bool_exp - ): [pokemon_v2_pokemonitem!]! - - """ - fetch data from the table: "pokemon_v2_pokemonmove" - """ - pokemon_v2_pokemonmove( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonmove_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonmove_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonmove_bool_exp - ): [pokemon_v2_pokemonmove!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonmove" - """ - pokemon_v2_pokemonmove_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonmove_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonmove_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonmove_bool_exp - ): pokemon_v2_pokemonmove_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonmove" using primary key columns - """ - pokemon_v2_pokemonmove_by_pk(id: Int!): pokemon_v2_pokemonmove - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokemonmove" - """ - pokemon_v2_pokemonmove_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokemonmove_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokemonmove_bool_exp - ): [pokemon_v2_pokemonmove!]! - - """ - fetch data from the table: "pokemon_v2_pokemonshape" - """ - pokemon_v2_pokemonshape( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonshape_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonshape_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonshape_bool_exp - ): [pokemon_v2_pokemonshape!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonshape" - """ - pokemon_v2_pokemonshape_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonshape_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonshape_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonshape_bool_exp - ): pokemon_v2_pokemonshape_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonshape" using primary key columns - """ - pokemon_v2_pokemonshape_by_pk(id: Int!): pokemon_v2_pokemonshape - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokemonshape" - """ - pokemon_v2_pokemonshape_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokemonshape_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokemonshape_bool_exp - ): [pokemon_v2_pokemonshape!]! - - """ - fetch data from the table: "pokemon_v2_pokemonshapename" - """ - pokemon_v2_pokemonshapename( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonshapename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonshapename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonshapename_bool_exp - ): [pokemon_v2_pokemonshapename!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonshapename" - """ - pokemon_v2_pokemonshapename_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonshapename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonshapename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonshapename_bool_exp - ): pokemon_v2_pokemonshapename_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonshapename" using primary key columns - """ - pokemon_v2_pokemonshapename_by_pk(id: Int!): pokemon_v2_pokemonshapename - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokemonshapename" - """ - pokemon_v2_pokemonshapename_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokemonshapename_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokemonshapename_bool_exp - ): [pokemon_v2_pokemonshapename!]! - - """An array relationship""" - pokemon_v2_pokemonspecies( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspecies_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspecies_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspecies_bool_exp - ): [pokemon_v2_pokemonspecies!]! - - """An aggregate relationship""" - pokemon_v2_pokemonspecies_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspecies_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspecies_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspecies_bool_exp - ): pokemon_v2_pokemonspecies_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonspecies" using primary key columns - """ - pokemon_v2_pokemonspecies_by_pk(id: Int!): pokemon_v2_pokemonspecies - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokemonspecies" - """ - pokemon_v2_pokemonspecies_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokemonspecies_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokemonspecies_bool_exp - ): [pokemon_v2_pokemonspecies!]! - - """ - fetch data from the table: "pokemon_v2_pokemonspeciesdescription" - """ - pokemon_v2_pokemonspeciesdescription( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspeciesdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspeciesdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspeciesdescription_bool_exp - ): [pokemon_v2_pokemonspeciesdescription!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonspeciesdescription" - """ - pokemon_v2_pokemonspeciesdescription_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspeciesdescription_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspeciesdescription_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspeciesdescription_bool_exp - ): pokemon_v2_pokemonspeciesdescription_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonspeciesdescription" using primary key columns - """ - pokemon_v2_pokemonspeciesdescription_by_pk(id: Int!): pokemon_v2_pokemonspeciesdescription - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokemonspeciesdescription" - """ - pokemon_v2_pokemonspeciesdescription_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokemonspeciesdescription_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokemonspeciesdescription_bool_exp - ): [pokemon_v2_pokemonspeciesdescription!]! - - """ - fetch data from the table: "pokemon_v2_pokemonspeciesflavortext" - """ - pokemon_v2_pokemonspeciesflavortext( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspeciesflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspeciesflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspeciesflavortext_bool_exp - ): [pokemon_v2_pokemonspeciesflavortext!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonspeciesflavortext" - """ - pokemon_v2_pokemonspeciesflavortext_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspeciesflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspeciesflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspeciesflavortext_bool_exp - ): pokemon_v2_pokemonspeciesflavortext_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonspeciesflavortext" using primary key columns - """ - pokemon_v2_pokemonspeciesflavortext_by_pk(id: Int!): pokemon_v2_pokemonspeciesflavortext - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokemonspeciesflavortext" - """ - pokemon_v2_pokemonspeciesflavortext_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokemonspeciesflavortext_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokemonspeciesflavortext_bool_exp - ): [pokemon_v2_pokemonspeciesflavortext!]! - - """ - fetch data from the table: "pokemon_v2_pokemonspeciesname" - """ - pokemon_v2_pokemonspeciesname( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspeciesname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspeciesname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspeciesname_bool_exp - ): [pokemon_v2_pokemonspeciesname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonspeciesname" - """ - pokemon_v2_pokemonspeciesname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonspeciesname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonspeciesname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonspeciesname_bool_exp - ): pokemon_v2_pokemonspeciesname_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonspeciesname" using primary key columns - """ - pokemon_v2_pokemonspeciesname_by_pk(id: Int!): pokemon_v2_pokemonspeciesname - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokemonspeciesname" - """ - pokemon_v2_pokemonspeciesname_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokemonspeciesname_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokemonspeciesname_bool_exp - ): [pokemon_v2_pokemonspeciesname!]! - - """An array relationship""" - pokemon_v2_pokemonsprites( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonsprites_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonsprites_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonsprites_bool_exp - ): [pokemon_v2_pokemonsprites!]! - - """An aggregate relationship""" - pokemon_v2_pokemonsprites_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonsprites_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonsprites_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonsprites_bool_exp - ): pokemon_v2_pokemonsprites_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonsprites" using primary key columns - """ - pokemon_v2_pokemonsprites_by_pk(id: Int!): pokemon_v2_pokemonsprites - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokemonsprites" - """ - pokemon_v2_pokemonsprites_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokemonsprites_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokemonsprites_bool_exp - ): [pokemon_v2_pokemonsprites!]! - - """ - fetch data from the table: "pokemon_v2_pokemonstat" - """ - pokemon_v2_pokemonstat( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonstat_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonstat_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonstat_bool_exp - ): [pokemon_v2_pokemonstat!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemonstat" - """ - pokemon_v2_pokemonstat_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemonstat_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemonstat_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemonstat_bool_exp - ): pokemon_v2_pokemonstat_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemonstat" using primary key columns - """ - pokemon_v2_pokemonstat_by_pk(id: Int!): pokemon_v2_pokemonstat - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokemonstat" - """ - pokemon_v2_pokemonstat_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokemonstat_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokemonstat_bool_exp - ): [pokemon_v2_pokemonstat!]! - - """ - fetch data from the table: "pokemon_v2_pokemontype" - """ - pokemon_v2_pokemontype( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemontype_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemontype_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemontype_bool_exp - ): [pokemon_v2_pokemontype!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemontype" - """ - pokemon_v2_pokemontype_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemontype_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemontype_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemontype_bool_exp - ): pokemon_v2_pokemontype_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemontype" using primary key columns - """ - pokemon_v2_pokemontype_by_pk(id: Int!): pokemon_v2_pokemontype - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokemontype" - """ - pokemon_v2_pokemontype_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokemontype_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokemontype_bool_exp - ): [pokemon_v2_pokemontype!]! - - """ - fetch data from the table: "pokemon_v2_pokemontypepast" - """ - pokemon_v2_pokemontypepast( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemontypepast_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemontypepast_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemontypepast_bool_exp - ): [pokemon_v2_pokemontypepast!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_pokemontypepast" - """ - pokemon_v2_pokemontypepast_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_pokemontypepast_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_pokemontypepast_order_by!] - - """filter the rows returned""" - where: pokemon_v2_pokemontypepast_bool_exp - ): pokemon_v2_pokemontypepast_aggregate! - - """ - fetch data from the table: "pokemon_v2_pokemontypepast" using primary key columns - """ - pokemon_v2_pokemontypepast_by_pk(id: Int!): pokemon_v2_pokemontypepast - - """ - fetch data from the table in a streaming manner: "pokemon_v2_pokemontypepast" - """ - pokemon_v2_pokemontypepast_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_pokemontypepast_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_pokemontypepast_bool_exp - ): [pokemon_v2_pokemontypepast!]! - - """ - fetch data from the table: "pokemon_v2_region" - """ - pokemon_v2_region( - """distinct select on columns""" - distinct_on: [pokemon_v2_region_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_region_order_by!] - - """filter the rows returned""" - where: pokemon_v2_region_bool_exp - ): [pokemon_v2_region!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_region" - """ - pokemon_v2_region_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_region_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_region_order_by!] - - """filter the rows returned""" - where: pokemon_v2_region_bool_exp - ): pokemon_v2_region_aggregate! - - """ - fetch data from the table: "pokemon_v2_region" using primary key columns - """ - pokemon_v2_region_by_pk(id: Int!): pokemon_v2_region - - """ - fetch data from the table in a streaming manner: "pokemon_v2_region" - """ - pokemon_v2_region_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_region_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_region_bool_exp - ): [pokemon_v2_region!]! - - """ - fetch data from the table: "pokemon_v2_regionname" - """ - pokemon_v2_regionname( - """distinct select on columns""" - distinct_on: [pokemon_v2_regionname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_regionname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_regionname_bool_exp - ): [pokemon_v2_regionname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_regionname" - """ - pokemon_v2_regionname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_regionname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_regionname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_regionname_bool_exp - ): pokemon_v2_regionname_aggregate! - - """ - fetch data from the table: "pokemon_v2_regionname" using primary key columns - """ - pokemon_v2_regionname_by_pk(id: Int!): pokemon_v2_regionname - - """ - fetch data from the table in a streaming manner: "pokemon_v2_regionname" - """ - pokemon_v2_regionname_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_regionname_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_regionname_bool_exp - ): [pokemon_v2_regionname!]! - - """ - fetch data from the table: "pokemon_v2_stat" - """ - pokemon_v2_stat( - """distinct select on columns""" - distinct_on: [pokemon_v2_stat_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_stat_order_by!] - - """filter the rows returned""" - where: pokemon_v2_stat_bool_exp - ): [pokemon_v2_stat!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_stat" - """ - pokemon_v2_stat_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_stat_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_stat_order_by!] - - """filter the rows returned""" - where: pokemon_v2_stat_bool_exp - ): pokemon_v2_stat_aggregate! - - """fetch data from the table: "pokemon_v2_stat" using primary key columns""" - pokemon_v2_stat_by_pk(id: Int!): pokemon_v2_stat - - """ - fetch data from the table in a streaming manner: "pokemon_v2_stat" - """ - pokemon_v2_stat_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_stat_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_stat_bool_exp - ): [pokemon_v2_stat!]! - - """ - fetch data from the table: "pokemon_v2_statname" - """ - pokemon_v2_statname( - """distinct select on columns""" - distinct_on: [pokemon_v2_statname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_statname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_statname_bool_exp - ): [pokemon_v2_statname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_statname" - """ - pokemon_v2_statname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_statname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_statname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_statname_bool_exp - ): pokemon_v2_statname_aggregate! - - """ - fetch data from the table: "pokemon_v2_statname" using primary key columns - """ - pokemon_v2_statname_by_pk(id: Int!): pokemon_v2_statname - - """ - fetch data from the table in a streaming manner: "pokemon_v2_statname" - """ - pokemon_v2_statname_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_statname_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_statname_bool_exp - ): [pokemon_v2_statname!]! - - """ - fetch data from the table: "pokemon_v2_supercontestcombo" - """ - pokemon_v2_supercontestcombo( - """distinct select on columns""" - distinct_on: [pokemon_v2_supercontestcombo_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_supercontestcombo_order_by!] - - """filter the rows returned""" - where: pokemon_v2_supercontestcombo_bool_exp - ): [pokemon_v2_supercontestcombo!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_supercontestcombo" - """ - pokemon_v2_supercontestcombo_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_supercontestcombo_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_supercontestcombo_order_by!] - - """filter the rows returned""" - where: pokemon_v2_supercontestcombo_bool_exp - ): pokemon_v2_supercontestcombo_aggregate! - - """ - fetch data from the table: "pokemon_v2_supercontestcombo" using primary key columns - """ - pokemon_v2_supercontestcombo_by_pk(id: Int!): pokemon_v2_supercontestcombo - - """ - fetch data from the table in a streaming manner: "pokemon_v2_supercontestcombo" - """ - pokemon_v2_supercontestcombo_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_supercontestcombo_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_supercontestcombo_bool_exp - ): [pokemon_v2_supercontestcombo!]! - - """ - fetch data from the table: "pokemon_v2_supercontesteffect" - """ - pokemon_v2_supercontesteffect( - """distinct select on columns""" - distinct_on: [pokemon_v2_supercontesteffect_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_supercontesteffect_order_by!] - - """filter the rows returned""" - where: pokemon_v2_supercontesteffect_bool_exp - ): [pokemon_v2_supercontesteffect!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_supercontesteffect" - """ - pokemon_v2_supercontesteffect_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_supercontesteffect_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_supercontesteffect_order_by!] - - """filter the rows returned""" - where: pokemon_v2_supercontesteffect_bool_exp - ): pokemon_v2_supercontesteffect_aggregate! - - """ - fetch data from the table: "pokemon_v2_supercontesteffect" using primary key columns - """ - pokemon_v2_supercontesteffect_by_pk(id: Int!): pokemon_v2_supercontesteffect - - """ - fetch data from the table in a streaming manner: "pokemon_v2_supercontesteffect" - """ - pokemon_v2_supercontesteffect_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_supercontesteffect_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_supercontesteffect_bool_exp - ): [pokemon_v2_supercontesteffect!]! - - """ - fetch data from the table: "pokemon_v2_supercontesteffectflavortext" - """ - pokemon_v2_supercontesteffectflavortext( - """distinct select on columns""" - distinct_on: [pokemon_v2_supercontesteffectflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_supercontesteffectflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_supercontesteffectflavortext_bool_exp - ): [pokemon_v2_supercontesteffectflavortext!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_supercontesteffectflavortext" - """ - pokemon_v2_supercontesteffectflavortext_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_supercontesteffectflavortext_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_supercontesteffectflavortext_order_by!] - - """filter the rows returned""" - where: pokemon_v2_supercontesteffectflavortext_bool_exp - ): pokemon_v2_supercontesteffectflavortext_aggregate! - - """ - fetch data from the table: "pokemon_v2_supercontesteffectflavortext" using primary key columns - """ - pokemon_v2_supercontesteffectflavortext_by_pk(id: Int!): pokemon_v2_supercontesteffectflavortext - - """ - fetch data from the table in a streaming manner: "pokemon_v2_supercontesteffectflavortext" - """ - pokemon_v2_supercontesteffectflavortext_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_supercontesteffectflavortext_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_supercontesteffectflavortext_bool_exp - ): [pokemon_v2_supercontesteffectflavortext!]! - - """ - fetch data from the table: "pokemon_v2_type" - """ - pokemon_v2_type( - """distinct select on columns""" - distinct_on: [pokemon_v2_type_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_type_order_by!] - - """filter the rows returned""" - where: pokemon_v2_type_bool_exp - ): [pokemon_v2_type!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_type" - """ - pokemon_v2_type_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_type_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_type_order_by!] - - """filter the rows returned""" - where: pokemon_v2_type_bool_exp - ): pokemon_v2_type_aggregate! - - """fetch data from the table: "pokemon_v2_type" using primary key columns""" - pokemon_v2_type_by_pk(id: Int!): pokemon_v2_type - - """ - fetch data from the table in a streaming manner: "pokemon_v2_type" - """ - pokemon_v2_type_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_type_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_type_bool_exp - ): [pokemon_v2_type!]! - - """ - fetch data from the table: "pokemon_v2_typeefficacy" - """ - pokemon_v2_typeefficacy( - """distinct select on columns""" - distinct_on: [pokemon_v2_typeefficacy_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_typeefficacy_order_by!] - - """filter the rows returned""" - where: pokemon_v2_typeefficacy_bool_exp - ): [pokemon_v2_typeefficacy!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_typeefficacy" - """ - pokemon_v2_typeefficacy_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_typeefficacy_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_typeefficacy_order_by!] - - """filter the rows returned""" - where: pokemon_v2_typeefficacy_bool_exp - ): pokemon_v2_typeefficacy_aggregate! - - """ - fetch data from the table: "pokemon_v2_typeefficacy" using primary key columns - """ - pokemon_v2_typeefficacy_by_pk(id: Int!): pokemon_v2_typeefficacy - - """ - fetch data from the table in a streaming manner: "pokemon_v2_typeefficacy" - """ - pokemon_v2_typeefficacy_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_typeefficacy_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_typeefficacy_bool_exp - ): [pokemon_v2_typeefficacy!]! - - """ - fetch data from the table: "pokemon_v2_typeefficacypast" - """ - pokemon_v2_typeefficacypast( - """distinct select on columns""" - distinct_on: [pokemon_v2_typeefficacypast_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_typeefficacypast_order_by!] - - """filter the rows returned""" - where: pokemon_v2_typeefficacypast_bool_exp - ): [pokemon_v2_typeefficacypast!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_typeefficacypast" - """ - pokemon_v2_typeefficacypast_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_typeefficacypast_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_typeefficacypast_order_by!] - - """filter the rows returned""" - where: pokemon_v2_typeefficacypast_bool_exp - ): pokemon_v2_typeefficacypast_aggregate! - - """ - fetch data from the table: "pokemon_v2_typeefficacypast" using primary key columns - """ - pokemon_v2_typeefficacypast_by_pk(id: Int!): pokemon_v2_typeefficacypast - - """ - fetch data from the table in a streaming manner: "pokemon_v2_typeefficacypast" - """ - pokemon_v2_typeefficacypast_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_typeefficacypast_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_typeefficacypast_bool_exp - ): [pokemon_v2_typeefficacypast!]! - - """ - fetch data from the table: "pokemon_v2_typegameindex" - """ - pokemon_v2_typegameindex( - """distinct select on columns""" - distinct_on: [pokemon_v2_typegameindex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_typegameindex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_typegameindex_bool_exp - ): [pokemon_v2_typegameindex!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_typegameindex" - """ - pokemon_v2_typegameindex_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_typegameindex_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_typegameindex_order_by!] - - """filter the rows returned""" - where: pokemon_v2_typegameindex_bool_exp - ): pokemon_v2_typegameindex_aggregate! - - """ - fetch data from the table: "pokemon_v2_typegameindex" using primary key columns - """ - pokemon_v2_typegameindex_by_pk(id: Int!): pokemon_v2_typegameindex - - """ - fetch data from the table in a streaming manner: "pokemon_v2_typegameindex" - """ - pokemon_v2_typegameindex_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_typegameindex_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_typegameindex_bool_exp - ): [pokemon_v2_typegameindex!]! - - """ - fetch data from the table: "pokemon_v2_typename" - """ - pokemon_v2_typename( - """distinct select on columns""" - distinct_on: [pokemon_v2_typename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_typename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_typename_bool_exp - ): [pokemon_v2_typename!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_typename" - """ - pokemon_v2_typename_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_typename_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_typename_order_by!] - - """filter the rows returned""" - where: pokemon_v2_typename_bool_exp - ): pokemon_v2_typename_aggregate! - - """ - fetch data from the table: "pokemon_v2_typename" using primary key columns - """ - pokemon_v2_typename_by_pk(id: Int!): pokemon_v2_typename - - """ - fetch data from the table in a streaming manner: "pokemon_v2_typename" - """ - pokemon_v2_typename_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_typename_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_typename_bool_exp - ): [pokemon_v2_typename!]! - - """ - fetch data from the table: "pokemon_v2_version" - """ - pokemon_v2_version( - """distinct select on columns""" - distinct_on: [pokemon_v2_version_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_version_order_by!] - - """filter the rows returned""" - where: pokemon_v2_version_bool_exp - ): [pokemon_v2_version!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_version" - """ - pokemon_v2_version_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_version_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_version_order_by!] - - """filter the rows returned""" - where: pokemon_v2_version_bool_exp - ): pokemon_v2_version_aggregate! - - """ - fetch data from the table: "pokemon_v2_version" using primary key columns - """ - pokemon_v2_version_by_pk(id: Int!): pokemon_v2_version - - """ - fetch data from the table in a streaming manner: "pokemon_v2_version" - """ - pokemon_v2_version_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_version_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_version_bool_exp - ): [pokemon_v2_version!]! - - """ - fetch data from the table: "pokemon_v2_versiongroup" - """ - pokemon_v2_versiongroup( - """distinct select on columns""" - distinct_on: [pokemon_v2_versiongroup_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_versiongroup_order_by!] - - """filter the rows returned""" - where: pokemon_v2_versiongroup_bool_exp - ): [pokemon_v2_versiongroup!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_versiongroup" - """ - pokemon_v2_versiongroup_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_versiongroup_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_versiongroup_order_by!] - - """filter the rows returned""" - where: pokemon_v2_versiongroup_bool_exp - ): pokemon_v2_versiongroup_aggregate! - - """ - fetch data from the table: "pokemon_v2_versiongroup" using primary key columns - """ - pokemon_v2_versiongroup_by_pk(id: Int!): pokemon_v2_versiongroup - - """ - fetch data from the table in a streaming manner: "pokemon_v2_versiongroup" - """ - pokemon_v2_versiongroup_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_versiongroup_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_versiongroup_bool_exp - ): [pokemon_v2_versiongroup!]! - - """ - fetch data from the table: "pokemon_v2_versiongroupmovelearnmethod" - """ - pokemon_v2_versiongroupmovelearnmethod( - """distinct select on columns""" - distinct_on: [pokemon_v2_versiongroupmovelearnmethod_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_versiongroupmovelearnmethod_order_by!] - - """filter the rows returned""" - where: pokemon_v2_versiongroupmovelearnmethod_bool_exp - ): [pokemon_v2_versiongroupmovelearnmethod!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_versiongroupmovelearnmethod" - """ - pokemon_v2_versiongroupmovelearnmethod_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_versiongroupmovelearnmethod_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_versiongroupmovelearnmethod_order_by!] - - """filter the rows returned""" - where: pokemon_v2_versiongroupmovelearnmethod_bool_exp - ): pokemon_v2_versiongroupmovelearnmethod_aggregate! - - """ - fetch data from the table: "pokemon_v2_versiongroupmovelearnmethod" using primary key columns - """ - pokemon_v2_versiongroupmovelearnmethod_by_pk(id: Int!): pokemon_v2_versiongroupmovelearnmethod - - """ - fetch data from the table in a streaming manner: "pokemon_v2_versiongroupmovelearnmethod" - """ - pokemon_v2_versiongroupmovelearnmethod_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_versiongroupmovelearnmethod_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_versiongroupmovelearnmethod_bool_exp - ): [pokemon_v2_versiongroupmovelearnmethod!]! - - """ - fetch data from the table: "pokemon_v2_versiongroupregion" - """ - pokemon_v2_versiongroupregion( - """distinct select on columns""" - distinct_on: [pokemon_v2_versiongroupregion_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_versiongroupregion_order_by!] - - """filter the rows returned""" - where: pokemon_v2_versiongroupregion_bool_exp - ): [pokemon_v2_versiongroupregion!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_versiongroupregion" - """ - pokemon_v2_versiongroupregion_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_versiongroupregion_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_versiongroupregion_order_by!] - - """filter the rows returned""" - where: pokemon_v2_versiongroupregion_bool_exp - ): pokemon_v2_versiongroupregion_aggregate! - - """ - fetch data from the table: "pokemon_v2_versiongroupregion" using primary key columns - """ - pokemon_v2_versiongroupregion_by_pk(id: Int!): pokemon_v2_versiongroupregion - - """ - fetch data from the table in a streaming manner: "pokemon_v2_versiongroupregion" - """ - pokemon_v2_versiongroupregion_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_versiongroupregion_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_versiongroupregion_bool_exp - ): [pokemon_v2_versiongroupregion!]! - - """ - fetch data from the table: "pokemon_v2_versionname" - """ - pokemon_v2_versionname( - """distinct select on columns""" - distinct_on: [pokemon_v2_versionname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_versionname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_versionname_bool_exp - ): [pokemon_v2_versionname!]! - - """ - fetch aggregated fields from the table: "pokemon_v2_versionname" - """ - pokemon_v2_versionname_aggregate( - """distinct select on columns""" - distinct_on: [pokemon_v2_versionname_select_column!] - - """limit the number of rows returned""" - limit: Int - - """skip the first n rows. Use only with order_by""" - offset: Int - - """sort the rows by one or more columns""" - order_by: [pokemon_v2_versionname_order_by!] - - """filter the rows returned""" - where: pokemon_v2_versionname_bool_exp - ): pokemon_v2_versionname_aggregate! - - """ - fetch data from the table: "pokemon_v2_versionname" using primary key columns - """ - pokemon_v2_versionname_by_pk(id: Int!): pokemon_v2_versionname - - """ - fetch data from the table in a streaming manner: "pokemon_v2_versionname" - """ - pokemon_v2_versionname_stream( - """maximum number of rows returned in a single batch""" - batch_size: Int! - - """cursor to stream the results returned by the query""" - cursor: [pokemon_v2_versionname_stream_cursor_input]! - - """filter the rows returned""" - where: pokemon_v2_versionname_bool_exp - ): [pokemon_v2_versionname!]! -} \ No newline at end of file diff --git a/src/lib/graphql.ts b/src/lib/graphql.ts index 7413c66..bfd8b84 100644 --- a/src/lib/graphql.ts +++ b/src/lib/graphql.ts @@ -2,13 +2,15 @@ import { type GraphQLArgument, + type GraphQLInputType, + GraphQLNonNull, type GraphQLSchema, - Kind, - type TypeNode, - type VariableDefinitionNode, buildClientSchema, buildSchema, getIntrospectionQuery, + isInputObjectType, + isListType, + isScalarType, printSchema, } from "graphql"; import { readFile, writeFile } from "node:fs/promises"; @@ -89,6 +91,7 @@ export function getOperations( operations.push({ name: fieldName, type: "query", + // TODO: Add all the possibly output types to the description description: field.description, parameters: field.args, }); @@ -156,61 +159,63 @@ export function operationToTool(operation: Operation): Tool { * @returns A Zod schema object */ function buildZodSchemaFromVariables( - variableDefinitions: ReadonlyArray + variableDefinitions: ReadonlyArray ) { const schemaObj: Record = {}; - for (const varDef of variableDefinitions) { - const varName = varDef.variable.name.value; - schemaObj[varName] = typeNodeToZodSchema(varDef.type); + for (const definition of variableDefinitions) { + schemaObj[definition.name] = argumentToZodSchema(definition); } return z.object(schemaObj); } -/** - * Converts a GraphQL type node to a Zod schema - * @param typeNode - The GraphQL type node - * @returns A Zod schema - */ -function typeNodeToZodSchema(typeNode: TypeNode): z.ZodTypeAny { - switch (typeNode.kind) { - case Kind.NON_NULL_TYPE: - return typeNodeToZodSchema(typeNode.type); +function argumentToZodSchema(argument: GraphQLArgument): z.ZodTypeAny { + // Build individual zod schema's + function convertToZodSchema(type: GraphQLInputType): z.ZodTypeAny { + if (type instanceof GraphQLNonNull) { + // Non-null type, need to go deeper + return convertToZodSchema(type.ofType); + } + + if (isListType(type)) { + return z.array(convertToZodSchema(type.ofType)); + } - case Kind.LIST_TYPE: - return z.array(typeNodeToZodSchema(typeNode.type)); + if (isScalarType(type)) { + if (type.name === "String" || type.name === "ID") return z.string(); + if (type.name === "Int") return z.number().int(); + if (type.name === "Float") return z.number(); + if (type.name === "Boolean") return z.boolean(); + // Fall back to string for now when using custom scalars + return z.string(); + } + + if (isInputObjectType(type)) { + const fields = type.getFields(); + const shape: Record = {}; + for (const [fieldName, field] of Object.entries(fields)) { + shape[fieldName] = + field.type instanceof GraphQLNonNull + ? convertToZodSchema(field.type) + : convertToZodSchema(field.type).optional(); + } - case Kind.NAMED_TYPE: - return namedTypeToZodSchema(typeNode.name.value); + return z.object(shape).optional(); + } - default: - return z.any(); + // Fall back to any type for now, hopefully extra input context will help an LLM with this + return z.any(); } -} -/** - * Converts a GraphQL named type to a Zod schema - * @param typeName - The name of the GraphQL type - * @returns A Zod schema - */ -function namedTypeToZodSchema(typeName: string): z.ZodTypeAny { - switch (typeName) { - case "String": - return z.string(); - case "Int": - return z.number().int(); - case "Float": - return z.number(); - case "Boolean": - return z.boolean(); - case "ID": - return z.string(); - default: - // We just fallback to string for now when using custom scalars - // TODO: Handle custom scalars using configuration - return z.string(); + const zodField = convertToZodSchema(argument.type); + + // Default value is not part of the type, so we add it outside of the type converter + if (argument.defaultValue !== undefined) { + zodField.default(argument.defaultValue); } + + return zodField; } export async function createGraphQLHandler(config: Config) { diff --git a/v2-plan.md b/v2-plan.md index 65003ac..9d03520 100644 --- a/v2-plan.md +++ b/v2-plan.md @@ -3,3 +3,6 @@ V1 implementation is way too simple to work with, just a generic GraphQL query call is not enough. Idea is to generate tools based on the given schema for introspection. + + +- Introspect the schema and create a GraphQL object From 9834ea0efea1ad93ac1ebf480d2d2208d2ded24b Mon Sep 17 00:00:00 2001 From: Boris Besemer Date: Fri, 7 Mar 2025 12:11:59 +0100 Subject: [PATCH 07/13] feat: add output types as description for the tool --- schema-simple.graphql | 91 ++++++++++++++++++++++++ src/lib/graphql.ts | 162 ++++++++++++++++++++++++++++++++++++++++-- 2 files changed, 248 insertions(+), 5 deletions(-) create mode 100644 schema-simple.graphql diff --git a/schema-simple.graphql b/schema-simple.graphql new file mode 100644 index 0000000..d061272 --- /dev/null +++ b/schema-simple.graphql @@ -0,0 +1,91 @@ +schema { + query: Query + mutation: Mutation +} + +type Query { + """Get a user by ID""" + user(id: ID!): User + + """Get all users""" + users: [User!]! + + """Get a post by ID""" + post(id: ID!): Post + + """Get all posts""" + posts: [Post!]! + + """Get all comments for a post""" + commentsByPost(postId: ID!): [Comment!]! +} + +type Mutation { + """Create a new user""" + createUser(input: CreateUserInput!): User! + + """Update an existing user""" + updateUser(id: ID!, input: UpdateUserInput!): User! + + """Delete a user""" + deleteUser(id: ID!): Boolean! + + """Create a new post""" + createPost(input: CreatePostInput!): Post! + + """Add a comment to a post""" + addComment(input: AddCommentInput!): Comment! +} + +type User { + id: ID! + name: String! + email: String! + posts: [Post!]! + comments: [Comment!]! + createdAt: String! + updatedAt: String +} + +type Post { + id: ID! + title: String! + content: String! + published: Boolean! + author: User! + comments: [Comment!]! + createdAt: String! + updatedAt: String +} + +type Comment { + id: ID! + text: String! + post: Post! + author: User! + createdAt: String! +} + +input CreateUserInput { + name: String! + email: String! +} + +input UpdateUserInput { + name: String + email: String +} + +input CreatePostInput { + title: String! + content: String! + published: Boolean + authorId: ID! +} + +input AddCommentInput { + text: String! + postId: ID! + authorId: ID! +} + diff --git a/src/lib/graphql.ts b/src/lib/graphql.ts index bfd8b84..5cbc129 100644 --- a/src/lib/graphql.ts +++ b/src/lib/graphql.ts @@ -4,12 +4,14 @@ import { type GraphQLArgument, type GraphQLInputType, GraphQLNonNull, + type GraphQLOutputType, type GraphQLSchema, buildClientSchema, buildSchema, getIntrospectionQuery, isInputObjectType, isListType, + isNonNullType, isScalarType, printSchema, } from "graphql"; @@ -92,9 +94,25 @@ export function getOperations( name: fieldName, type: "query", // TODO: Add all the possibly output types to the description - description: field.description, + description: createOperationDescription(schema, { + name: fieldName, + type: "query", + parameters: field.args, + description: field.description, + } satisfies Operation), parameters: field.args, }); + + if (fieldName === "commentsByPost") { + console.error( + createOperationDescription(schema, { + name: fieldName, + type: "query", + parameters: field.args, + description: field.description, + } satisfies Operation) + ); + } } } @@ -105,7 +123,12 @@ export function getOperations( operations.push({ name: fieldName, type: "mutation", - description: field.description, + description: createOperationDescription(schema, { + name: fieldName, + type: "mutation", + parameters: field.args, + description: field.description, + } satisfies Operation), parameters: field.args, }); } @@ -172,7 +195,15 @@ function buildZodSchemaFromVariables( function argumentToZodSchema(argument: GraphQLArgument): z.ZodTypeAny { // Build individual zod schema's - function convertToZodSchema(type: GraphQLInputType): z.ZodTypeAny { + function convertToZodSchema( + type: GraphQLInputType, + maxDepth = 3 + ): z.ZodTypeAny { + if (maxDepth === 0) { + // Fall back to any type when we reach recursion limit, especially with circular references to input types this can get quite intensive + return z.any(); + } + if (type instanceof GraphQLNonNull) { // Non-null type, need to go deeper return convertToZodSchema(type.ofType); @@ -197,8 +228,8 @@ function argumentToZodSchema(argument: GraphQLArgument): z.ZodTypeAny { for (const [fieldName, field] of Object.entries(fields)) { shape[fieldName] = field.type instanceof GraphQLNonNull - ? convertToZodSchema(field.type) - : convertToZodSchema(field.type).optional(); + ? convertToZodSchema(field.type, maxDepth - 1) + : convertToZodSchema(field.type, maxDepth - 1).optional(); } return z.object(shape).optional(); @@ -273,3 +304,124 @@ export async function createGraphQLHandler(config: Config) { }, }; } + +/** + * Extracts the output type information from a GraphQL operation + * @param schema - The GraphQL schema + * @param operation - The GraphQL operation + * @returns A string representation of the output type structure + */ +function getOperationOutputType( + schema: GraphQLSchema, + operation: Operation +): string { + const typeMap = schema.getTypeMap(); + let outputType: GraphQLOutputType | undefined; + + if (operation.type === "query") { + const queryType = schema.getQueryType(); + if (queryType) { + const field = queryType.getFields()[operation.name]; + if (field) { + outputType = field.type; + } + } + } else if (operation.type === "mutation") { + const mutationType = schema.getMutationType(); + if (mutationType) { + const field = mutationType.getFields()[operation.name]; + if (field) { + outputType = field.type; + } + } + } + + if (!outputType) { + return "Unknown output type"; + } + + // Generate a string representation of the output type + return printType(outputType, schema); +} + +/** + * Recursively prints a GraphQL type structure + * @param type - The GraphQL type to print + * @param schema - The GraphQL schema + * @param depth - Current recursion depth to prevent infinite loops + * @returns A string representation of the type + */ +function printType( + type: GraphQLOutputType, + schema: GraphQLSchema, + depth = 0 +): string { + if (depth > 5) return "..."; // Prevent too deep recursion, should I add it in text here? + + // Handle non-null and list wrappers + if ("ofType" in type) { + if (isListType(type)) { + return `[${printType(type.ofType, schema, depth)}]`; + } + if (isNonNullType(type)) { + // Not sure why typescript goes to never typing here, need to check later + return `${printType( + (type as GraphQLNonNull).ofType, + schema, + depth + )}!`; + } + } + // Handle scalar types + if (isScalarType(type)) { + return type.name; + } + + // Handle enum types + if (type.astNode?.kind === "EnumTypeDefinition") { + return `ENUM ${type.name}`; + } + + // Handle object types + if ("getFields" in type && typeof type.getFields === "function") { + const fields = type.getFields(); + const fieldStrings = Object.entries(fields).map(([name, field]) => { + return ` ${name}: ${printType(field.type, schema, depth + 1)}`; + }); + + return `{\n${fieldStrings.join("\n")}\n}`; + } + + return "name" in type ? type.name : "Unknown"; +} + +function createOperationDescription( + schema: GraphQLSchema, + operation: Operation +) { + const outputTypeInfo = getOperationOutputType(schema, operation); + return ` + This is a GraphQL ${operation.type} operation: "${operation.name}" + +DESCRIPTION: +${operation.description || "No description available"} + +PARAMETERS: +${ + operation.parameters.length > 0 + ? operation.parameters + .map( + (param) => + `- ${param.name}: ${param.type.toString()}${ + param.description ? ` - ${param.description}` : "" + }` + ) + .join("\n") + : "No parameters required" +} + +OUTPUT TYPE: +${outputTypeInfo} + +When you use this operation, you'll receive a response with this structure.`; +} From 5d5df5a33ceaea4b470808692c50092866c8674a Mon Sep 17 00:00:00 2001 From: Boris Besemer Date: Fri, 7 Mar 2025 12:19:35 +0100 Subject: [PATCH 08/13] feat: reach earlier recursion limit and give cleaner output when hit --- src/lib/graphql.ts | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/src/lib/graphql.ts b/src/lib/graphql.ts index 5cbc129..f4db197 100644 --- a/src/lib/graphql.ts +++ b/src/lib/graphql.ts @@ -354,21 +354,21 @@ function getOperationOutputType( function printType( type: GraphQLOutputType, schema: GraphQLSchema, - depth = 0 + maxDepth = 5 ): string { - if (depth > 5) return "..."; // Prevent too deep recursion, should I add it in text here? + if (maxDepth === 0) return "..."; // Prevent too deep recursion, should I add it in text here? // Handle non-null and list wrappers if ("ofType" in type) { if (isListType(type)) { - return `[${printType(type.ofType, schema, depth)}]`; + return `[${printType(type.ofType, schema, maxDepth)}]`; } if (isNonNullType(type)) { // Not sure why typescript goes to never typing here, need to check later return `${printType( (type as GraphQLNonNull).ofType, schema, - depth + maxDepth )}!`; } } @@ -385,8 +385,12 @@ function printType( // Handle object types if ("getFields" in type && typeof type.getFields === "function") { const fields = type.getFields(); + if (maxDepth - 1 === 0) { + // Return the type name if we are at the max depth already + return type.name; + } const fieldStrings = Object.entries(fields).map(([name, field]) => { - return ` ${name}: ${printType(field.type, schema, depth + 1)}`; + return ` ${name}: ${printType(field.type, schema, maxDepth - 1)}`; }); return `{\n${fieldStrings.join("\n")}\n}`; From e73a7a80ebcdb44bcc9abb518726877b59a4d607 Mon Sep 17 00:00:00 2001 From: Boris Besemer Date: Fri, 7 Mar 2025 12:26:11 +0100 Subject: [PATCH 09/13] chore: add simple debug graphql server to work against --- bun.lockb | Bin 0 -> 26594 bytes package.json | 70 ++++++++++++++++++++++----------------------------- 2 files changed, 30 insertions(+), 40 deletions(-) create mode 100755 bun.lockb diff --git a/bun.lockb b/bun.lockb new file mode 100755 index 0000000000000000000000000000000000000000..c7033ad55d2eefdcaddda16051712ba98a4eb913 GIT binary patch literal 26594 zcmeIbd0dR&`#(NqD22$DB`p%kw5w2QBO+4SqL^x`VVbF#sgw}1MUmxYU$QGpA^Q@g zRhH^y$r2GsNVbT4uj`&Uxh-w4_wV<3eEx7ePS<_k=UmV0I@h_*nRCv4zphtr4gFw| zP~VHo*XQs<)V+fF3XoYmf%i;bE|0_V6$k^^VpfQOf-HlfZhJ; z^~A`L-w&FvowL{Da*FPkH~mdr{GbvfI|*UP|3V|B_a|+o7ZmBqU_`RvN*QRlz=wJk z#uoaC;A*4{gV6z=4+g3PR1atypqf$|32JqP`(U7oKxYC~0P5F5LOCLDHjnMY@#b-Z zxq#P|$zZgGa(AFue;3fUK&yZvUznje9~JNuvIG5tc#IKn-3^`#*`X{iflpX4Kad;9 zVK9taN$Q^miu&{eig@GYB=;gQTO2Inh#cU)9X#jq{W(IeSmeVA^g(>DFfj+)_q3&? zz7<@fd?TQUX9qXkfj$MQ4pc1SalN4IJluDJ`EVl(=*lumm1#vUr9_0cy)y|1<163n;14X;N0E+cCOP^o7mJ)NR z@=B=rtHB#R)+%@QGM5 zL+cw)CMi(UzUZL9@Hp?a_qGZj_wf%bQteeWANNjet$EsAX3M?dpSA~n<)wXdnlfve zO5Z4U;SM9`@dXuH;ez&)$LL?)*)1onlUI2m_N+`d|nx2RXy@s#OqX^RgkK2ug( zSGC5*TRTPJ^OqZu24)G<Wdrvi`u|G@tS_>F-dh7SX#2nNB0%LWsv=MD-x0zclP?#wodUkNr>Zn#+F|_(}g0 z44RttUXr@1;IMT0&Gn!0z>oe<@ah%#O983B2>5aS!G8ZQ{dW@ht!efrEN(OoU8^bRTNWG!JZzJW0^)A(hU#kA`mhcN;(2tSwW5wqBKNA+s?!Zs@ z2<{(+(jJm}p1_ax$9phkv-MvE{OEr~K91q0BqF~M_|bmI^I!VEGi(-YrTP;Lq>Uva zeE__-|AALXGAh|!cp^j8O`a|QXtcFmP90)A`Y zN0}(Ux#Q;n@Q($4+%0e0fheq@LNmm*Hqin z`9A_b+8>``YN`%I{z%wIqy3sA8|4uG4Zv>;{Ahn1zs>D`16X)C0YCaL!Gz036RBGY z{3xI3PiSKRgugFre1=K&M;_cqG$j#!+&H0pn1-p;r76r%hwxtpeg~=kXuIaxuQi-! z3<7=}H;CEX`NJ9basDCv&9&chDL?KXF=J?*jh_kWcL1T>UjVG8m@7k9uQ< z;n1W+-v;>6{&3FL?D@|W1mpaJV-GQ4 zI&5-6pT&%AC-Wy#oCisN{)u8AVS6#rDdLcRq*JV~0vTx!$XKtZl&S*7^e2k-)gj}U z(1MH!De{wkLW=F~4;j<{Lb2~)ElSCQH5oOY@H`X~oud4qkdazL#$-+Xl~B}Y7-TFT z4jFw7e4I*1u|1<9V>!%yR6>gNU@oTUIG{L}PlSy1CQ0dJpvdn58SOJ2GWM4rWPCmo zGU5b4Mm|1dOi1xw02#}Jr1wIgn2=&QroVpivmgES3-pRwrCQ=3c>DiF0z4ThE*+Zr zP}O4Vw|~=u_uQ|#kQi=I>!P_nZ^T&dO|PPzvxl`v8n)T<(~9uSX}VKwLVef@qxW6f z_@ISKa;$#M$OR*JDSWv{!$n^wiMi=S8?`{(h-!6Th(@*);<$uE5x(8oK zTXoHH^x~w+Pg;*x2zV5hzj4wT@sPfIsxG&hQ+Dim)Zyw<*J>Irjy;l?uL_Ulb+W3~ z+-I`#>A?echIwZ9+f_LAlE%v^{rrVHKF+wM-1CZi2fy^M!`Ht)A80w|?4irIMQ#>4 z&opx0?AKlKl7@?8m?UNd&%XD?q$EMm;ZNR2Py6Zz#2T8EsP<$Sozd*@L_IOfct_Gj zONE-@>2@QH3KxF7E3Mc;o_V|5;OJSs$mM=eMiafI}~+D+oOBd)jl)3@7vVD zw4cM`*NZFGjro2jOKy)*cvWr6?AV0UkE({=Pv3njn`3ZZ>t(dI2>q7$8U9X^#JsMv z_xZ~UNxI5Y)W7Y&wJpXYtxL77PPSvnfII%{^m;0p*`K=iT70;BsE2&ek^F8}I3G6d!@>}xNc{-XTIQayQ3>vPCX(5!lRG9 zjP0zj@}^bmm$%<8K3TTqp{8q|67#J1fw8CZ%+~+9u%pUoxa4=4!u6il*;3Ap>+U)eF2&DWTPNmD!KnhhDP z6QU)`Rug^uXQYv9my2`D&7XbSlg}}{{*>a@t_dtTQL2K>nG9RE>`7C0q+j5hU0gxKrLSw4 zE&Il7*FE@V)v53AoIf&Iw?7SVirD`>ee>sixw4~E_uk|i<*2?7@?Yi658mWe8`b&E zEI+p+2OVCI9p6#4dT z`@Pscb^`wy{l?`@KR5lv*tX+(PQJf5P$?+f^!^l&wX)m9I}1-6R!5dCDk$x;^~AlF z)&rJ$`m9w}rs2YNr!Fyvb&$2ns)>H{RGSiIK!cJd>_JmH}E zq}v`d^%XOhyVlItuh|?FH)l{t+OEvvM{kTKY_pl?uzgf+RDATH#Q8z5Zdndyw(?{Q zu%_X{^1d!H^VeU=E9=$P%Rwtrd-U?8^@8#EoWvCae z40U4c?Y_+6n_^T8w^2uGU#V~Yl+iANh6~H)y2O+nyjUkG!`aPIqy5T{H=>u$Uy^g` zSke4+UR4j}+sZ6mb1xH5pAsdTmfO~>JhRwh@SS}=TyrCy-jZSmkF}kn9J{zTU5J$!K4FY3w#t7 zuDLF3HTX)*KMD_pMMaZ#(ex$jVG4IRS3^HFGD~ahR1MS0G`RxHl>>cbOr2I0-111j zKEk}TGPBhbv+~W8_a3rx@R_t=`Q3GPnltihSD#ij5#9NuTtdU8?>CuyElvb1bvgRH z(%mJ=^7@_!X|rn-m#sZ~`1){FExSF|rlsYBhkCh|l=yy~(NfDzU#4qHglWaYtamep zk77LR`HJoj@D9B$F&|g%esh07RHn#iYogki1oxx%CH?#CKV|DYFE+YF-SthJ+}QJv z?%L_+xgUR>F>M>)IdR*rQ9(WL2|8*HR!Z4wOw$+l0VFZmo6L0cRx2I%%3(1J?Ui;K zy?gEGxmUcZcfOHja^}MEw>@6oE6pGAx=3g?y+yiTdtT7l^H<|~IrS7MY_UDH_5=+V zzKy6$%r5tJdwe=9XBri=ByN9MpWNi*3DrA27fjgpR_^Xr?%J*s=bzhkajuT4$>vXk zd-c4!Fn3OETi$8+;t9K+77j1iFp`Fgdoq%kyEZFZ#A_|A%(A|_bPRwoi~@pOmI8ya6yY-QM%Or`XLJ|XE}QsF7AU!Vmh?2 z{;<8q>ge(E6NEUVp`Wxii~DT6U%X7^Qx+?Fj{yyj``8QHvBpCXoq->wNhzEqUg=!OkbM+8!IuI)bGqZ<1<|yZGtm;(C1%u zI__5U@;Rx)l>0jd2OfDGd1F%FXMraiH|KH09y+qot{3}X={DiM!>;dc4ArOnyqZz2 zN7DN*b7FPgXIJKO$}~UFoTje^9e4TW@E0B4w)^1p#HP6IgRx2Wk5%rL8uae?(74l? zrE|X97aj0BV!G@VH+SEZ-r_q+mfxy+bl^@^U9UcR?>F1U%jeQ?HR-q^gA|V1_pyC5 ze$6+>?4Hw7?Uv0SnKx$kA%R`4L6m;BS%<32!^+>r4u9w3pw{!zoR6`4T$dhi8`3RF zR{2Fh_TvLI+}?ED^yH`+w~|}iKG82K9o=V`zDt)oW5r_vv-Dp?l}xZ%{_nRUv%$xn zTE&iu%oJKyIabMU5Ibij#p=#(y;ELfQld@6)uQA2t`0KVG1unP$-~2=is4t5>~q@1*mRRyaI@QxaQgg9&T|l+ zc~@rM!s2&MyV68~-UF|=c8{DgRYfHty&$Nhh<$0~H-XOr8MoCv?P@zR!%K4bWkzA& zUG}$$5NpzPfaMN9^_Xk$0Y*V^*>%)7jAP>4&hvMHlDq|K4IpAG_U~ zo;(_OH*!qDpd4MfGDVr>iz0pcJ)lBnsbkr(;M_d>paZH0WRz^HpS@XFu<@(f#k6Y+a{?dtTyQb}w%o)E z8yS@eG+Y)Pw?<>6>nz`?m2!P-D>H|Q6`V|IsnaX8fZ;oz86; zzM*_+*94UV^HbYj$`vrTs$6sElsB7yUPmkO*^AGKeRkf`{Bm3N?VjR|_-!QFXX(>% z!>&)ZFwzbxP5a1U)T*Eq4@H4~AL8+nf z`);kjJ|X$V3AgN6_qj^^qO+fcyX7DH%=EHZP?d5bD$g`#W>Rc^ZT0cf2|D>XDj#jC zs!VgYe4fJ0py3+PaRHZhO!#?tE`{wr$&>;Ns3hy1h0YMZ-0wvG5o9Hu98cdu3uN2PG2xrCG%{S?19$N_hM=*1*L7; zWGlwK)y?^0c1%6FYU~<=R&(g{@4z}#uz!QYa!~Q&p&*|ET7tfbTV)Bg-z8~bukC}9x zV{CJIcIBXNwX2VM^YUgy$FSbJI_b1~zPsh>FY$9t^!Bgsf3`IA@U8hpF`bRpZSvmf z`gZLb`aTQZ0o5hu@=r?#KE1S9@9kH+n3zi^71?W#y100HskkonepnWHX~sd_kT+mj$tB2mMR|?w~uWm8&oRdcXc#F)ts!^NUxbB}r z!-aP)b&08P$+yMqlOmsf15ApQ;}T0AoStjksd#eLh0L?P2d+7PzFT(g$`x7nZdR8r zDw}J0%7%S$l3rQgu`@T6UG2Hh-O87Si|6(vG2OS=$nROHcfru{(xdBJgAck`8&@db zyJ~vXF2&k-(sSdXqjI#~*g4G`;!x02WB}F3*^=sJLs-qCR1hi$`GJcbAHQThk5Mh8N=B z$ogEFSCdfqSWn&FqCAC$OWrFWJagx|NlV8a8sfYC=G|K@Z%z28zhbKuE@I=;3Cp_A zGOp3d%Pv7r#H||iE-lw9|9Y-H1NjaX7(!S@6y~+;z zyiZQm=zTbnK8~#kC{Si{cG~ko?)0I-8MAb4WHVNcJ>!yGIMghf=4LW@AmSI{n+G@I{JBa`V3oai*F7SAIByxqGn~=k? zQa3VC7jeTm0^b4ZChBY+*N-poCEs?{ewQSKKs<9Pn6*6t4K_Bi0={|>aGxX#8NW%y zGXVV755LR9Z|LxQH~jV&zX!&5Y53j?-%;WFBz*US=kj=lj_+&m-3q=3!FLw;egWSF z;Cp|3M~~l&;kRA*T@!wT)D|-8kKa!PLKZ-t0htZi3$iz4cgU`g@vIlmr-ws!fUFK# z1F|OM-jMMd7W_U2zZJsodhpw1N67fj7T>SpyHI>@iSHP-AmcYW_#Me;$oL%ve)AA0 zwUq@5fuvy3u+8w?70-%M2h;^IQ8wBTZ7CzAs1vpo+m7}`yP|#3&e(qZ?hkE@_CZ_V zGpvVpLW=ijFZ{kr9Wu5P@$vfv{ALBev%&Ubd(h5kZ)^{?3%@(2cz&^pg z!#>2m><=03g0?~%p*^u3#BTT;ZHD)FO)_F)KNBqS9Q^?O0?SYa`UIAtU*J8dhu0_@ z@6mto9(@UAV|!6p#1ChPr(w22KWs?2S6k7Rj3k54vDNoBB?-$sYEvtdxykYffCdjTsRVj z9E`L`5{(5)j3p%`J`ah<0wrhzXb*|dLn5+33Hkw`)vrN4HUJ(H=ZC~~0W=c{+8=qq zN$QmYB_vu9i4Fs3XgAQB#1A6zVq|6JqN%~*NQ55}(FJ(W6`{9DOd%3O21=yX`PFx* z5+h?h^SZb}Bu)(an<3@#BmxnMI3p{As)5pVv5H7+8d(_wJyUcL28m`wqSr`93G$G* zMkJ1ntjwWS)QlQQA{dc~H9zE#7)Kookytm95>v1?iKaxN=RgTCV5gFJOC-JyCC3Q;fJ9^>5qJoXA%nzhA~AZP1UnUY zNK_{h#Rt()Hv_gQWFA+ z`9)$pAsS2w_4OR38;K7_;z3b7RBzWWra3Lyc_`t&Bvc`Z0&p zuQiEuMj~55OQpZGzmF36_SEVx^7oQCP~s2cr+(e)FCj72NDM8|U=WNsBO}J2XC!kN zj=yU_bgN&^e?hCC=Z|)yCi(iu_J8r-`rA{#4gT2M)U5nRG|Cg}pD9ReI}*zb`Uii1 zz(@ZmhZ=MB%OR2RNF+2_8C>6EA~EtvOf>XfLp@{Ij*uvMBq|!LHq7;4O>Dp*@$^Xi zG$=8GX&HVSNQ6BSQ4LB!Yg6!@-+71zfi4nFlB86@Lc|FO;RyAH%@T8jd^XQjEadY2 zez~<$H~g{wH~)G4FBahrmBC1@>9j|OQ4 zOX?`r;;=xDNFU-|O0TF5fV7YmCh%iZ6}*MqK(Y0ofb>N^GhwO55(`)}L;^lb3fuh0s`a+H$S0omO>G1;tW{C6zLO=cAE9m&A;lm)Vd&Krb$~bxnWToK;*?%OB&oj%YIY>lpi-NYU9_424w$>%1cAK;wWjf-PDd6 zm?%oMm2$aI2=7XDRRikQ)dBXpYZkQ^t!uJK9LD2_8UUf1DXB#oEx7}~!F~hV!Hgsj zf^YC)+H1%$eyWE}qVrMXfNGlLF`pg4X+W(XmFj?ygGKFG8|ex>z5p&HRM(j|QeQfu z0t=a1rROb;@YOrz0uoHTpeyV{BnE`(oiAqLY~4Vc$#xsq$>q;Ohs6;J1ws)QyMo2z ziW>rx?3@8gazQE6*cki)417OsSk!JD8)9Xtj+3I1x`jG5rbTRDn0>v1eStL4FnTq# z4ULPMWQ`gzG(t<;4(zl$%BiSUK~!Pt*Aq=F@D&TVK45UJFSkLx=+yw2eoNV_vB{sD z4Pcw3;go;4c|-R2Nm=Cn=>f=YeBK~u8Nf|0DcO|6H6R;LM}P;(59>8hpNazw3={=- zMBN&m$*IMR)Z2lPeoI-E`Z1I&t0YUQ2BiO3-vH8&8yMDbirR=CWH9483ApLEz>mkX z2w)9S#W_4dAm}ON)ZO6A8ewn%_z+vn74WSIvsfVDiS#+MINrgq#Q5d0WOen+!(cI& zC$bLpXNyDqSbX?>)%WFyz5RcB0-hVd6>(Vp99|$t_;YQEiFm?bSnI&*tqz@P6;I&j z$N8ZK^-L7(C8Ab@ptq+XuKNwtBO=uC3>kif8?g1y&~zBE9{rY@RE;U)2|0lrI35?y z5W)IMa`{usI3Zv{(a*@(jXo@@ge8V3>YRptQyOEHy2a0U)U4T z2fyK=jYk~7g@l?48k=l>@&$<}1H0q`TZ;|GF-SLx4_6c@5V5^r*&=3p&uqwH>1@A@ zArSM+6KYm%mcrCP1t5w_)TQRGpVY-6&7x`q3weQTF>X6y3C#198hJ!w9OP*3I`vxrEs0>gNMZwUO zt}oy~9ClX}x`7@X;YqL1+YE*YLIxYX)9g<&R zK$2WYh7W9_p+|lgi24~1z%zs<+4Dzrz@^w&k^|4i9Pek<$hrYQ$R)JUMB*+DDMI`g zdk<}dok+b=qFO~tsr6A)V5o|KLs1H-Q5#EGemkPU*WZ*5v~rf@;G!W#eyeG0?ajMk`7k@WNpXVM1XXte;4 znsy~8n-YzJ`9554Zlg-ks{suC7JJIH(X%9}8lfWK4i&+P0=3o!lSs}Z|L^_%e;NPD Aj{pDw literal 0 HcmV?d00001 diff --git a/package.json b/package.json index 860d98a..1661e7d 100644 --- a/package.json +++ b/package.json @@ -1,42 +1,32 @@ { - "name": "mcp-graphql", - "module": "index.ts", - "type": "module", - "version": "2.0.1", - "repository": "github:blurrah/mcp-graphql", - "license": "MIT", - "bin": { - "mcp-graphql": "./dist/index.js" - }, - "files": [ - "dist" - ], - "devDependencies": { - "@graphql-tools/schema": "^10.0.21", - "@types/bun": "latest", - "@types/yargs": "17.0.33", - "graphql-yoga": "^5.13.1", - "typescript": "5.8.2" - }, - "dependencies": { - "@modelcontextprotocol/sdk": "1.6.1", - "graphql": "^16.10.0", - "yargs": "17.7.2", - "zod": "3.24.2", - "zod-to-json-schema": "3.24.3" - }, - "scripts": { -<<<<<<< HEAD - "dev": "bun --watch src/index.ts", - "build": "bun build src/index.ts --outdir dist --target node && bun -e \"require('fs').chmodSync('dist/index.js', '755')\"", - "start": "bun run dist/index.js" - }, - "packageManager": "bun@1.2.4" -======= - "dev": "bun --watch index.ts", - "build": "bun build index.ts --outdir dist --target node && bun -e \"require('fs').chmodSync('dist/index.js', '755')\"", - "build:new": "bun build src/index.ts --outdir dist --target node && bun -e \"require('fs').chmodSync('dist/index.js', '755')\"", - "start": "bun run dist/index.js --endpoint https://beta.pokeapi.co/graphql/v1beta" - } ->>>>>>> c36a65d (feat: use graphql schema object to parse tools) + "name": "mcp-graphql", + "module": "index.ts", + "type": "module", + "version": "2.0.1", + "repository": "github:blurrah/mcp-graphql", + "license": "MIT", + "bin": { + "mcp-graphql": "./dist/index.js" + }, + "files": ["dist"], + "devDependencies": { + "@graphql-tools/schema": "^10.0.21", + "@types/bun": "latest", + "@types/yargs": "17.0.33", + "graphql-yoga": "^5.13.1", + "typescript": "5.8.2" + }, + "dependencies": { + "@modelcontextprotocol/sdk": "1.6.1", + "graphql": "^16.10.0", + "yargs": "17.7.2", + "zod": "3.24.2", + "zod-to-json-schema": "3.24.3" + }, + "scripts": { + "dev": "bun --watch src/index.ts", + "build": "bun build src/index.ts --outdir dist --target node && bun -e \"require('fs').chmodSync('dist/index.js', '755')\"", + "start": "bun run dist/index.js" + }, + "packageManager": "bun@1.2.4" } From 6aa4e228eb30884cb9e0933d156203dd791f4daf Mon Sep 17 00:00:00 2001 From: Boris Besemer Date: Fri, 7 Mar 2025 12:33:38 +0100 Subject: [PATCH 10/13] feat: allow for custom server name See issue #4, should've allowed this from the start --- src/lib/config.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/lib/config.ts b/src/lib/config.ts index 139cf66..ae5eca9 100644 --- a/src/lib/config.ts +++ b/src/lib/config.ts @@ -3,6 +3,7 @@ import { hideBin } from "yargs/helpers"; import { z } from "zod"; export const configSchema = z.object({ + name: z.string().default("mcp-graphql"), // Endpoint for the schema to be introspected and transformed into tools endpoint: z.string().url(), // File path alternative to endpoint, will read the file instead of fetching the endpoint @@ -21,6 +22,11 @@ export type Config = z.infer; export function parseArgumentsToConfig(): Config { const argv = yargs(hideBin(process.argv)) + .option("name", { + type: "string", + description: + "Name of the MCP server, can be used if you want to override the default name", + }) .option("endpoint", { type: "string", description: From 33915681335a88df66041eea478310e0727a18e1 Mon Sep 17 00:00:00 2001 From: Boris Besemer Date: Sat, 8 Mar 2025 08:45:30 +0100 Subject: [PATCH 11/13] fix: create proper tool arguments schema --- src/index.ts | 9 +++++++++ src/lib/graphql.ts | 22 +++++++++------------- 2 files changed, 18 insertions(+), 13 deletions(-) diff --git a/src/index.ts b/src/index.ts index 6b944c7..e9d938c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -199,6 +199,15 @@ server.tool( }, ); +// Post-rebase artifact +// const tools = Array.from(handler.tools.values()).map((tool) => ({ +// name: tool.name, +// description: tool.description, +// parameters: tool.parameters, +// inputSchema: tool.inputSchema, +// })); + +// Post-rebase artifact /** * Handles tool calling from the client and executes the tool */ diff --git a/src/lib/graphql.ts b/src/lib/graphql.ts index f4db197..23a52e3 100644 --- a/src/lib/graphql.ts +++ b/src/lib/graphql.ts @@ -102,17 +102,6 @@ export function getOperations( } satisfies Operation), parameters: field.args, }); - - if (fieldName === "commentsByPost") { - console.error( - createOperationDescription(schema, { - name: fieldName, - type: "query", - parameters: field.args, - description: field.description, - } satisfies Operation) - ); - } } } @@ -190,7 +179,10 @@ function buildZodSchemaFromVariables( schemaObj[definition.name] = argumentToZodSchema(definition); } - return z.object(schemaObj); + return z.object({ + variables: z.object(schemaObj), + query: z.string(), + }); } function argumentToZodSchema(argument: GraphQLArgument): z.ZodTypeAny { @@ -292,11 +284,15 @@ export async function createGraphQLHandler(config: Config) { tools, loadTools, async execute(query: string, variables: unknown) { + const body = JSON.stringify({ query, variables }); + console.error("body", body); const result = await fetch(config.endpoint, { method: "POST", - body: JSON.stringify({ query, variables }), + body, }); + console.error("result", await result.json()); + return { status: "success", data: await result.json(), From 8e7f0c5c30820f229a4f44233b84c8514b9db784 Mon Sep 17 00:00:00 2001 From: Boris Besemer Date: Mon, 19 May 2025 21:31:42 +0200 Subject: [PATCH 12/13] feat: add back server implementation While the shorthand McpServer is nice, it's not as nice to use for dynamic tool generation --- src/server.ts | 83 +++++++++++++++++++++++++++++++++++++++++++++++++++ v2-plan.md | 8 ----- 2 files changed, 83 insertions(+), 8 deletions(-) create mode 100644 src/server.ts delete mode 100644 v2-plan.md diff --git a/src/server.ts b/src/server.ts new file mode 100644 index 0000000..43b8ec5 --- /dev/null +++ b/src/server.ts @@ -0,0 +1,83 @@ +// Back to the original server implementation as it's more flexible for tool call generation + +import { Server } from "@modelcontextprotocol/sdk/server/index.js"; +import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js"; +import { ListToolsRequestSchema } from "@modelcontextprotocol/sdk/types.js"; +import { z } from "zod"; +import { getVersion } from "./helpers/package.js" with { type: "macro" }; + +const EnvSchema = z.object({ + NAME: z.string().default("mcp-graphql"), + ENDPOINT: z.string().url().default("http://localhost:4000/graphql"), + ALLOW_MUTATIONS: z + .enum(["true", "false"]) + .transform((value) => value === "true") + .default("false"), + HEADERS: z + .string() + .default("{}") + .transform((val) => { + try { + return JSON.parse(val); + } catch (e) { + throw new Error("HEADERS must be a valid JSON string"); + } + }), + SCHEMA: z.string().optional(), +}); + +const env = EnvSchema.parse(process.env); + +const server = new Server( + { + name: env.NAME, + version: getVersion(), + description: `GraphQL MCP server for ${env.ENDPOINT}`, + }, + { + capabilities: { + resources: {}, + tools: {}, + logging: {}, + }, + }, +); + +server.setRequestHandler(ListToolsRequestSchema, async (request) => { + return { + tools: [ + { + name: "introspect_schema", + description: + "Introspect the GraphQL schema, use this tool before doing a query to get the schema information if you do not have it available as a resource already.", + }, + { + // TODO: Check whether we should rename this to operation + name: "execute_query", + description: + "Query a GraphQL endpoint with the given query and variables", + parameters: z.object({ + query: z.string(), + variables: z.string().optional(), + }), + }, + ], + }; +}); + +/** + * Sets up the transport and starts the server with it + */ +async function main() { + const transport = new StdioServerTransport(); + await server.connect(transport); + + console.error( + `Started graphql mcp server ${env.NAME} for endpoint: ${env.ENDPOINT}`, + ); +} + +main().catch((error) => { + console.error(`Fatal error in main(): ${error}`); + process.exit(1); +}); diff --git a/v2-plan.md b/v2-plan.md deleted file mode 100644 index 9d03520..0000000 --- a/v2-plan.md +++ /dev/null @@ -1,8 +0,0 @@ -# V2 Plan - -V1 implementation is way too simple to work with, just a generic GraphQL query call is not enough. - -Idea is to generate tools based on the given schema for introspection. - - -- Introspect the schema and create a GraphQL object From eb6eb0ebd20338be394ab91690cdd7093a4f699b Mon Sep 17 00:00:00 2001 From: Boris Besemer Date: Sun, 25 May 2025 12:52:52 +0200 Subject: [PATCH 13/13] chore: fix styling a bit --- package.json | 1 + src/index.ts | 25 -- src/lib/graphql.ts | 644 +++++++++++++++++++++++---------------------- src/server.ts | 44 ++++ 4 files changed, 368 insertions(+), 346 deletions(-) diff --git a/package.json b/package.json index 1661e7d..5ecfdac 100644 --- a/package.json +++ b/package.json @@ -25,6 +25,7 @@ }, "scripts": { "dev": "bun --watch src/index.ts", + "dev:new": "bun --watch src/server.ts", "build": "bun build src/index.ts --outdir dist --target node && bun -e \"require('fs').chmodSync('dist/index.js', '755')\"", "start": "bun run dist/index.js" }, diff --git a/src/index.ts b/src/index.ts index e9d938c..055d83a 100644 --- a/src/index.ts +++ b/src/index.ts @@ -199,31 +199,6 @@ server.tool( }, ); -// Post-rebase artifact -// const tools = Array.from(handler.tools.values()).map((tool) => ({ -// name: tool.name, -// description: tool.description, -// parameters: tool.parameters, -// inputSchema: tool.inputSchema, -// })); - -// Post-rebase artifact -/** - * Handles tool calling from the client and executes the tool - */ -// async function handleToolCall(name: string, body: string, variables: string) { -// const tool = handler.getTool(name); -// if (!tool) { -// console.error(`Tool ${name} not found`); -// return { -// status: "error", -// message: `Tool ${name} not found`, -// }; -// } -// const result = await handler.execute(tool, body, variables); -// return result; -// } - /** * Sets up the transport and starts the server with it */ diff --git a/src/lib/graphql.ts b/src/lib/graphql.ts index 23a52e3..9e9599b 100644 --- a/src/lib/graphql.ts +++ b/src/lib/graphql.ts @@ -1,19 +1,19 @@ // Contains Schema parsing and transformation logic import { - type GraphQLArgument, - type GraphQLInputType, - GraphQLNonNull, - type GraphQLOutputType, - type GraphQLSchema, - buildClientSchema, - buildSchema, - getIntrospectionQuery, - isInputObjectType, - isListType, - isNonNullType, - isScalarType, - printSchema, + type GraphQLArgument, + type GraphQLInputType, + GraphQLNonNull, + type GraphQLOutputType, + type GraphQLSchema, + buildClientSchema, + buildSchema, + getIntrospectionQuery, + isInputObjectType, + isListType, + isNonNullType, + isScalarType, + printSchema, } from "graphql"; import { readFile, writeFile } from "node:fs/promises"; import { z } from "zod"; @@ -21,57 +21,57 @@ import zodToJsonSchema, { type JsonSchema7Type } from "zod-to-json-schema"; import type { Config } from "./config"; export async function loadSchemaFromIntrospection( - endpoint: string, - headers?: Record + endpoint: string, + headers?: Record, ): Promise { - const response = await fetch(endpoint, { - headers: { - "Content-Type": "application/json", - ...headers, - }, - method: "POST", - body: JSON.stringify({ - query: getIntrospectionQuery(), - }), - }); + const response = await fetch(endpoint, { + headers: { + "Content-Type": "application/json", + ...headers, + }, + method: "POST", + body: JSON.stringify({ + query: getIntrospectionQuery(), + }), + }); - if (!response.ok) { - throw new Error(`Failed to fetch GraphQL schema: ${response.statusText}`); - } + if (!response.ok) { + throw new Error(`Failed to fetch GraphQL schema: ${response.statusText}`); + } - const responseJson = await response.json(); + const responseJson = await response.json(); - if (responseJson.errors) { - throw new Error( - `Failed to fetch GraphQL schema: ${JSON.stringify(responseJson.errors)}` - ); - } + if (responseJson.errors) { + throw new Error( + `Failed to fetch GraphQL schema: ${JSON.stringify(responseJson.errors)}`, + ); + } - if (!responseJson.data.__schema) { - throw new Error(`Invalid schema found at ${JSON.stringify(responseJson)}`); - } + if (!responseJson.data.__schema) { + throw new Error(`Invalid schema found at ${JSON.stringify(responseJson)}`); + } - const schemaObj = buildClientSchema(responseJson.data); + const schemaObj = buildClientSchema(responseJson.data); - const sdl = printSchema(schemaObj); + const sdl = printSchema(schemaObj); - // Debug code to not rate limit the endpoint: - await writeFile("schema.graphql", sdl); + // Debug code to not rate limit the endpoint: + await writeFile("schema.graphql", sdl); - return schemaObj; + return schemaObj; } export async function loadSchemaFromFile(path: string): Promise { - const data = await readFile(path, "utf-8"); + const data = await readFile(path, "utf-8"); - return buildSchema(data); + return buildSchema(data); } type Operation = { - name: string; - type: "query" | "mutation"; - description: string | undefined | null; - parameters: readonly GraphQLArgument[]; + name: string; + type: "query" | "mutation"; + description: string | undefined | null; + parameters: readonly GraphQLArgument[]; }; /** @@ -80,58 +80,58 @@ type Operation = { * @returns An array of operations */ export function getOperations( - schema: GraphQLSchema, - // Subscriptions are not supported (yet?) - allowedOperations: ("query" | "mutation")[] = ["query", "mutation"] + schema: GraphQLSchema, + // Subscriptions are not supported (yet?) + allowedOperations: ("query" | "mutation")[] = ["query", "mutation"], ): Operation[] { - const operations: Operation[] = []; - - if (allowedOperations.includes("query")) { - const queryType = schema.getQueryType(); - const queryFields = queryType?.getFields(); - for (const [fieldName, field] of Object.entries(queryFields || {})) { - operations.push({ - name: fieldName, - type: "query", - // TODO: Add all the possibly output types to the description - description: createOperationDescription(schema, { - name: fieldName, - type: "query", - parameters: field.args, - description: field.description, - } satisfies Operation), - parameters: field.args, - }); - } - } - - if (allowedOperations.includes("mutation")) { - const mutationType = schema.getMutationType(); - const mutationFields = mutationType?.getFields(); - for (const [fieldName, field] of Object.entries(mutationFields || {})) { - operations.push({ - name: fieldName, - type: "mutation", - description: createOperationDescription(schema, { - name: fieldName, - type: "mutation", - parameters: field.args, - description: field.description, - } satisfies Operation), - parameters: field.args, - }); - } - } - - console.error(operations.length); - return operations; + const operations: Operation[] = []; + + if (allowedOperations.includes("query")) { + const queryType = schema.getQueryType(); + const queryFields = queryType?.getFields(); + for (const [fieldName, field] of Object.entries(queryFields || {})) { + operations.push({ + name: fieldName, + type: "query", + // TODO: Add all the possibly output types to the description + description: createOperationDescription(schema, { + name: fieldName, + type: "query", + parameters: field.args, + description: field.description, + } satisfies Operation), + parameters: field.args, + }); + } + } + + if (allowedOperations.includes("mutation")) { + const mutationType = schema.getMutationType(); + const mutationFields = mutationType?.getFields(); + for (const [fieldName, field] of Object.entries(mutationFields || {})) { + operations.push({ + name: fieldName, + type: "mutation", + description: createOperationDescription(schema, { + name: fieldName, + type: "mutation", + parameters: field.args, + description: field.description, + } satisfies Operation), + parameters: field.args, + }); + } + } + + console.error(operations.length); + return operations; } type Tool = { - name: string; - description: string; - parameters: z.ZodTypeAny; - inputSchema: JsonSchema7Type; + name: string; + description: string; + parameters: z.ZodTypeAny; + inputSchema: JsonSchema7Type; }; /** @@ -140,29 +140,31 @@ type Tool = { * @returns A MCP tool object */ export function operationToTool(operation: Operation): Tool { - // Import necessary types if they're not already imported + // Import necessary types if they're not already imported - if (!operation.name) { - // Should never reach this as we already filter out operations without a name earlier - throw new Error("Operation name is required"); - } + if (!operation.name) { + // Should never reach this as we already filter out operations without a name earlier + throw new Error("Operation name is required"); + } - // Create a name for the tool based on the operation - const name = `${operation.type}-${operation.name}`; + // Create a name for the tool based on the operation + const name = `${operation.type}-${operation.name}`; - // Get description from the operation or use a default - const description = operation.description; + // Get description from the operation or use a default + const description = operation.description; - // Build parameters schema based on variable definitions - const paramSchema = buildZodSchemaFromVariables(operation.parameters); + // Build parameters schema based on variable definitions + const paramSchema = buildZodSchemaFromVariables(operation.parameters); - // Return the tool object - return { - name, - description: description || "", - parameters: paramSchema, - inputSchema: zodToJsonSchema(paramSchema), - }; + console.error(paramSchema); + + // Return the tool object + return { + name, + description: description || "", + parameters: paramSchema, + inputSchema: zodToJsonSchema(paramSchema), + }; } /** @@ -171,134 +173,134 @@ export function operationToTool(operation: Operation): Tool { * @returns A Zod schema object */ function buildZodSchemaFromVariables( - variableDefinitions: ReadonlyArray + variableDefinitions: ReadonlyArray, ) { - const schemaObj: Record = {}; + const schemaObj: Record = {}; - for (const definition of variableDefinitions) { - schemaObj[definition.name] = argumentToZodSchema(definition); - } + for (const definition of variableDefinitions) { + schemaObj[definition.name] = argumentToZodSchema(definition); + } - return z.object({ - variables: z.object(schemaObj), - query: z.string(), - }); + return z.object({ + variables: z.object(schemaObj), + query: z.string(), + }); } function argumentToZodSchema(argument: GraphQLArgument): z.ZodTypeAny { - // Build individual zod schema's - function convertToZodSchema( - type: GraphQLInputType, - maxDepth = 3 - ): z.ZodTypeAny { - if (maxDepth === 0) { - // Fall back to any type when we reach recursion limit, especially with circular references to input types this can get quite intensive - return z.any(); - } - - if (type instanceof GraphQLNonNull) { - // Non-null type, need to go deeper - return convertToZodSchema(type.ofType); - } - - if (isListType(type)) { - return z.array(convertToZodSchema(type.ofType)); - } - - if (isScalarType(type)) { - if (type.name === "String" || type.name === "ID") return z.string(); - if (type.name === "Int") return z.number().int(); - if (type.name === "Float") return z.number(); - if (type.name === "Boolean") return z.boolean(); - // Fall back to string for now when using custom scalars - return z.string(); - } - - if (isInputObjectType(type)) { - const fields = type.getFields(); - const shape: Record = {}; - for (const [fieldName, field] of Object.entries(fields)) { - shape[fieldName] = - field.type instanceof GraphQLNonNull - ? convertToZodSchema(field.type, maxDepth - 1) - : convertToZodSchema(field.type, maxDepth - 1).optional(); - } - - return z.object(shape).optional(); - } - - // Fall back to any type for now, hopefully extra input context will help an LLM with this - return z.any(); - } - - const zodField = convertToZodSchema(argument.type); - - // Default value is not part of the type, so we add it outside of the type converter - if (argument.defaultValue !== undefined) { - zodField.default(argument.defaultValue); - } - - return zodField; + // Build individual zod schema's + function convertToZodSchema( + type: GraphQLInputType, + maxDepth = 3, + ): z.ZodTypeAny { + if (maxDepth === 0) { + // Fall back to any type when we reach recursion limit, especially with circular references to input types this can get quite intensive + return z.any(); + } + + if (type instanceof GraphQLNonNull) { + // Non-null type, need to go deeper + return convertToZodSchema(type.ofType); + } + + if (isListType(type)) { + return z.array(convertToZodSchema(type.ofType)); + } + + if (isScalarType(type)) { + if (type.name === "String" || type.name === "ID") return z.string(); + if (type.name === "Int") return z.number().int(); + if (type.name === "Float") return z.number(); + if (type.name === "Boolean") return z.boolean(); + // Fall back to string for now when using custom scalars + return z.string(); + } + + if (isInputObjectType(type)) { + const fields = type.getFields(); + const shape: Record = {}; + for (const [fieldName, field] of Object.entries(fields)) { + shape[fieldName] = + field.type instanceof GraphQLNonNull + ? convertToZodSchema(field.type, maxDepth - 1) + : convertToZodSchema(field.type, maxDepth - 1).optional(); + } + + return z.object(shape).optional(); + } + + // Fall back to any type for now, hopefully extra input context will help an LLM with this + return z.any(); + } + + const zodField = convertToZodSchema(argument.type); + + // Default value is not part of the type, so we add it outside of the type converter + if (argument.defaultValue !== undefined) { + zodField.default(argument.defaultValue); + } + + return zodField; } export async function createGraphQLHandler(config: Config) { - let schema: GraphQLSchema; - - if (config.schemaPath) { - schema = await loadSchemaFromFile(config.schemaPath); - } else { - // Fall back to introspection if no schema path is provided - schema = await loadSchemaFromIntrospection(config.endpoint, config.headers); - } - - const tools = new Map(); - - async function loadTools() { - const operations = getOperations( - schema, - config.allowMutations ? ["query", "mutation"] : ["query"] - ); - - // Add tools - for (const operation of operations) { - if ( - !operation.name || - config.excludeQueries.includes(operation.name) || - config.excludeMutations.includes(operation.name) - ) { - // Operation not found or excluded - console.error(`Skipping operation ${operation.name} as it is excluded`); - continue; - } - - const tool = operationToTool(operation); - - tools.set(tool.name, tool); - } - } - - // Load initial tools - await loadTools(); - - return { - tools, - loadTools, - async execute(query: string, variables: unknown) { - const body = JSON.stringify({ query, variables }); - console.error("body", body); - const result = await fetch(config.endpoint, { - method: "POST", - body, - }); - - console.error("result", await result.json()); - - return { - status: "success", - data: await result.json(), - }; - }, - }; + let schema: GraphQLSchema; + + if (config.schemaPath) { + schema = await loadSchemaFromFile(config.schemaPath); + } else { + // Fall back to introspection if no schema path is provided + schema = await loadSchemaFromIntrospection(config.endpoint, config.headers); + } + + const tools = new Map(); + + async function loadTools() { + const operations = getOperations( + schema, + config.allowMutations ? ["query", "mutation"] : ["query"], + ); + + // Add tools + for (const operation of operations) { + if ( + !operation.name || + config.excludeQueries.includes(operation.name) || + config.excludeMutations.includes(operation.name) + ) { + // Operation not found or excluded + console.error(`Skipping operation ${operation.name} as it is excluded`); + continue; + } + + const tool = operationToTool(operation); + + tools.set(tool.name, tool); + } + } + + // Load initial tools + await loadTools(); + + return { + tools, + loadTools, + async execute(query: string, variables: unknown) { + const body = JSON.stringify({ query, variables }); + console.error("body", body); + const result = await fetch(config.endpoint, { + method: "POST", + body, + }); + + console.error("result", await result.json()); + + return { + status: "success", + data: await result.json(), + }; + }, + }; } /** @@ -308,36 +310,36 @@ export async function createGraphQLHandler(config: Config) { * @returns A string representation of the output type structure */ function getOperationOutputType( - schema: GraphQLSchema, - operation: Operation + schema: GraphQLSchema, + operation: Operation, ): string { - const typeMap = schema.getTypeMap(); - let outputType: GraphQLOutputType | undefined; - - if (operation.type === "query") { - const queryType = schema.getQueryType(); - if (queryType) { - const field = queryType.getFields()[operation.name]; - if (field) { - outputType = field.type; - } - } - } else if (operation.type === "mutation") { - const mutationType = schema.getMutationType(); - if (mutationType) { - const field = mutationType.getFields()[operation.name]; - if (field) { - outputType = field.type; - } - } - } - - if (!outputType) { - return "Unknown output type"; - } - - // Generate a string representation of the output type - return printType(outputType, schema); + const typeMap = schema.getTypeMap(); + let outputType: GraphQLOutputType | undefined; + + if (operation.type === "query") { + const queryType = schema.getQueryType(); + if (queryType) { + const field = queryType.getFields()[operation.name]; + if (field) { + outputType = field.type; + } + } + } else if (operation.type === "mutation") { + const mutationType = schema.getMutationType(); + if (mutationType) { + const field = mutationType.getFields()[operation.name]; + if (field) { + outputType = field.type; + } + } + } + + if (!outputType) { + return "Unknown output type"; + } + + // Generate a string representation of the output type + return printType(outputType, schema); } /** @@ -348,76 +350,76 @@ function getOperationOutputType( * @returns A string representation of the type */ function printType( - type: GraphQLOutputType, - schema: GraphQLSchema, - maxDepth = 5 + type: GraphQLOutputType, + schema: GraphQLSchema, + maxDepth = 5, ): string { - if (maxDepth === 0) return "..."; // Prevent too deep recursion, should I add it in text here? - - // Handle non-null and list wrappers - if ("ofType" in type) { - if (isListType(type)) { - return `[${printType(type.ofType, schema, maxDepth)}]`; - } - if (isNonNullType(type)) { - // Not sure why typescript goes to never typing here, need to check later - return `${printType( - (type as GraphQLNonNull).ofType, - schema, - maxDepth - )}!`; - } - } - // Handle scalar types - if (isScalarType(type)) { - return type.name; - } - - // Handle enum types - if (type.astNode?.kind === "EnumTypeDefinition") { - return `ENUM ${type.name}`; - } - - // Handle object types - if ("getFields" in type && typeof type.getFields === "function") { - const fields = type.getFields(); - if (maxDepth - 1 === 0) { - // Return the type name if we are at the max depth already - return type.name; - } - const fieldStrings = Object.entries(fields).map(([name, field]) => { - return ` ${name}: ${printType(field.type, schema, maxDepth - 1)}`; - }); - - return `{\n${fieldStrings.join("\n")}\n}`; - } - - return "name" in type ? type.name : "Unknown"; + if (maxDepth === 0) return "..."; // Prevent too deep recursion, should I add it in text here? + + // Handle non-null and list wrappers + if ("ofType" in type) { + if (isListType(type)) { + return `[${printType(type.ofType, schema, maxDepth)}]`; + } + if (isNonNullType(type)) { + // Not sure why typescript goes to never typing here, need to check later + return `${printType( + (type as GraphQLNonNull).ofType, + schema, + maxDepth, + )}!`; + } + } + // Handle scalar types + if (isScalarType(type)) { + return type.name; + } + + // Handle enum types + if (type.astNode?.kind === "EnumTypeDefinition") { + return `ENUM ${type.name}`; + } + + // Handle object types + if ("getFields" in type && typeof type.getFields === "function") { + const fields = type.getFields(); + if (maxDepth - 1 === 0) { + // Return the type name if we are at the max depth already + return type.name; + } + const fieldStrings = Object.entries(fields).map(([name, field]) => { + return ` ${name}: ${printType(field.type, schema, maxDepth - 1)}`; + }); + + return `{\n${fieldStrings.join("\n")}\n}`; + } + + return "name" in type ? type.name : "Unknown"; } function createOperationDescription( - schema: GraphQLSchema, - operation: Operation + schema: GraphQLSchema, + operation: Operation, ) { - const outputTypeInfo = getOperationOutputType(schema, operation); - return ` - This is a GraphQL ${operation.type} operation: "${operation.name}" + const outputTypeInfo = getOperationOutputType(schema, operation); + return ` + ${operation.type} operation: "${operation.name}" DESCRIPTION: ${operation.description || "No description available"} PARAMETERS: ${ - operation.parameters.length > 0 - ? operation.parameters - .map( - (param) => - `- ${param.name}: ${param.type.toString()}${ - param.description ? ` - ${param.description}` : "" - }` - ) - .join("\n") - : "No parameters required" + operation.parameters.length > 0 + ? operation.parameters + .map( + (param) => + `- ${param.name}: ${param.type.toString()}${ + param.description ? ` - ${param.description}` : "" + }`, + ) + .join("\n") + : "No parameters required" } OUTPUT TYPE: diff --git a/src/server.ts b/src/server.ts index 43b8ec5..4af5c1d 100644 --- a/src/server.ts +++ b/src/server.ts @@ -4,7 +4,9 @@ import { Server } from "@modelcontextprotocol/sdk/server/index.js"; import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js"; import { ListToolsRequestSchema } from "@modelcontextprotocol/sdk/types.js"; import { z } from "zod"; +import zodToJsonSchema from "zod-to-json-schema"; import { getVersion } from "./helpers/package.js" with { type: "macro" }; +import { createGraphQLHandler } from "./lib/graphql"; const EnvSchema = z.object({ NAME: z.string().default("mcp-graphql"), @@ -43,6 +45,40 @@ const server = new Server( }, ); +const handler = await createGraphQLHandler({ + endpoint: env.ENDPOINT, + headers: env.HEADERS, + allowMutations: env.ALLOW_MUTATIONS, + excludeQueries: [], + excludeMutations: [], + name: env.NAME, +}); + +// Post-rebase artifact +const tools = Array.from(handler.tools.values()).map((tool) => ({ + name: tool.name, + description: tool.description, + parameters: tool.parameters, + inputSchema: tool.inputSchema, +})); + +// Post-rebase artifact +/** + * Handles tool calling from the client and executes the tool + */ +// async function handleToolCall(name: string, body: string, variables: string) { +// const tool = handler.getTool(name); +// if (!tool) { +// console.error(`Tool ${name} not found`); +// return { +// status: "error", +// message: `Tool ${name} not found`, +// }; +// } +// const result = await handler.execute(tool, body, variables); +// return result; +// } + server.setRequestHandler(ListToolsRequestSchema, async (request) => { return { tools: [ @@ -50,6 +86,7 @@ server.setRequestHandler(ListToolsRequestSchema, async (request) => { name: "introspect_schema", description: "Introspect the GraphQL schema, use this tool before doing a query to get the schema information if you do not have it available as a resource already.", + inputSchema: zodToJsonSchema(z.object({})), }, { // TODO: Check whether we should rename this to operation @@ -60,7 +97,14 @@ server.setRequestHandler(ListToolsRequestSchema, async (request) => { query: z.string(), variables: z.string().optional(), }), + inputSchema: zodToJsonSchema( + z.object({ + query: z.string(), + variables: z.string().optional(), + }), + ), }, + ...tools, ], }; });