From 0c4f9a542519c892e8df8c7541b60274879acc91 Mon Sep 17 00:00:00 2001 From: Benjie Gillam Date: Fri, 23 Feb 2018 11:48:32 +0000 Subject: [PATCH] fix(deps): Fix dependency patterns, graphql compatibility (#172) * Fix dependency versions * GraphQL now uses quotes for comments * Fix skipping empty Mutation on newer GraphQL versions * Add test that empty schema works * Upgrade flow * Fix flow errors * Formatting * Lint --- package.json | 5 +- packages/graphile-build-pg/index.js | 8 - packages/graphile-build-pg/package.json | 3 +- packages/graphile-build-pg/src/inflections.js | 4 +- .../__snapshots__/emptyMutation.test.js.snap | 32 + .../__tests__/__snapshots__/enum.test.js.snap | 22 +- .../__snapshots__/fieldData.test.js.snap | 24 +- .../__snapshots__/watch.test.js.snap | 44 +- .../__tests__/emptyMutation.test.js | 7 + .../__tests__/fieldData.test.js | 111 +- packages/graphile-build/index.js | 8 - packages/graphile-build/package.json | 2 +- packages/graphile-build/src/SchemaBuilder.js | 69 +- packages/graphile-build/src/makeNewBuild.js | 4 +- .../src/plugins/MutationPlugin.js | 16 +- packages/graphql-parse-resolve-info/index.js | 8 - .../graphql-parse-resolve-info/package.json | 2 +- .../graphql-parse-resolve-info/src/index.js | 6 +- .../__snapshots__/schema.test.js.snap | 10822 ++++++++++------ packages/postgraphile-core/index.js | 8 - yarn.lock | 20 +- 21 files changed, 6935 insertions(+), 4290 deletions(-) create mode 100644 packages/graphile-build/__tests__/__snapshots__/emptyMutation.test.js.snap create mode 100644 packages/graphile-build/__tests__/emptyMutation.test.js diff --git a/package.json b/package.json index 213d8f08a..547c9bad6 100644 --- a/package.json +++ b/package.json @@ -29,9 +29,10 @@ "babel-plugin-transform-es2015-modules-commonjs": "^6.24.1", "babel-plugin-transform-runtime": "^6.23.0", "babel-preset-flow": "^6.23.0", - "flow-bin": "^0.52.0", + "flow-bin": "0.66.0", "flow-copy-source": "^1.2.0", - "graphql": "^0.10.5", + "graphql": ">=0.9 <0.14", + "pg": ">=6.1.0 <8", "sql-formatter": "^1.2.2" }, "workspaces": [ diff --git a/packages/graphile-build-pg/index.js b/packages/graphile-build-pg/index.js index 05e54a015..cc27daf63 100644 --- a/packages/graphile-build-pg/index.js +++ b/packages/graphile-build-pg/index.js @@ -1,13 +1,5 @@ -// @flow - // This script detects if you're running on Node v8 or above; if so it runs the // code directly, otherwise it falls back to the babel-compiled version -/*:: -// Trick flow into exporting the types -export type * from './node8plus'; -*/ - const isNode8Plus = process.versions.node.match(/^([89]|[1-9][0-9]+)\./); -// $FlowFixMe: ignore module.exports = isNode8Plus ? require("./node8plus") : require("./node7minus"); diff --git a/packages/graphile-build-pg/package.json b/packages/graphile-build-pg/package.json index cd97b6650..d0c331d33 100644 --- a/packages/graphile-build-pg/package.json +++ b/packages/graphile-build-pg/package.json @@ -43,14 +43,13 @@ "jsonwebtoken": "^8.1.1", "lodash": ">=4 <5", "lru-cache": "4.1.1", - "pg": ">=6.1.0 <8", "pg-range-parser": "^1.0.0", "pg-sql2": "^1.0.0-beta.3", "pluralize": "^5.0.0", "postgres-interval": "1.1.1" }, "peerDependencies": { - "pg": ">=6 <7" + "pg": ">=6.1.0 <8" }, "devDependencies": { "babel-cli": "^6.24.1", diff --git a/packages/graphile-build-pg/src/inflections.js b/packages/graphile-build-pg/src/inflections.js index a80b89628..4fdd7dff2 100644 --- a/packages/graphile-build-pg/src/inflections.js +++ b/packages/graphile-build-pg/src/inflections.js @@ -30,7 +30,9 @@ export type Inflector = { [string]: (...input: Array) => string, }; -function preventEmptyResult(obj) { +function preventEmptyResult string }>( + obj +): $ObjMap(V) => V> { return Object.keys(obj).reduce((memo, key) => { const fn = obj[key]; memo[key] = (...args) => { diff --git a/packages/graphile-build/__tests__/__snapshots__/emptyMutation.test.js.snap b/packages/graphile-build/__tests__/__snapshots__/emptyMutation.test.js.snap new file mode 100644 index 000000000..5fd9e71bb --- /dev/null +++ b/packages/graphile-build/__tests__/__snapshots__/emptyMutation.test.js.snap @@ -0,0 +1,32 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[`generates empty schema (with no Mutation type) 1`] = ` +"\\"\\"\\"An object with a globally unique \`ID\`.\\"\\"\\" +interface Node { + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + id: ID! +} + +\\"\\"\\"The root query type which gives access points into the data universe.\\"\\"\\" +type Query implements Node { + \\"\\"\\" + Exposes the root query type nested one level down. This is helpful for Relay 1 + which can only query top level fields if they are in a particular form. + \\"\\"\\" + query: Query! + + \\"\\"\\" + The root query type must be a \`Node\` to work well with Relay 1 mutations. This just resolves to \`query\`. + \\"\\"\\" + id: ID! + + \\"\\"\\"Fetches an object given its globally unique \`ID\`.\\"\\"\\" + node( + \\"\\"\\"The globally unique \`ID\`.\\"\\"\\" + id: ID! + ): Node +} +" +`; diff --git a/packages/graphile-build/__tests__/__snapshots__/enum.test.js.snap b/packages/graphile-build/__tests__/__snapshots__/enum.test.js.snap index 747eafd80..699437bcf 100644 --- a/packages/graphile-build/__tests__/__snapshots__/enum.test.js.snap +++ b/packages/graphile-build/__tests__/__snapshots__/enum.test.js.snap @@ -8,24 +8,30 @@ exports[`generated schema 1`] = ` FOUR } -# An object with a globally unique \`ID\`. +\\"\\"\\"An object with a globally unique \`ID\`.\\"\\"\\" interface Node { - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" id: ID! } -# The root query type which gives access points into the data universe. +\\"\\"\\"The root query type which gives access points into the data universe.\\"\\"\\" type Query implements Node { - # Exposes the root query type nested one level down. This is helpful for Relay 1 - # which can only query top level fields if they are in a particular form. + \\"\\"\\" + Exposes the root query type nested one level down. This is helpful for Relay 1 + which can only query top level fields if they are in a particular form. + \\"\\"\\" query: Query! - # The root query type must be a \`Node\` to work well with Relay 1 mutations. This just resolves to \`query\`. + \\"\\"\\" + The root query type must be a \`Node\` to work well with Relay 1 mutations. This just resolves to \`query\`. + \\"\\"\\" id: ID! - # Fetches an object given its globally unique \`ID\`. + \\"\\"\\"Fetches an object given its globally unique \`ID\`.\\"\\"\\" node( - # The globally unique \`ID\`. + \\"\\"\\"The globally unique \`ID\`.\\"\\"\\" id: ID! ): Node enum: MyEnum diff --git a/packages/graphile-build/__tests__/__snapshots__/fieldData.test.js.snap b/packages/graphile-build/__tests__/__snapshots__/fieldData.test.js.snap index 2b85bed2d..cd40923df 100644 --- a/packages/graphile-build/__tests__/__snapshots__/fieldData.test.js.snap +++ b/packages/graphile-build/__tests__/__snapshots__/fieldData.test.js.snap @@ -36,7 +36,7 @@ Object { `; exports[`generated schema 1`] = ` -"# A location in a connection that can be used for resuming pagination. +"\\"\\"\\"A location in a connection that can be used for resuming pagination.\\"\\"\\" scalar Cursor type Dummy { @@ -62,24 +62,30 @@ type DummyEdge { node: Dummy } -# An object with a globally unique \`ID\`. +\\"\\"\\"An object with a globally unique \`ID\`.\\"\\"\\" interface Node { - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" id: ID! } -# The root query type which gives access points into the data universe. +\\"\\"\\"The root query type which gives access points into the data universe.\\"\\"\\" type Query implements Node { - # Exposes the root query type nested one level down. This is helpful for Relay 1 - # which can only query top level fields if they are in a particular form. + \\"\\"\\" + Exposes the root query type nested one level down. This is helpful for Relay 1 + which can only query top level fields if they are in a particular form. + \\"\\"\\" query: Query! - # The root query type must be a \`Node\` to work well with Relay 1 mutations. This just resolves to \`query\`. + \\"\\"\\" + The root query type must be a \`Node\` to work well with Relay 1 mutations. This just resolves to \`query\`. + \\"\\"\\" id: ID! - # Fetches an object given its globally unique \`ID\`. + \\"\\"\\"Fetches an object given its globally unique \`ID\`.\\"\\"\\" node( - # The globally unique \`ID\`. + \\"\\"\\"The globally unique \`ID\`.\\"\\"\\" id: ID! ): Node dummyConnection(first: Int, after: Cursor, sortBy: DummyConnectionSortBy): DummyConnection diff --git a/packages/graphile-build/__tests__/__snapshots__/watch.test.js.snap b/packages/graphile-build/__tests__/__snapshots__/watch.test.js.snap index ad199b1cd..681942ca8 100644 --- a/packages/graphile-build/__tests__/__snapshots__/watch.test.js.snap +++ b/packages/graphile-build/__tests__/__snapshots__/watch.test.js.snap @@ -5,24 +5,30 @@ exports[`generated schema n = 0, n = 3 1`] = ` n: Int! } -# An object with a globally unique \`ID\`. +\\"\\"\\"An object with a globally unique \`ID\`.\\"\\"\\" interface Node { - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" id: ID! } -# The root query type which gives access points into the data universe. +\\"\\"\\"The root query type which gives access points into the data universe.\\"\\"\\" type Query implements Node { - # Exposes the root query type nested one level down. This is helpful for Relay 1 - # which can only query top level fields if they are in a particular form. + \\"\\"\\" + Exposes the root query type nested one level down. This is helpful for Relay 1 + which can only query top level fields if they are in a particular form. + \\"\\"\\" query: Query! - # The root query type must be a \`Node\` to work well with Relay 1 mutations. This just resolves to \`query\`. + \\"\\"\\" + The root query type must be a \`Node\` to work well with Relay 1 mutations. This just resolves to \`query\`. + \\"\\"\\" id: ID! - # Fetches an object given its globally unique \`ID\`. + \\"\\"\\"Fetches an object given its globally unique \`ID\`.\\"\\"\\" node( - # The globally unique \`ID\`. + \\"\\"\\"The globally unique \`ID\`.\\"\\"\\" id: ID! ): Node dummy: Dummy0 @@ -35,24 +41,30 @@ exports[`generated schema n = 0, n = 3 2`] = ` n: Int! } -# An object with a globally unique \`ID\`. +\\"\\"\\"An object with a globally unique \`ID\`.\\"\\"\\" interface Node { - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" id: ID! } -# The root query type which gives access points into the data universe. +\\"\\"\\"The root query type which gives access points into the data universe.\\"\\"\\" type Query implements Node { - # Exposes the root query type nested one level down. This is helpful for Relay 1 - # which can only query top level fields if they are in a particular form. + \\"\\"\\" + Exposes the root query type nested one level down. This is helpful for Relay 1 + which can only query top level fields if they are in a particular form. + \\"\\"\\" query: Query! - # The root query type must be a \`Node\` to work well with Relay 1 mutations. This just resolves to \`query\`. + \\"\\"\\" + The root query type must be a \`Node\` to work well with Relay 1 mutations. This just resolves to \`query\`. + \\"\\"\\" id: ID! - # Fetches an object given its globally unique \`ID\`. + \\"\\"\\"Fetches an object given its globally unique \`ID\`.\\"\\"\\" node( - # The globally unique \`ID\`. + \\"\\"\\"The globally unique \`ID\`.\\"\\"\\" id: ID! ): Node dummy: Dummy3 diff --git a/packages/graphile-build/__tests__/emptyMutation.test.js b/packages/graphile-build/__tests__/emptyMutation.test.js new file mode 100644 index 000000000..a48f47fbd --- /dev/null +++ b/packages/graphile-build/__tests__/emptyMutation.test.js @@ -0,0 +1,7 @@ +const { printSchema } = require("graphql/utilities"); +const { buildSchema, defaultPlugins } = require("../"); + +test("generates empty schema (with no Mutation type)", async () => { + const schema = await buildSchema([...defaultPlugins]); + expect(printSchema(schema)).toMatchSnapshot(); +}); diff --git a/packages/graphile-build/__tests__/fieldData.test.js b/packages/graphile-build/__tests__/fieldData.test.js index a9f19a623..248eaf65c 100644 --- a/packages/graphile-build/__tests__/fieldData.test.js +++ b/packages/graphile-build/__tests__/fieldData.test.js @@ -8,7 +8,7 @@ const { GraphQLList, } = require("graphql"); const { printSchema } = require("graphql/utilities"); -const { buildSchema, defaultPlugins, MutationPlugin } = require("../"); +const { buildSchema, defaultPlugins } = require("../"); const base64 = str => new Buffer(String(str)).toString("base64"); const base64Decode = str => new Buffer(String(str), "base64").toString("utf8"); @@ -267,11 +267,10 @@ const DummyConnectionPlugin = async builder => { } const ret = result.map(entry => { const idx = dummyData.indexOf(entry); - return (resolveData.map || []) - .reduce( - (memo, map) => Object.assign(memo, map(entry, idx)), - {} - ); + return (resolveData.map || []).reduce( + (memo, map) => Object.assign(memo, map(entry, idx)), + {} + ); }); return ret; }, @@ -293,21 +292,23 @@ test("no arguments", async () => { const schema = await buildSchema([...defaultPlugins, DummyConnectionPlugin]); const result = await graphql( schema, - `query { - dummyConnection { - edges { - cursor - node { + ` + query { + dummyConnection { + edges { + cursor + node { + id + caps + } + } + nodes { id caps } } - nodes { - id - caps - } } - }` + ` ); if (result.errors) { console.log(result.errors.map(e => e.originalError)); @@ -319,9 +320,9 @@ test("no arguments", async () => { "baz", "qux", ]); - expect( - result.data.dummyConnection.edges.map(({ cursor }) => cursor) - ).toEqual(["0", "1", "2", "3"]); + expect(result.data.dummyConnection.edges.map(({ cursor }) => cursor)).toEqual( + ["0", "1", "2", "3"] + ); expect(result).toMatchSnapshot(); }); @@ -329,21 +330,23 @@ test("sort", async () => { const schema = await buildSchema([...defaultPlugins, DummyConnectionPlugin]); const result = await graphql( schema, - `query { - dummyConnection(sortBy: ID_ASC) { - edges { - cursor - node { + ` + query { + dummyConnection(sortBy: ID_ASC) { + edges { + cursor + node { + id + caps + } + } + nodes { id caps } } - nodes { - id - caps - } } - }` + ` ); if (result.errors) { console.log(result.errors.map(e => e.originalError)); @@ -367,29 +370,31 @@ test("after", async () => { const schema = await buildSchema([...defaultPlugins, DummyConnectionPlugin]); const result = await graphql( schema, - `query { - dummyConnection(after: "1") { - edges { - cursor - node { + ` + query { + dummyConnection(after: "1") { + edges { + cursor + node { + id + caps + } + } + nodes { id caps } } - nodes { - id - caps - } } - }` + ` ); expect(result.data.dummyConnection.nodes.map(n => n.id)).toEqual([ "baz", "qux", ]); - expect( - result.data.dummyConnection.edges.map(({ cursor }) => cursor) - ).toEqual(["2", "3"]); + expect(result.data.dummyConnection.edges.map(({ cursor }) => cursor)).toEqual( + ["2", "3"] + ); expect(result).toMatchSnapshot(); }); @@ -397,21 +402,23 @@ test("sort, after", async () => { const schema = await buildSchema([...defaultPlugins, DummyConnectionPlugin]); const result = await graphql( schema, - `query { - dummyConnection(sortBy: ID_ASC, after: "WyJiYXoiXQ==") { - edges { - cursor - node { + ` + query { + dummyConnection(sortBy: ID_ASC, after: "WyJiYXoiXQ==") { + edges { + cursor + node { + id + caps + } + } + nodes { id caps } } - nodes { - id - caps - } } - }` + ` ); if (result.errors) { console.log(result.errors.map(e => e.originalError)); diff --git a/packages/graphile-build/index.js b/packages/graphile-build/index.js index 05e54a015..cc27daf63 100644 --- a/packages/graphile-build/index.js +++ b/packages/graphile-build/index.js @@ -1,13 +1,5 @@ -// @flow - // This script detects if you're running on Node v8 or above; if so it runs the // code directly, otherwise it falls back to the babel-compiled version -/*:: -// Trick flow into exporting the types -export type * from './node8plus'; -*/ - const isNode8Plus = process.versions.node.match(/^([89]|[1-9][0-9]+)\./); -// $FlowFixMe: ignore module.exports = isNode8Plus ? require("./node8plus") : require("./node7minus"); diff --git a/packages/graphile-build/package.json b/packages/graphile-build/package.json index 9a3e7e18a..fa084f516 100644 --- a/packages/graphile-build/package.json +++ b/packages/graphile-build/package.json @@ -40,7 +40,7 @@ "jest": "^20.0.4" }, "peerDependencies": { - "graphql": ">=0.9 <1" + "graphql": ">=0.9 <0.14" }, "jest": { "testRegex": "__tests__/.*\\.test\\.js$" diff --git a/packages/graphile-build/src/SchemaBuilder.js b/packages/graphile-build/src/SchemaBuilder.js index 1391e7dc6..bdf5303ee 100644 --- a/packages/graphile-build/src/SchemaBuilder.js +++ b/packages/graphile-build/src/SchemaBuilder.js @@ -41,58 +41,7 @@ export type DataForType = { export type Build = {| graphileBuildVersion: string, - graphql: { - GraphQLSchema: typeof graphql.GraphQLSchema, - GraphQLScalarType: typeof graphql.GraphQLScalarType, - GraphQLObjectType: typeof graphql.GraphQLObjectType, - GraphQLInterfaceType: typeof graphql.GraphQLInterfaceType, - GraphQLUnionType: typeof graphql.GraphQLUnionType, - GraphQLEnumType: typeof graphql.GraphQLEnumType, - GraphQLInputObjectType: typeof graphql.GraphQLInputObjectType, - GraphQLList: typeof graphql.GraphQLList, - GraphQLNonNull: typeof graphql.GraphQLNonNull, - GraphQLDirective: typeof graphql.GraphQLDirective, - TypeKind: typeof graphql.TypeKind, - DirectiveLocation: typeof graphql.DirectiveLocation, - GraphQLInt: typeof graphql.GraphQLInt, - GraphQLFloat: typeof graphql.GraphQLFloat, - GraphQLString: typeof graphql.GraphQLString, - GraphQLBoolean: typeof graphql.GraphQLBoolean, - GraphQLID: typeof graphql.GraphQLID, - specifiedDirectives: typeof graphql.specifiedDirectives, - GraphQLIncludeDirective: typeof graphql.GraphQLIncludeDirective, - GraphQLSkipDirective: typeof graphql.GraphQLSkipDirective, - GraphQLDeprecatedDirective: typeof graphql.GraphQLDeprecatedDirective, - DEFAULT_DEPRECATION_REASON: typeof graphql.DEFAULT_DEPRECATION_REASON, - SchemaMetaFieldDef: typeof graphql.SchemaMetaFieldDef, - TypeMetaFieldDef: typeof graphql.TypeMetaFieldDef, - TypeNameMetaFieldDef: typeof graphql.TypeNameMetaFieldDef, - __Schema: typeof graphql.__Schema, - __Directive: typeof graphql.__Directive, - __DirectiveLocation: typeof graphql.__DirectiveLocation, - __Type: typeof graphql.__Type, - __Field: typeof graphql.__Field, - __InputValue: typeof graphql.__InputValue, - __EnumValue: typeof graphql.__EnumValue, - __TypeKind: typeof graphql.__TypeKind, - isType: (type: mixed) => boolean, - isInputType: (type: GraphQLType) => boolean, - isOutputType: (type: GraphQLType) => boolean, - isLeafType: (type: GraphQLType) => boolean, - isCompositeType: (type: GraphQLType) => boolean, - isAbstractType: (type: GraphQLType) => boolean, - isNamedType: (type: GraphQLType) => boolean, - assertType: typeof graphql.assertType, - assertInputType: typeof graphql.assertInputType, - assertOutputType: typeof graphql.assertOutputType, - assertLeafType: typeof graphql.assertLeafType, - assertCompositeType: typeof graphql.assertCompositeType, - assertAbstractType: typeof graphql.assertAbstractType, - assertNamedType: typeof graphql.assertNamedType, - //getNullableType(type: ?T): ?(T & GraphQLNullableType), - getNullableType(type: ?T): mixed, - getNamedType: (type: GraphQLType) => GraphQLNamedType, - }, + graphql: *, parseResolveInfo: parseResolveInfo, simplifyParsedResolveInfoFragmentWithType: simplifyParsedResolveInfoFragmentWithType, getAliasFromResolveInfo: getAliasFromResolveInfo, @@ -147,12 +96,12 @@ type SupportedHookTypes = {} | Build | Array; export type Hook< Type: SupportedHookTypes, - BuildExtensions: {}, - ContextExtensions: {} + BuildExtensions: *, + ContextExtensions: * > = ( input: Type, - build: {| ...Build, ...BuildExtensions |}, - context: {| ...Context, ...ContextExtensions |} + build: { ...Build, ...BuildExtensions }, + context: { ...Context, ...ContextExtensions } ) => Type; export type WatchUnwatch = (triggerChange: TriggerChangeType) => void; @@ -261,7 +210,7 @@ class SchemaBuilder extends EventEmitter { } applyHooks( - build: Build, + build: { ...Build }, hookName: string, input: T, context: Context, @@ -323,9 +272,9 @@ class SchemaBuilder extends EventEmitter { this.unwatchers.push(unlisten); } - createBuild(): Build { - const initialBuild: Build = makeNewBuild(this); - const build: Build = this.applyHooks(initialBuild, "build", initialBuild, { + createBuild(): { ...Build } { + const initialBuild = makeNewBuild(this); + const build = this.applyHooks(initialBuild, "build", initialBuild, { scope: {}, }); // Bind all functions so they can be dereferenced diff --git a/packages/graphile-build/src/makeNewBuild.js b/packages/graphile-build/src/makeNewBuild.js index cb7d15041..004c88b1b 100644 --- a/packages/graphile-build/src/makeNewBuild.js +++ b/packages/graphile-build/src/makeNewBuild.js @@ -142,7 +142,7 @@ if (["development", "test"].indexOf(process.env.NODE_ENV) >= 0) { }; } -export default function makeNewBuild(builder: SchemaBuilder): Build { +export default function makeNewBuild(builder: SchemaBuilder): { ...Build } { const allTypes = {}; // Every object type gets fieldData associated with each of its @@ -195,7 +195,7 @@ export default function makeNewBuild(builder: SchemaBuilder): Build { if (!inScope) { // eslint-disable-next-line no-console console.warn( - `No scope was provided to new ${getNameFromType(Type)}[name=${ + `No scope was provided to new ${Type.name}[name=${ spec.name }], it's highly recommended that you add a scope so other hooks can easily reference your object - please check usage of 'newWithHooks'. To mute this message, just pass an empty object.` ); diff --git a/packages/graphile-build/src/plugins/MutationPlugin.js b/packages/graphile-build/src/plugins/MutationPlugin.js index 4da2bbfec..117b77d91 100644 --- a/packages/graphile-build/src/plugins/MutationPlugin.js +++ b/packages/graphile-build/src/plugins/MutationPlugin.js @@ -1,6 +1,20 @@ // @flow import type { Plugin } from "../SchemaBuilder"; +function isValidMutation(Mutation) { + try { + if (!Mutation) { + return false; + } + if (Object.keys(Mutation.getFields()).length === 0) { + return false; + } + } catch (e) { + return false; + } + return true; +} + export default (async function MutationPlugin(builder) { builder.hook( "GraphQLSchema", @@ -15,7 +29,7 @@ export default (async function MutationPlugin(builder) { { isRootMutation: true }, true ); - if (Mutation) { + if (isValidMutation(Mutation)) { return extend(schema, { mutation: Mutation, }); diff --git a/packages/graphql-parse-resolve-info/index.js b/packages/graphql-parse-resolve-info/index.js index 05e54a015..cc27daf63 100644 --- a/packages/graphql-parse-resolve-info/index.js +++ b/packages/graphql-parse-resolve-info/index.js @@ -1,13 +1,5 @@ -// @flow - // This script detects if you're running on Node v8 or above; if so it runs the // code directly, otherwise it falls back to the babel-compiled version -/*:: -// Trick flow into exporting the types -export type * from './node8plus'; -*/ - const isNode8Plus = process.versions.node.match(/^([89]|[1-9][0-9]+)\./); -// $FlowFixMe: ignore module.exports = isNode8Plus ? require("./node8plus") : require("./node7minus"); diff --git a/packages/graphql-parse-resolve-info/package.json b/packages/graphql-parse-resolve-info/package.json index 1ea3b93ff..73f8d840f 100644 --- a/packages/graphql-parse-resolve-info/package.json +++ b/packages/graphql-parse-resolve-info/package.json @@ -26,7 +26,7 @@ }, "homepage": "https://github.com/graphile/graphile-build#readme", "peerDependencies": { - "graphql": ">=0.9 <1" + "graphql": ">=0.9 <0.14" }, "devDependencies": { "babel-cli": "^6.24.1", diff --git a/packages/graphql-parse-resolve-info/src/index.js b/packages/graphql-parse-resolve-info/src/index.js index 060542d8b..7bd473565 100644 --- a/packages/graphql-parse-resolve-info/src/index.js +++ b/packages/graphql-parse-resolve-info/src/index.js @@ -67,7 +67,7 @@ export function parseResolveInfo( resolveInfo: GraphQLResolveInfo, options: { keepRoot?: boolean, deep?: boolean } = {} ): ResolveTree | FieldsByTypeName | null | void { - const fieldNodes: Array = + const fieldNodes: $ReadOnlyArray = resolveInfo.fieldNodes || resolveInfo.fieldASTs; const { parentType } = resolveInfo; @@ -121,7 +121,7 @@ function getFieldFromAST( let iNum = 1; function fieldTreeFromAST( - inASTs: Array | T, + inASTs: $ReadOnlyArray | T, resolveInfo: GraphQLResolveInfo, initTree: FieldsByTypeName = {}, options = {}, @@ -137,7 +137,7 @@ function fieldTreeFromAST( ); let { variableValues } = resolveInfo; const fragments = resolveInfo.fragments || {}; - const asts: Array = Array.isArray(inASTs) ? inASTs : [inASTs]; + const asts: $ReadOnlyArray = Array.isArray(inASTs) ? inASTs : [inASTs]; initTree[parentType.name] = initTree[parentType.name] || {}; const outerDepth = depth; return asts.reduce(function(tree, selectionVal: SelectionNode, idx) { diff --git a/packages/postgraphile-core/__tests__/integration/__snapshots__/schema.test.js.snap b/packages/postgraphile-core/__tests__/integration/__snapshots__/schema.test.js.snap index 07bca6eb5..e0fbe464f 100644 --- a/packages/postgraphile-core/__tests__/integration/__snapshots__/schema.test.js.snap +++ b/packages/postgraphile-core/__tests__/integration/__snapshots__/schema.test.js.snap @@ -22,9 +22,11 @@ exports[`prints a schema with Relay 1 style ids 1`] = ` REJECTED } -# A signed eight-byte integer. The upper big integer values are greater then the -# max value for a JavaScript number. Therefore all big integers will be output as -# strings and not numbers. +\\"\\"\\" +A signed eight-byte integer. The upper big integer values are greater then the +max value for a JavaScript number. Therefore all big integers will be output as +strings and not numbers. +\\"\\"\\" scalar BigInt enum Color { @@ -36,70 +38,78 @@ enum Color { type CompoundKey implements Node { extra: Boolean - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" id: ID! - # Reads a single \`Person\` that is related to this \`CompoundKey\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`CompoundKey\`.\\"\\"\\" personByPersonId1: Person - # Reads a single \`Person\` that is related to this \`CompoundKey\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`CompoundKey\`.\\"\\"\\" personByPersonId2: Person personId1: Int! personId2: Int! } -# A condition to be used against \`CompoundKey\` object types. All fields are tested -# for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`CompoundKey\` object types. All fields are tested +for equality and combined with a logical ‘and.’ +\\"\\"\\" input CompoundKeyCondition { - # Checks for equality with the object’s \`extra\` field. + \\"\\"\\"Checks for equality with the object’s \`extra\` field.\\"\\"\\" extra: Boolean - # Checks for equality with the object’s \`personId1\` field. + \\"\\"\\"Checks for equality with the object’s \`personId1\` field.\\"\\"\\" personId1: Int - # Checks for equality with the object’s \`personId2\` field. + \\"\\"\\"Checks for equality with the object’s \`personId2\` field.\\"\\"\\" personId2: Int } -# An input for mutations affecting \`CompoundKey\` +\\"\\"\\"An input for mutations affecting \`CompoundKey\`\\"\\"\\" input CompoundKeyInput { extra: Boolean personId1: Int! personId2: Int! } -# Represents an update to a \`CompoundKey\`. Fields that are set will be updated. +\\"\\"\\" +Represents an update to a \`CompoundKey\`. Fields that are set will be updated. +\\"\\"\\" input CompoundKeyPatch { extra: Boolean personId1: Int personId2: Int } -# A connection to a list of \`CompoundKey\` values. +\\"\\"\\"A connection to a list of \`CompoundKey\` values.\\"\\"\\" type CompoundKeysConnection { - # A list of edges which contains the \`CompoundKey\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`CompoundKey\` and cursor to aid in pagination. + \\"\\"\\" edges: [CompoundKeysEdge!]! - # A list of \`CompoundKey\` objects. + \\"\\"\\"A list of \`CompoundKey\` objects.\\"\\"\\" nodes: [CompoundKey]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`CompoundKey\` you could get from the connection. + \\"\\"\\"The count of *all* \`CompoundKey\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`CompoundKey\` edge in the connection. +\\"\\"\\"A \`CompoundKey\` edge in the connection.\\"\\"\\" type CompoundKeysEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`CompoundKey\` at the end of the edge. + \\"\\"\\"The \`CompoundKey\` at the end of the edge.\\"\\"\\" node: CompoundKey! } -# Methods to use when ordering \`CompoundKey\`. +\\"\\"\\"Methods to use when ordering \`CompoundKey\`.\\"\\"\\" enum CompoundKeysOrderBy { EXTRA_ASC EXTRA_DESC @@ -112,7 +122,7 @@ enum CompoundKeysOrderBy { PRIMARY_KEY_DESC } -# Awesome feature! +\\"\\"\\"Awesome feature!\\"\\"\\" type CompoundType { a: Int b: String @@ -124,27 +134,29 @@ type CompoundType { fooBar: Int } -# A connection to a list of \`CompoundType\` values. +\\"\\"\\"A connection to a list of \`CompoundType\` values.\\"\\"\\" type CompoundTypesConnection { - # A list of edges which contains the \`CompoundType\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`CompoundType\` and cursor to aid in pagination. + \\"\\"\\" edges: [CompoundTypesEdge!]! - # A list of \`CompoundType\` objects. + \\"\\"\\"A list of \`CompoundType\` objects.\\"\\"\\" nodes: [CompoundType]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`CompoundType\` you could get from the connection. + \\"\\"\\"The count of *all* \`CompoundType\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`CompoundType\` edge in the connection. +\\"\\"\\"A \`CompoundType\` edge in the connection.\\"\\"\\" type CompoundTypesEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`CompoundType\` at the end of the edge. + \\"\\"\\"The \`CompoundType\` at the end of the edge.\\"\\"\\" node: CompoundType! } @@ -153,194 +165,238 @@ type Comptype { schedule: Datetime } -# All input for the create \`CompoundKey\` mutation. +\\"\\"\\"All input for the create \`CompoundKey\` mutation.\\"\\"\\" input CreateCompoundKeyInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`CompoundKey\` to be created by this mutation. + \\"\\"\\"The \`CompoundKey\` to be created by this mutation.\\"\\"\\" compoundKey: CompoundKeyInput! } -# The output of our create \`CompoundKey\` mutation. +\\"\\"\\"The output of our create \`CompoundKey\` mutation.\\"\\"\\" type CreateCompoundKeyPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`CompoundKey\` that was created by this mutation. + \\"\\"\\"The \`CompoundKey\` that was created by this mutation.\\"\\"\\" compoundKey: CompoundKey - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" compoundKeyEdge( - # The method to use when ordering \`CompoundKey\`. + \\"\\"\\"The method to use when ordering \`CompoundKey\`.\\"\\"\\" orderBy: [CompoundKeysOrderBy!] = [PRIMARY_KEY_ASC] ): CompoundKeysEdge - # Reads a single \`Person\` that is related to this \`CompoundKey\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`CompoundKey\`.\\"\\"\\" personByPersonId1: Person - # Reads a single \`Person\` that is related to this \`CompoundKey\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`CompoundKey\`.\\"\\"\\" personByPersonId2: Person - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the create \`EdgeCase\` mutation. +\\"\\"\\"All input for the create \`EdgeCase\` mutation.\\"\\"\\" input CreateEdgeCaseInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`EdgeCase\` to be created by this mutation. + \\"\\"\\"The \`EdgeCase\` to be created by this mutation.\\"\\"\\" edgeCase: EdgeCaseInput! } -# The output of our create \`EdgeCase\` mutation. +\\"\\"\\"The output of our create \`EdgeCase\` mutation.\\"\\"\\" type CreateEdgeCasePayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`EdgeCase\` that was created by this mutation. + \\"\\"\\"The \`EdgeCase\` that was created by this mutation.\\"\\"\\" edgeCase: EdgeCase - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" edgeCaseEdge( - # The method to use when ordering \`EdgeCase\`. + \\"\\"\\"The method to use when ordering \`EdgeCase\`.\\"\\"\\" orderBy: [EdgeCasesOrderBy!] = [NATURAL] ): EdgeCasesEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the create \`Person\` mutation. +\\"\\"\\"All input for the create \`Person\` mutation.\\"\\"\\" input CreatePersonInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`Person\` to be created by this mutation. + \\"\\"\\"The \`Person\` to be created by this mutation.\\"\\"\\" person: PersonInput! } -# The output of our create \`Person\` mutation. +\\"\\"\\"The output of our create \`Person\` mutation.\\"\\"\\" type CreatePersonPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`Person\` that was created by this mutation. + \\"\\"\\"The \`Person\` that was created by this mutation.\\"\\"\\" person: Person - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" personEdge( - # The method to use when ordering \`Person\`. + \\"\\"\\"The method to use when ordering \`Person\`.\\"\\"\\" orderBy: [PeopleOrderBy!] = [PRIMARY_KEY_ASC] ): PeopleEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# A location in a connection that can be used for resuming pagination. +\\"\\"\\"A location in a connection that can be used for resuming pagination.\\"\\"\\" scalar Cursor -# A point in time as described by the [ISO -# 8601](https://en.wikipedia.org/wiki/ISO_8601) standard. May or may not include a timezone. +\\"\\"\\" +A point in time as described by the [ISO +8601](https://en.wikipedia.org/wiki/ISO_8601) standard. May or may not include a timezone. +\\"\\"\\" scalar Datetime -# All input for the \`deleteCompoundKeyByPersonId1AndPersonId2\` mutation. +\\"\\"\\" +All input for the \`deleteCompoundKeyByPersonId1AndPersonId2\` mutation. +\\"\\"\\" input DeleteCompoundKeyByPersonId1AndPersonId2Input { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String personId1: Int! personId2: Int! } -# All input for the \`deleteCompoundKey\` mutation. +\\"\\"\\"All input for the \`deleteCompoundKey\` mutation.\\"\\"\\" input DeleteCompoundKeyInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`CompoundKey\` to be deleted. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`CompoundKey\` to be deleted. + \\"\\"\\" id: ID! } -# The output of our delete \`CompoundKey\` mutation. +\\"\\"\\"The output of our delete \`CompoundKey\` mutation.\\"\\"\\" type DeleteCompoundKeyPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`CompoundKey\` that was deleted by this mutation. + \\"\\"\\"The \`CompoundKey\` that was deleted by this mutation.\\"\\"\\" compoundKey: CompoundKey - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" compoundKeyEdge( - # The method to use when ordering \`CompoundKey\`. + \\"\\"\\"The method to use when ordering \`CompoundKey\`.\\"\\"\\" orderBy: [CompoundKeysOrderBy!] = [PRIMARY_KEY_ASC] ): CompoundKeysEdge deletedCompoundKeyId: ID - # Reads a single \`Person\` that is related to this \`CompoundKey\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`CompoundKey\`.\\"\\"\\" personByPersonId1: Person - # Reads a single \`Person\` that is related to this \`CompoundKey\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`CompoundKey\`.\\"\\"\\" personByPersonId2: Person - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`deletePersonByEmail\` mutation. +\\"\\"\\"All input for the \`deletePersonByEmail\` mutation.\\"\\"\\" input DeletePersonByEmailInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String email: Email! } -# All input for the \`deletePersonByRowId\` mutation. +\\"\\"\\"All input for the \`deletePersonByRowId\` mutation.\\"\\"\\" input DeletePersonByRowIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String rowId: Int! } -# All input for the \`deletePerson\` mutation. +\\"\\"\\"All input for the \`deletePerson\` mutation.\\"\\"\\" input DeletePersonInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`Person\` to be deleted. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`Person\` to be deleted. + \\"\\"\\" id: ID! } -# The output of our delete \`Person\` mutation. +\\"\\"\\"The output of our delete \`Person\` mutation.\\"\\"\\" type DeletePersonPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String deletedPersonId: ID - # The \`Person\` that was deleted by this mutation. + \\"\\"\\"The \`Person\` that was deleted by this mutation.\\"\\"\\" person: Person - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" personEdge( - # The method to use when ordering \`Person\`. + \\"\\"\\"The method to use when ordering \`Person\`.\\"\\"\\" orderBy: [PeopleOrderBy!] = [PRIMARY_KEY_ASC] ): PeopleEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } @@ -351,51 +407,55 @@ type EdgeCase { wontCastEasy: Int } -# A condition to be used against \`EdgeCase\` object types. All fields are tested -# for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`EdgeCase\` object types. All fields are tested +for equality and combined with a logical ‘and.’ +\\"\\"\\" input EdgeCaseCondition { - # Checks for equality with the object’s \`notNullHasDefault\` field. + \\"\\"\\"Checks for equality with the object’s \`notNullHasDefault\` field.\\"\\"\\" notNullHasDefault: Boolean - # Checks for equality with the object’s \`rowId\` field. + \\"\\"\\"Checks for equality with the object’s \`rowId\` field.\\"\\"\\" rowId: Int - # Checks for equality with the object’s \`wontCastEasy\` field. + \\"\\"\\"Checks for equality with the object’s \`wontCastEasy\` field.\\"\\"\\" wontCastEasy: Int } -# An input for mutations affecting \`EdgeCase\` +\\"\\"\\"An input for mutations affecting \`EdgeCase\`\\"\\"\\" input EdgeCaseInput { notNullHasDefault: Boolean rowId: Int wontCastEasy: Int } -# A connection to a list of \`EdgeCase\` values. +\\"\\"\\"A connection to a list of \`EdgeCase\` values.\\"\\"\\" type EdgeCasesConnection { - # A list of edges which contains the \`EdgeCase\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`EdgeCase\` and cursor to aid in pagination. + \\"\\"\\" edges: [EdgeCasesEdge!]! - # A list of \`EdgeCase\` objects. + \\"\\"\\"A list of \`EdgeCase\` objects.\\"\\"\\" nodes: [EdgeCase]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`EdgeCase\` you could get from the connection. + \\"\\"\\"The count of *all* \`EdgeCase\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`EdgeCase\` edge in the connection. +\\"\\"\\"A \`EdgeCase\` edge in the connection.\\"\\"\\" type EdgeCasesEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`EdgeCase\` at the end of the edge. + \\"\\"\\"The \`EdgeCase\` at the end of the edge.\\"\\"\\" node: EdgeCase! } -# Methods to use when ordering \`EdgeCase\`. +\\"\\"\\"Methods to use when ordering \`EdgeCase\`.\\"\\"\\" enum EdgeCasesOrderBy { NATURAL NOT_NULL_HAS_DEFAULT_ASC @@ -421,329 +481,423 @@ enum EnumWithEmptyString { TWO } -# The value at one end of a range. A range can either include this value, or not. +\\"\\"\\" +The value at one end of a range. A range can either include this value, or not. +\\"\\"\\" input FloatRangeBoundInput { - # Whether or not the value of this bound is included in the range. + \\"\\"\\"Whether or not the value of this bound is included in the range.\\"\\"\\" inclusive: Boolean! - # The value at one end of our range. + \\"\\"\\"The value at one end of our range.\\"\\"\\" value: Float! } -# A range of \`Float\`. +\\"\\"\\"A range of \`Float\`.\\"\\"\\" input FloatRangeInput { - # The ending bound of our range. + \\"\\"\\"The ending bound of our range.\\"\\"\\" end: FloatRangeBoundInput - # The starting bound of our range. + \\"\\"\\"The starting bound of our range.\\"\\"\\" start: FloatRangeBoundInput } -# All input for the \`intSetMutation\` mutation. +\\"\\"\\"All input for the \`intSetMutation\` mutation.\\"\\"\\" input IntSetMutationInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String x: Int y: Int z: Int } -# The output of our \`intSetMutation\` mutation. +\\"\\"\\"The output of our \`intSetMutation\` mutation.\\"\\"\\" type IntSetMutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String integers: [Int] - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# A connection to a list of \`Int\` values. +\\"\\"\\"A connection to a list of \`Int\` values.\\"\\"\\" type IntSetQueryConnection { - # A list of edges which contains the \`Int\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`Int\` and cursor to aid in pagination. + \\"\\"\\" edges: [IntSetQueryEdge!]! - # A list of \`Int\` objects. + \\"\\"\\"A list of \`Int\` objects.\\"\\"\\" nodes: [Int]! } -# A \`Int\` edge in the connection. +\\"\\"\\"A \`Int\` edge in the connection.\\"\\"\\" type IntSetQueryEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`Int\` at the end of the edge. + \\"\\"\\"The \`Int\` at the end of the edge.\\"\\"\\" node: Int } -# A JavaScript object encoded in the JSON format as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). +\\"\\"\\" +A JavaScript object encoded in the JSON format as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). +\\"\\"\\" scalar JSON -# All input for the \`jsonbIdentityMutation\` mutation. +\\"\\"\\"All input for the \`jsonbIdentityMutation\` mutation.\\"\\"\\" input JsonbIdentityMutationInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String json: JSON } -# The output of our \`jsonbIdentityMutation\` mutation. +\\"\\"\\"The output of our \`jsonbIdentityMutation\` mutation.\\"\\"\\" type JsonbIdentityMutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String json: JSON - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`jsonbIdentityMutationPlpgsql\` mutation. +\\"\\"\\"All input for the \`jsonbIdentityMutationPlpgsql\` mutation.\\"\\"\\" input JsonbIdentityMutationPlpgsqlInput { _theJson: JSON! - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`jsonbIdentityMutationPlpgsql\` mutation. +\\"\\"\\"The output of our \`jsonbIdentityMutationPlpgsql\` mutation.\\"\\"\\" type JsonbIdentityMutationPlpgsqlPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String json: JSON - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`jsonbIdentityMutationPlpgsqlWithDefault\` mutation. +\\"\\"\\"All input for the \`jsonbIdentityMutationPlpgsqlWithDefault\` mutation.\\"\\"\\" input JsonbIdentityMutationPlpgsqlWithDefaultInput { _theJson: JSON - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`jsonbIdentityMutationPlpgsqlWithDefault\` mutation. +\\"\\"\\"The output of our \`jsonbIdentityMutationPlpgsqlWithDefault\` mutation.\\"\\"\\" type JsonbIdentityMutationPlpgsqlWithDefaultPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String json: JSON - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`jsonIdentityMutation\` mutation. +\\"\\"\\"All input for the \`jsonIdentityMutation\` mutation.\\"\\"\\" input JsonIdentityMutationInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String json: JSON } -# The output of our \`jsonIdentityMutation\` mutation. +\\"\\"\\"The output of our \`jsonIdentityMutation\` mutation.\\"\\"\\" type JsonIdentityMutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String json: JSON - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# The root mutation type which contains root level fields which mutate data. +\\"\\"\\" +The root mutation type which contains root level fields which mutate data. +\\"\\"\\" type Mutation { - # Creates a single \`CompoundKey\`. + \\"\\"\\"Creates a single \`CompoundKey\`.\\"\\"\\" createCompoundKey( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreateCompoundKeyInput! ): CreateCompoundKeyPayload - # Creates a single \`EdgeCase\`. + \\"\\"\\"Creates a single \`EdgeCase\`.\\"\\"\\" createEdgeCase( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreateEdgeCaseInput! ): CreateEdgeCasePayload - # Creates a single \`Person\`. + \\"\\"\\"Creates a single \`Person\`.\\"\\"\\" createPerson( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreatePersonInput! ): CreatePersonPayload - # Deletes a single \`CompoundKey\` using its globally unique id. + \\"\\"\\"Deletes a single \`CompoundKey\` using its globally unique id.\\"\\"\\" deleteCompoundKey( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteCompoundKeyInput! ): DeleteCompoundKeyPayload - # Deletes a single \`CompoundKey\` using a unique key. + \\"\\"\\"Deletes a single \`CompoundKey\` using a unique key.\\"\\"\\" deleteCompoundKeyByPersonId1AndPersonId2( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteCompoundKeyByPersonId1AndPersonId2Input! ): DeleteCompoundKeyPayload - # Deletes a single \`Person\` using its globally unique id. + \\"\\"\\"Deletes a single \`Person\` using its globally unique id.\\"\\"\\" deletePerson( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeletePersonInput! ): DeletePersonPayload - # Deletes a single \`Person\` using a unique key. + \\"\\"\\"Deletes a single \`Person\` using a unique key.\\"\\"\\" deletePersonByEmail( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeletePersonByEmailInput! ): DeletePersonPayload - # Deletes a single \`Person\` using a unique key. + \\"\\"\\"Deletes a single \`Person\` using a unique key.\\"\\"\\" deletePersonByRowId( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeletePersonByRowIdInput! ): DeletePersonPayload intSetMutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: IntSetMutationInput! ): IntSetMutationPayload jsonIdentityMutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: JsonIdentityMutationInput! ): JsonIdentityMutationPayload jsonbIdentityMutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: JsonbIdentityMutationInput! ): JsonbIdentityMutationPayload jsonbIdentityMutationPlpgsql( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: JsonbIdentityMutationPlpgsqlInput! ): JsonbIdentityMutationPlpgsqlPayload jsonbIdentityMutationPlpgsqlWithDefault( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: JsonbIdentityMutationPlpgsqlWithDefaultInput! ): JsonbIdentityMutationPlpgsqlWithDefaultPayload noArgsMutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: NoArgsMutationInput! ): NoArgsMutationPayload tableMutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: TableMutationInput! ): TableMutationPayload - # Reads and enables pagination through a set of \`Person\`. + \\"\\"\\"Reads and enables pagination through a set of \`Person\`.\\"\\"\\" tableSetMutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: TableSetMutationInput! ): TableSetMutationPayload typesMutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: TypesMutationInput! ): TypesMutationPayload - # Updates a single \`CompoundKey\` using its globally unique id and a patch. + \\"\\"\\" + Updates a single \`CompoundKey\` using its globally unique id and a patch. + \\"\\"\\" updateCompoundKey( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateCompoundKeyInput! ): UpdateCompoundKeyPayload - # Updates a single \`CompoundKey\` using a unique key and a patch. + \\"\\"\\"Updates a single \`CompoundKey\` using a unique key and a patch.\\"\\"\\" updateCompoundKeyByPersonId1AndPersonId2( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateCompoundKeyByPersonId1AndPersonId2Input! ): UpdateCompoundKeyPayload - # Updates a single \`Person\` using its globally unique id and a patch. + \\"\\"\\"Updates a single \`Person\` using its globally unique id and a patch.\\"\\"\\" updatePerson( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdatePersonInput! ): UpdatePersonPayload - # Updates a single \`Person\` using a unique key and a patch. + \\"\\"\\"Updates a single \`Person\` using a unique key and a patch.\\"\\"\\" updatePersonByEmail( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdatePersonByEmailInput! ): UpdatePersonPayload - # Updates a single \`Person\` using a unique key and a patch. + \\"\\"\\"Updates a single \`Person\` using a unique key and a patch.\\"\\"\\" updatePersonByRowId( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdatePersonByRowIdInput! ): UpdatePersonPayload } -# All input for the \`noArgsMutation\` mutation. +\\"\\"\\"All input for the \`noArgsMutation\` mutation.\\"\\"\\" input NoArgsMutationInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`noArgsMutation\` mutation. +\\"\\"\\"The output of our \`noArgsMutation\` mutation.\\"\\"\\" type NoArgsMutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String integer: Int - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# An object with a globally unique \`ID\`. +\\"\\"\\"An object with a globally unique \`ID\`.\\"\\"\\" interface Node { - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" id: ID! } scalar NotNullUrl -# Information about pagination in a connection. +\\"\\"\\"Information about pagination in a connection.\\"\\"\\" type PageInfo { - # When paginating forwards, the cursor to continue. + \\"\\"\\"When paginating forwards, the cursor to continue.\\"\\"\\" endCursor: Cursor - # When paginating forwards, are there more items? + \\"\\"\\"When paginating forwards, are there more items?\\"\\"\\" hasNextPage: Boolean! - # When paginating backwards, are there more items? + \\"\\"\\"When paginating backwards, are there more items?\\"\\"\\" hasPreviousPage: Boolean! - # When paginating backwards, the cursor to continue. + \\"\\"\\"When paginating backwards, the cursor to continue.\\"\\"\\" startCursor: Cursor } -# A connection to a list of \`Person\` values. +\\"\\"\\"A connection to a list of \`Person\` values.\\"\\"\\" type PeopleConnection { - # A list of edges which contains the \`Person\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`Person\` and cursor to aid in pagination. + \\"\\"\\" edges: [PeopleEdge!]! - # A list of \`Person\` objects. + \\"\\"\\"A list of \`Person\` objects.\\"\\"\\" nodes: [Person]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`Person\` you could get from the connection. + \\"\\"\\"The count of *all* \`Person\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`Person\` edge in the connection. +\\"\\"\\"A \`Person\` edge in the connection.\\"\\"\\" type PeopleEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`Person\` at the end of the edge. + \\"\\"\\"The \`Person\` at the end of the edge.\\"\\"\\" node: Person! } -# Methods to use when ordering \`Person\`. +\\"\\"\\"Methods to use when ordering \`Person\`.\\"\\"\\" enum PeopleOrderBy { ABOUT_ASC ABOUT_DESC @@ -764,58 +918,66 @@ enum PeopleOrderBy { SITE_DESC } -# Person test comment +\\"\\"\\"Person test comment\\"\\"\\" type Person implements Node { about: String aliases: [String]! - # Reads and enables pagination through a set of \`CompoundKey\`. + \\"\\"\\"Reads and enables pagination through a set of \`CompoundKey\`.\\"\\"\\" compoundKeysByPersonId1( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: CompoundKeyCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`CompoundKey\`. + \\"\\"\\"The method to use when ordering \`CompoundKey\`.\\"\\"\\" orderBy: [CompoundKeysOrderBy!] = [PRIMARY_KEY_ASC] ): CompoundKeysConnection! - # Reads and enables pagination through a set of \`CompoundKey\`. + \\"\\"\\"Reads and enables pagination through a set of \`CompoundKey\`.\\"\\"\\" compoundKeysByPersonId2( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: CompoundKeyCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`CompoundKey\`. + \\"\\"\\"The method to use when ordering \`CompoundKey\`.\\"\\"\\" orderBy: [CompoundKeysOrderBy!] = [PRIMARY_KEY_ASC] ): CompoundKeysConnection! createdAt: Datetime @@ -824,79 +986,87 @@ type Person implements Node { firstName: String firstPost: Post - # Reads and enables pagination through a set of \`Person\`. + \\"\\"\\"Reads and enables pagination through a set of \`Person\`.\\"\\"\\" friends( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int ): PeopleConnection! - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" id: ID! - # The person’s name + \\"\\"\\"The person’s name\\"\\"\\" name: String! rowId: Int! site: WrappedUrl @deprecated(reason: \\"Don’t use me\\") } -# A condition to be used against \`Person\` object types. All fields are tested for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`Person\` object types. All fields are tested for equality and combined with a logical ‘and.’ +\\"\\"\\" input PersonCondition { - # Checks for equality with the object’s \`about\` field. + \\"\\"\\"Checks for equality with the object’s \`about\` field.\\"\\"\\" about: String - # Checks for equality with the object’s \`aliases\` field. + \\"\\"\\"Checks for equality with the object’s \`aliases\` field.\\"\\"\\" aliases: [String] - # Checks for equality with the object’s \`createdAt\` field. + \\"\\"\\"Checks for equality with the object’s \`createdAt\` field.\\"\\"\\" createdAt: Datetime - # Checks for equality with the object’s \`email\` field. + \\"\\"\\"Checks for equality with the object’s \`email\` field.\\"\\"\\" email: Email - # Checks for equality with the object’s \`name\` field. + \\"\\"\\"Checks for equality with the object’s \`name\` field.\\"\\"\\" name: String - # Checks for equality with the object’s \`rowId\` field. + \\"\\"\\"Checks for equality with the object’s \`rowId\` field.\\"\\"\\" rowId: Int - # Checks for equality with the object’s \`site\` field. + \\"\\"\\"Checks for equality with the object’s \`site\` field.\\"\\"\\" site: WrappedUrlInput } -# An input for mutations affecting \`Person\` +\\"\\"\\"An input for mutations affecting \`Person\`\\"\\"\\" input PersonInput { about: String aliases: [String] createdAt: Datetime email: Email! - # The person’s name + \\"\\"\\"The person’s name\\"\\"\\" name: String! rowId: Int site: WrappedUrlInput } -# Represents an update to a \`Person\`. Fields that are set will be updated. +\\"\\"\\" +Represents an update to a \`Person\`. Fields that are set will be updated. +\\"\\"\\" input PersonPatch { about: String aliases: [String] createdAt: Datetime email: Email - # The person’s name + \\"\\"\\"The person’s name\\"\\"\\" name: String rowId: Int site: WrappedUrlInput @@ -911,126 +1081,146 @@ type Post { rowId: Int! } -# The root query type which gives access points into the data universe. +\\"\\"\\"The root query type which gives access points into the data universe.\\"\\"\\" type Query implements Node { - # Reads and enables pagination through a set of \`CompoundKey\`. + \\"\\"\\"Reads and enables pagination through a set of \`CompoundKey\`.\\"\\"\\" allCompoundKeys( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: CompoundKeyCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`CompoundKey\`. + \\"\\"\\"The method to use when ordering \`CompoundKey\`.\\"\\"\\" orderBy: [CompoundKeysOrderBy!] = [PRIMARY_KEY_ASC] ): CompoundKeysConnection - # Reads and enables pagination through a set of \`EdgeCase\`. + \\"\\"\\"Reads and enables pagination through a set of \`EdgeCase\`.\\"\\"\\" allEdgeCases( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: EdgeCaseCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`EdgeCase\`. + \\"\\"\\"The method to use when ordering \`EdgeCase\`.\\"\\"\\" orderBy: [EdgeCasesOrderBy!] = [NATURAL] ): EdgeCasesConnection - # Reads and enables pagination through a set of \`Person\`. + \\"\\"\\"Reads and enables pagination through a set of \`Person\`.\\"\\"\\" allPeople( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: PersonCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`Person\`. + \\"\\"\\"The method to use when ordering \`Person\`.\\"\\"\\" orderBy: [PeopleOrderBy!] = [PRIMARY_KEY_ASC] ): PeopleConnection - # Reads a single \`CompoundKey\` using its globally unique \`ID\`. + \\"\\"\\"Reads a single \`CompoundKey\` using its globally unique \`ID\`.\\"\\"\\" compoundKey( - # The globally unique \`ID\` to be used in selecting a single \`CompoundKey\`. + \\"\\"\\" + The globally unique \`ID\` to be used in selecting a single \`CompoundKey\`. + \\"\\"\\" id: ID! ): CompoundKey compoundKeyByPersonId1AndPersonId2(personId1: Int!, personId2: Int!): CompoundKey - # Reads and enables pagination through a set of \`CompoundType\`. + \\"\\"\\"Reads and enables pagination through a set of \`CompoundType\`.\\"\\"\\" compoundTypeSetQuery( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int ): CompoundTypesConnection! - # The root query type must be a \`Node\` to work well with Relay 1 mutations. This just resolves to \`query\`. + \\"\\"\\" + The root query type must be a \`Node\` to work well with Relay 1 mutations. This just resolves to \`query\`. + \\"\\"\\" id: ID! intSetQuery( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int x: Int y: Int @@ -1040,227 +1230,285 @@ type Query implements Node { jsonbIdentity(json: JSON): JSON noArgsQuery: Int - # Fetches an object given its globally unique \`ID\`. + \\"\\"\\"Fetches an object given its globally unique \`ID\`.\\"\\"\\" node( - # The globally unique \`ID\`. + \\"\\"\\"The globally unique \`ID\`.\\"\\"\\" id: ID! ): Node - # Reads a single \`Person\` using its globally unique \`ID\`. + \\"\\"\\"Reads a single \`Person\` using its globally unique \`ID\`.\\"\\"\\" person( - # The globally unique \`ID\` to be used in selecting a single \`Person\`. + \\"\\"\\"The globally unique \`ID\` to be used in selecting a single \`Person\`.\\"\\"\\" id: ID! ): Person personByEmail(email: Email!): Person personByRowId(rowId: Int!): Person - # Exposes the root query type nested one level down. This is helpful for Relay 1 - # which can only query top level fields if they are in a particular form. + \\"\\"\\" + Exposes the root query type nested one level down. This is helpful for Relay 1 + which can only query top level fields if they are in a particular form. + \\"\\"\\" query: Query! tableQuery(id: Int): Post - # Reads and enables pagination through a set of \`Person\`. + \\"\\"\\"Reads and enables pagination through a set of \`Person\`.\\"\\"\\" tableSetQuery( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int ): PeopleConnection! typesQuery(a: BigInt!, b: Boolean!, c: String!, d: [Int]!, e: JSON!, f: FloatRangeInput!): Boolean } -# All input for the \`tableMutation\` mutation. +\\"\\"\\"All input for the \`tableMutation\` mutation.\\"\\"\\" input TableMutationInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int } -# The output of our \`tableMutation\` mutation. +\\"\\"\\"The output of our \`tableMutation\` mutation.\\"\\"\\" type TableMutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String post: Post - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`tableSetMutation\` mutation. +\\"\\"\\"All input for the \`tableSetMutation\` mutation.\\"\\"\\" input TableSetMutationInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`tableSetMutation\` mutation. +\\"\\"\\"The output of our \`tableSetMutation\` mutation.\\"\\"\\" type TableSetMutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String people: [Person] - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" personEdge( - # The method to use when ordering \`Person\`. + \\"\\"\\"The method to use when ordering \`Person\`.\\"\\"\\" orderBy: [PeopleOrderBy!] = [PRIMARY_KEY_ASC] ): PeopleEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`typesMutation\` mutation. +\\"\\"\\"All input for the \`typesMutation\` mutation.\\"\\"\\" input TypesMutationInput { a: BigInt! b: Boolean! c: String! - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String d: [Int]! e: JSON! f: FloatRangeInput! } -# The output of our \`typesMutation\` mutation. +\\"\\"\\"The output of our \`typesMutation\` mutation.\\"\\"\\" type TypesMutationPayload { boolean: Boolean - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`updateCompoundKeyByPersonId1AndPersonId2\` mutation. +\\"\\"\\" +All input for the \`updateCompoundKeyByPersonId1AndPersonId2\` mutation. +\\"\\"\\" input UpdateCompoundKeyByPersonId1AndPersonId2Input { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # An object where the defined keys will be set on the \`CompoundKey\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`CompoundKey\` being updated. + \\"\\"\\" compoundKeyPatch: CompoundKeyPatch! personId1: Int! personId2: Int! } -# All input for the \`updateCompoundKey\` mutation. +\\"\\"\\"All input for the \`updateCompoundKey\` mutation.\\"\\"\\" input UpdateCompoundKeyInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # An object where the defined keys will be set on the \`CompoundKey\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`CompoundKey\` being updated. + \\"\\"\\" compoundKeyPatch: CompoundKeyPatch! - # The globally unique \`ID\` which will identify a single \`CompoundKey\` to be updated. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`CompoundKey\` to be updated. + \\"\\"\\" id: ID! } -# The output of our update \`CompoundKey\` mutation. +\\"\\"\\"The output of our update \`CompoundKey\` mutation.\\"\\"\\" type UpdateCompoundKeyPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`CompoundKey\` that was updated by this mutation. + \\"\\"\\"The \`CompoundKey\` that was updated by this mutation.\\"\\"\\" compoundKey: CompoundKey - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" compoundKeyEdge( - # The method to use when ordering \`CompoundKey\`. + \\"\\"\\"The method to use when ordering \`CompoundKey\`.\\"\\"\\" orderBy: [CompoundKeysOrderBy!] = [PRIMARY_KEY_ASC] ): CompoundKeysEdge - # Reads a single \`Person\` that is related to this \`CompoundKey\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`CompoundKey\`.\\"\\"\\" personByPersonId1: Person - # Reads a single \`Person\` that is related to this \`CompoundKey\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`CompoundKey\`.\\"\\"\\" personByPersonId2: Person - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`updatePersonByEmail\` mutation. +\\"\\"\\"All input for the \`updatePersonByEmail\` mutation.\\"\\"\\" input UpdatePersonByEmailInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String email: Email! - # An object where the defined keys will be set on the \`Person\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`Person\` being updated. + \\"\\"\\" personPatch: PersonPatch! } -# All input for the \`updatePersonByRowId\` mutation. +\\"\\"\\"All input for the \`updatePersonByRowId\` mutation.\\"\\"\\" input UpdatePersonByRowIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # An object where the defined keys will be set on the \`Person\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`Person\` being updated. + \\"\\"\\" personPatch: PersonPatch! rowId: Int! } -# All input for the \`updatePerson\` mutation. +\\"\\"\\"All input for the \`updatePerson\` mutation.\\"\\"\\" input UpdatePersonInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`Person\` to be updated. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`Person\` to be updated. + \\"\\"\\" id: ID! - # An object where the defined keys will be set on the \`Person\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`Person\` being updated. + \\"\\"\\" personPatch: PersonPatch! } -# The output of our update \`Person\` mutation. +\\"\\"\\"The output of our update \`Person\` mutation.\\"\\"\\" type UpdatePersonPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`Person\` that was updated by this mutation. + \\"\\"\\"The \`Person\` that was updated by this mutation.\\"\\"\\" person: Person - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" personEdge( - # The method to use when ordering \`Person\`. + \\"\\"\\"The method to use when ordering \`Person\`.\\"\\"\\" orderBy: [PeopleOrderBy!] = [PRIMARY_KEY_ASC] ): PeopleEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# A universally unique identifier as defined by [RFC 4122](https://tools.ietf.org/html/rfc4122). +\\"\\"\\" +A universally unique identifier as defined by [RFC 4122](https://tools.ietf.org/html/rfc4122). +\\"\\"\\" scalar UUID type WrappedUrl { url: NotNullUrl! } -# An input for mutations affecting \`WrappedUrl\` +\\"\\"\\"An input for mutations affecting \`WrappedUrl\`\\"\\"\\" input WrappedUrlInput { url: NotNullUrl! } @@ -1270,148 +1518,178 @@ input WrappedUrlInput { exports[`prints a schema with a JWT generating mutation 1`] = ` "scalar AnInt -# A range of \`AnInt\`. +\\"\\"\\"A range of \`AnInt\`.\\"\\"\\" type AnIntRange { - # The ending bound of our range. + \\"\\"\\"The ending bound of our range.\\"\\"\\" end: AnIntRangeBound - # The starting bound of our range. + \\"\\"\\"The starting bound of our range.\\"\\"\\" start: AnIntRangeBound } -# The value at one end of a range. A range can either include this value, or not. +\\"\\"\\" +The value at one end of a range. A range can either include this value, or not. +\\"\\"\\" type AnIntRangeBound { - # Whether or not the value of this bound is included in the range. + \\"\\"\\"Whether or not the value of this bound is included in the range.\\"\\"\\" inclusive: Boolean! - # The value at one end of our range. + \\"\\"\\"The value at one end of our range.\\"\\"\\" value: AnInt! } -# The value at one end of a range. A range can either include this value, or not. +\\"\\"\\" +The value at one end of a range. A range can either include this value, or not. +\\"\\"\\" input AnIntRangeBoundInput { - # Whether or not the value of this bound is included in the range. + \\"\\"\\"Whether or not the value of this bound is included in the range.\\"\\"\\" inclusive: Boolean! - # The value at one end of our range. + \\"\\"\\"The value at one end of our range.\\"\\"\\" value: AnInt! } -# A range of \`AnInt\`. +\\"\\"\\"A range of \`AnInt\`.\\"\\"\\" input AnIntRangeInput { - # The ending bound of our range. + \\"\\"\\"The ending bound of our range.\\"\\"\\" end: AnIntRangeBoundInput - # The starting bound of our range. + \\"\\"\\"The starting bound of our range.\\"\\"\\" start: AnIntRangeBoundInput } scalar AnotherInt -# All input for the \`authenticateFail\` mutation. +\\"\\"\\"All input for the \`authenticateFail\` mutation.\\"\\"\\" input AuthenticateFailInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`authenticateFail\` mutation. +\\"\\"\\"The output of our \`authenticateFail\` mutation.\\"\\"\\" type AuthenticateFailPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String jwtToken: JwtToken - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`authenticate\` mutation. +\\"\\"\\"All input for the \`authenticate\` mutation.\\"\\"\\" input AuthenticateInput { a: Int b: Int c: Int - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# All input for the \`authenticateMany\` mutation. +\\"\\"\\"All input for the \`authenticateMany\` mutation.\\"\\"\\" input AuthenticateManyInput { a: Int b: Int c: Int - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`authenticateMany\` mutation. +\\"\\"\\"The output of our \`authenticateMany\` mutation.\\"\\"\\" type AuthenticateManyPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String jwtTokens: [JwtToken] - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# The output of our \`authenticate\` mutation. +\\"\\"\\"The output of our \`authenticate\` mutation.\\"\\"\\" type AuthenticatePayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String jwtToken: JwtToken - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# A floating point number that requires more precision than IEEE 754 binary 64 +\\"\\"\\" +A floating point number that requires more precision than IEEE 754 binary 64 +\\"\\"\\" scalar BigFloat -# A range of \`BigFloat\`. +\\"\\"\\"A range of \`BigFloat\`.\\"\\"\\" type BigFloatRange { - # The ending bound of our range. + \\"\\"\\"The ending bound of our range.\\"\\"\\" end: BigFloatRangeBound - # The starting bound of our range. + \\"\\"\\"The starting bound of our range.\\"\\"\\" start: BigFloatRangeBound } -# The value at one end of a range. A range can either include this value, or not. +\\"\\"\\" +The value at one end of a range. A range can either include this value, or not. +\\"\\"\\" type BigFloatRangeBound { - # Whether or not the value of this bound is included in the range. + \\"\\"\\"Whether or not the value of this bound is included in the range.\\"\\"\\" inclusive: Boolean! - # The value at one end of our range. + \\"\\"\\"The value at one end of our range.\\"\\"\\" value: BigFloat! } -# The value at one end of a range. A range can either include this value, or not. +\\"\\"\\" +The value at one end of a range. A range can either include this value, or not. +\\"\\"\\" input BigFloatRangeBoundInput { - # Whether or not the value of this bound is included in the range. + \\"\\"\\"Whether or not the value of this bound is included in the range.\\"\\"\\" inclusive: Boolean! - # The value at one end of our range. + \\"\\"\\"The value at one end of our range.\\"\\"\\" value: BigFloat! } -# A range of \`BigFloat\`. +\\"\\"\\"A range of \`BigFloat\`.\\"\\"\\" input BigFloatRangeInput { - # The ending bound of our range. + \\"\\"\\"The ending bound of our range.\\"\\"\\" end: BigFloatRangeBoundInput - # The starting bound of our range. + \\"\\"\\"The starting bound of our range.\\"\\"\\" start: BigFloatRangeBoundInput } -# A signed eight-byte integer. The upper big integer values are greater then the -# max value for a JavaScript number. Therefore all big integers will be output as -# strings and not numbers. +\\"\\"\\" +A signed eight-byte integer. The upper big integer values are greater then the +max value for a JavaScript number. Therefore all big integers will be output as +strings and not numbers. +\\"\\"\\" scalar BigInt enum Color { @@ -1420,7 +1698,7 @@ enum Color { RED } -# Awesome feature! +\\"\\"\\"Awesome feature!\\"\\"\\" type CompoundType { a: Int b: String @@ -1431,7 +1709,7 @@ type CompoundType { fooBar: Int } -# An input for mutations affecting \`CompoundType\` +\\"\\"\\"An input for mutations affecting \`CompoundType\`\\"\\"\\" input CompoundTypeInput { a: Int b: String @@ -1442,163 +1720,197 @@ input CompoundTypeInput { fooBar: Int } -# All input for the \`compoundTypeMutation\` mutation. +\\"\\"\\"All input for the \`compoundTypeMutation\` mutation.\\"\\"\\" input CompoundTypeMutationInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String object: CompoundTypeInput } -# The output of our \`compoundTypeMutation\` mutation. +\\"\\"\\"The output of our \`compoundTypeMutation\` mutation.\\"\\"\\" type CompoundTypeMutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String compoundType: CompoundType - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the create \`Type\` mutation. +\\"\\"\\"All input for the create \`Type\` mutation.\\"\\"\\" input CreateTypeInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`Type\` to be created by this mutation. + \\"\\"\\"The \`Type\` to be created by this mutation.\\"\\"\\" type: TypeInput! } -# The output of our create \`Type\` mutation. +\\"\\"\\"The output of our create \`Type\` mutation.\\"\\"\\" type CreateTypePayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`Type\` that was created by this mutation. + \\"\\"\\"The \`Type\` that was created by this mutation.\\"\\"\\" type: Type - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" typeEdge( - # The method to use when ordering \`Type\`. + \\"\\"\\"The method to use when ordering \`Type\`.\\"\\"\\" orderBy: [TypesOrderBy!] = [PRIMARY_KEY_ASC] ): TypesEdge } -# All input for the create \`UpdatableView\` mutation. +\\"\\"\\"All input for the create \`UpdatableView\` mutation.\\"\\"\\" input CreateUpdatableViewInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`UpdatableView\` to be created by this mutation. + \\"\\"\\"The \`UpdatableView\` to be created by this mutation.\\"\\"\\" updatableView: UpdatableViewInput! } -# The output of our create \`UpdatableView\` mutation. +\\"\\"\\"The output of our create \`UpdatableView\` mutation.\\"\\"\\" type CreateUpdatableViewPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`UpdatableView\` that was created by this mutation. + \\"\\"\\"The \`UpdatableView\` that was created by this mutation.\\"\\"\\" updatableView: UpdatableView - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" updatableViewEdge( - # The method to use when ordering \`UpdatableView\`. + \\"\\"\\"The method to use when ordering \`UpdatableView\`.\\"\\"\\" orderBy: [UpdatableViewsOrderBy!] = [NATURAL] ): UpdatableViewsEdge } -# A location in a connection that can be used for resuming pagination. +\\"\\"\\"A location in a connection that can be used for resuming pagination.\\"\\"\\" scalar Cursor -# The day, does not include a time. +\\"\\"\\"The day, does not include a time.\\"\\"\\" scalar Date -# A range of \`Date\`. +\\"\\"\\"A range of \`Date\`.\\"\\"\\" type DateRange { - # The ending bound of our range. + \\"\\"\\"The ending bound of our range.\\"\\"\\" end: DateRangeBound - # The starting bound of our range. + \\"\\"\\"The starting bound of our range.\\"\\"\\" start: DateRangeBound } -# The value at one end of a range. A range can either include this value, or not. +\\"\\"\\" +The value at one end of a range. A range can either include this value, or not. +\\"\\"\\" type DateRangeBound { - # Whether or not the value of this bound is included in the range. + \\"\\"\\"Whether or not the value of this bound is included in the range.\\"\\"\\" inclusive: Boolean! - # The value at one end of our range. + \\"\\"\\"The value at one end of our range.\\"\\"\\" value: Date! } -# The value at one end of a range. A range can either include this value, or not. +\\"\\"\\" +The value at one end of a range. A range can either include this value, or not. +\\"\\"\\" input DateRangeBoundInput { - # Whether or not the value of this bound is included in the range. + \\"\\"\\"Whether or not the value of this bound is included in the range.\\"\\"\\" inclusive: Boolean! - # The value at one end of our range. + \\"\\"\\"The value at one end of our range.\\"\\"\\" value: Date! } -# A range of \`Date\`. +\\"\\"\\"A range of \`Date\`.\\"\\"\\" input DateRangeInput { - # The ending bound of our range. + \\"\\"\\"The ending bound of our range.\\"\\"\\" end: DateRangeBoundInput - # The starting bound of our range. + \\"\\"\\"The starting bound of our range.\\"\\"\\" start: DateRangeBoundInput } -# A point in time as described by the [ISO -# 8601](https://en.wikipedia.org/wiki/ISO_8601) standard. May or may not include a timezone. +\\"\\"\\" +A point in time as described by the [ISO +8601](https://en.wikipedia.org/wiki/ISO_8601) standard. May or may not include a timezone. +\\"\\"\\" scalar Datetime -# All input for the \`deleteTypeById\` mutation. +\\"\\"\\"All input for the \`deleteTypeById\` mutation.\\"\\"\\" input DeleteTypeByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! } -# All input for the \`deleteType\` mutation. +\\"\\"\\"All input for the \`deleteType\` mutation.\\"\\"\\" input DeleteTypeInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`Type\` to be deleted. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`Type\` to be deleted. + \\"\\"\\" nodeId: ID! } -# The output of our delete \`Type\` mutation. +\\"\\"\\"The output of our delete \`Type\` mutation.\\"\\"\\" type DeleteTypePayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String deletedTypeId: ID - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`Type\` that was deleted by this mutation. + \\"\\"\\"The \`Type\` that was deleted by this mutation.\\"\\"\\" type: Type - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" typeEdge( - # The method to use when ordering \`Type\`. + \\"\\"\\"The method to use when ordering \`Type\`.\\"\\"\\" orderBy: [TypesOrderBy!] = [PRIMARY_KEY_ASC] ): TypesEdge } @@ -1618,234 +1930,308 @@ enum EnumWithEmptyString { scalar Guid -# All input for the \`guidFn\` mutation. +\\"\\"\\"All input for the \`guidFn\` mutation.\\"\\"\\" input GuidFnInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String g: Guid } -# The output of our \`guidFn\` mutation. +\\"\\"\\"The output of our \`guidFn\` mutation.\\"\\"\\" type GuidFnPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String guid: Guid - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# An interval of time that has passed where the smallest distinct unit is a second. +\\"\\"\\" +An interval of time that has passed where the smallest distinct unit is a second. +\\"\\"\\" type Interval { - # A quantity of days. + \\"\\"\\"A quantity of days.\\"\\"\\" days: Int - # A quantity of hours. + \\"\\"\\"A quantity of hours.\\"\\"\\" hours: Int - # A quantity of minutes. + \\"\\"\\"A quantity of minutes.\\"\\"\\" minutes: Int - # A quantity of months. + \\"\\"\\"A quantity of months.\\"\\"\\" months: Int - # A quantity of seconds. This is the only non-integer field, as all the other - # fields will dump their overflow into a smaller unit of time. Intervals don’t - # have a smaller unit than seconds. + \\"\\"\\" + A quantity of seconds. This is the only non-integer field, as all the other + fields will dump their overflow into a smaller unit of time. Intervals don’t + have a smaller unit than seconds. + \\"\\"\\" seconds: Float - # A quantity of years. + \\"\\"\\"A quantity of years.\\"\\"\\" years: Int } -# An interval of time that has passed where the smallest distinct unit is a second. +\\"\\"\\" +An interval of time that has passed where the smallest distinct unit is a second. +\\"\\"\\" input IntervalInput { - # A quantity of days. + \\"\\"\\"A quantity of days.\\"\\"\\" days: Int - # A quantity of hours. + \\"\\"\\"A quantity of hours.\\"\\"\\" hours: Int - # A quantity of minutes. + \\"\\"\\"A quantity of minutes.\\"\\"\\" minutes: Int - # A quantity of months. + \\"\\"\\"A quantity of months.\\"\\"\\" months: Int - # A quantity of seconds. This is the only non-integer field, as all the other - # fields will dump their overflow into a smaller unit of time. Intervals don’t - # have a smaller unit than seconds. + \\"\\"\\" + A quantity of seconds. This is the only non-integer field, as all the other + fields will dump their overflow into a smaller unit of time. Intervals don’t + have a smaller unit than seconds. + \\"\\"\\" seconds: Float - # A quantity of years. + \\"\\"\\"A quantity of years.\\"\\"\\" years: Int } -# A JavaScript object encoded in the JSON format as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). +\\"\\"\\" +A JavaScript object encoded in the JSON format as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). +\\"\\"\\" scalar JSON -# A JSON Web Token defined by [RFC 7519](https://tools.ietf.org/html/rfc7519) -# which securely represents claims between two parties. +\\"\\"\\" +A JSON Web Token defined by [RFC 7519](https://tools.ietf.org/html/rfc7519) +which securely represents claims between two parties. +\\"\\"\\" scalar JwtToken -# All input for the \`mult1\` mutation. +\\"\\"\\"All input for the \`mult1\` mutation.\\"\\"\\" input Mult1Input { arg0: Int arg1: Int - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`mult1\` mutation. +\\"\\"\\"The output of our \`mult1\` mutation.\\"\\"\\" type Mult1Payload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String integer: Int - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`mult2\` mutation. +\\"\\"\\"All input for the \`mult2\` mutation.\\"\\"\\" input Mult2Input { arg0: Int arg1: Int - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`mult2\` mutation. +\\"\\"\\"The output of our \`mult2\` mutation.\\"\\"\\" type Mult2Payload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String integer: Int - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`mult3\` mutation. +\\"\\"\\"All input for the \`mult3\` mutation.\\"\\"\\" input Mult3Input { arg0: Int! arg1: Int! - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`mult3\` mutation. +\\"\\"\\"The output of our \`mult3\` mutation.\\"\\"\\" type Mult3Payload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String integer: Int - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`mult4\` mutation. +\\"\\"\\"All input for the \`mult4\` mutation.\\"\\"\\" input Mult4Input { arg0: Int! arg1: Int! - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`mult4\` mutation. +\\"\\"\\"The output of our \`mult4\` mutation.\\"\\"\\" type Mult4Payload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String integer: Int - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# The root mutation type which contains root level fields which mutate data. +\\"\\"\\" +The root mutation type which contains root level fields which mutate data. +\\"\\"\\" type Mutation { authenticate( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: AuthenticateInput! ): AuthenticatePayload authenticateFail( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: AuthenticateFailInput! ): AuthenticateFailPayload authenticateMany( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: AuthenticateManyInput! ): AuthenticateManyPayload compoundTypeMutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CompoundTypeMutationInput! ): CompoundTypeMutationPayload - # Creates a single \`Type\`. + \\"\\"\\"Creates a single \`Type\`.\\"\\"\\" createType( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreateTypeInput! ): CreateTypePayload - # Creates a single \`UpdatableView\`. + \\"\\"\\"Creates a single \`UpdatableView\`.\\"\\"\\" createUpdatableView( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreateUpdatableViewInput! ): CreateUpdatableViewPayload - # Deletes a single \`Type\` using its globally unique id. + \\"\\"\\"Deletes a single \`Type\` using its globally unique id.\\"\\"\\" deleteType( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteTypeInput! ): DeleteTypePayload - # Deletes a single \`Type\` using a unique key. + \\"\\"\\"Deletes a single \`Type\` using a unique key.\\"\\"\\" deleteTypeById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteTypeByIdInput! ): DeleteTypePayload guidFn( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: GuidFnInput! ): GuidFnPayload mult1( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: Mult1Input! ): Mult1Payload mult2( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: Mult2Input! ): Mult2Payload mult3( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: Mult3Input! ): Mult3Payload mult4( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: Mult4Input! ): Mult4Payload - # Updates a single \`Type\` using its globally unique id and a patch. + \\"\\"\\"Updates a single \`Type\` using its globally unique id and a patch.\\"\\"\\" updateType( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateTypeInput! ): UpdateTypePayload - # Updates a single \`Type\` using a unique key and a patch. + \\"\\"\\"Updates a single \`Type\` using a unique key and a patch.\\"\\"\\" updateTypeById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateTypeByIdInput! ): UpdateTypePayload } @@ -1856,31 +2242,33 @@ type NestedCompoundType { bazBuz: Int } -# An input for mutations affecting \`NestedCompoundType\` +\\"\\"\\"An input for mutations affecting \`NestedCompoundType\`\\"\\"\\" input NestedCompoundTypeInput { a: CompoundTypeInput b: CompoundTypeInput bazBuz: Int } -# An object with a globally unique \`ID\`. +\\"\\"\\"An object with a globally unique \`ID\`.\\"\\"\\" interface Node { - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" nodeId: ID! } -# Information about pagination in a connection. +\\"\\"\\"Information about pagination in a connection.\\"\\"\\" type PageInfo { - # When paginating forwards, the cursor to continue. + \\"\\"\\"When paginating forwards, the cursor to continue.\\"\\"\\" endCursor: Cursor - # When paginating forwards, are there more items? + \\"\\"\\"When paginating forwards, are there more items?\\"\\"\\" hasNextPage: Boolean! - # When paginating backwards, are there more items? + \\"\\"\\"When paginating backwards, are there more items?\\"\\"\\" hasPreviousPage: Boolean! - # When paginating backwards, the cursor to continue. + \\"\\"\\"When paginating backwards, the cursor to continue.\\"\\"\\" startCursor: Cursor } @@ -1894,81 +2282,95 @@ input PointInput { y: Float! } -# The root query type which gives access points into the data universe. +\\"\\"\\"The root query type which gives access points into the data universe.\\"\\"\\" type Query implements Node { - # Reads and enables pagination through a set of \`Type\`. + \\"\\"\\"Reads and enables pagination through a set of \`Type\`.\\"\\"\\" allTypes( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: TypeCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`Type\`. + \\"\\"\\"The method to use when ordering \`Type\`.\\"\\"\\" orderBy: [TypesOrderBy!] = [PRIMARY_KEY_ASC] ): TypesConnection - # Reads and enables pagination through a set of \`UpdatableView\`. + \\"\\"\\"Reads and enables pagination through a set of \`UpdatableView\`.\\"\\"\\" allUpdatableViews( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: UpdatableViewCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`UpdatableView\`. + \\"\\"\\"The method to use when ordering \`UpdatableView\`.\\"\\"\\" orderBy: [UpdatableViewsOrderBy!] = [NATURAL] ): UpdatableViewsConnection compoundTypeQuery(object: CompoundTypeInput): CompoundType - # Fetches an object given its globally unique \`ID\`. + \\"\\"\\"Fetches an object given its globally unique \`ID\`.\\"\\"\\" node( - # The globally unique \`ID\`. + \\"\\"\\"The globally unique \`ID\`.\\"\\"\\" nodeId: ID! ): Node - # The root query type must be a \`Node\` to work well with Relay 1 mutations. This just resolves to \`query\`. + \\"\\"\\" + The root query type must be a \`Node\` to work well with Relay 1 mutations. This just resolves to \`query\`. + \\"\\"\\" nodeId: ID! - # Exposes the root query type nested one level down. This is helpful for Relay 1 - # which can only query top level fields if they are in a particular form. + \\"\\"\\" + Exposes the root query type nested one level down. This is helpful for Relay 1 + which can only query top level fields if they are in a particular form. + \\"\\"\\" query: Query! - # Reads a single \`Type\` using its globally unique \`ID\`. + \\"\\"\\"Reads a single \`Type\` using its globally unique \`ID\`.\\"\\"\\" type( - # The globally unique \`ID\` to be used in selecting a single \`Type\`. + \\"\\"\\"The globally unique \`ID\` to be used in selecting a single \`Type\`.\\"\\"\\" nodeId: ID! ): Type typeById(id: Int!): Type } -# The exact time of day, does not include the date. May or may not have a timezone offset. +\\"\\"\\" +The exact time of day, does not include the date. May or may not have a timezone offset. +\\"\\"\\" scalar Time type Type implements Node { @@ -1990,7 +2392,9 @@ type Type implements Node { money: Float! nestedCompoundType: NestedCompoundType! - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" nodeId: ID! nullableCompoundType: CompoundType nullableNestedCompoundType: NestedCompoundType @@ -2008,103 +2412,107 @@ type Type implements Node { varchar: String! } -# A condition to be used against \`Type\` object types. All fields are tested for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`Type\` object types. All fields are tested for equality and combined with a logical ‘and.’ +\\"\\"\\" input TypeCondition { - # Checks for equality with the object’s \`anIntRange\` field. + \\"\\"\\"Checks for equality with the object’s \`anIntRange\` field.\\"\\"\\" anIntRange: AnIntRangeInput - # Checks for equality with the object’s \`bigint\` field. + \\"\\"\\"Checks for equality with the object’s \`bigint\` field.\\"\\"\\" bigint: BigInt - # Checks for equality with the object’s \`boolean\` field. + \\"\\"\\"Checks for equality with the object’s \`boolean\` field.\\"\\"\\" boolean: Boolean - # Checks for equality with the object’s \`compoundType\` field. + \\"\\"\\"Checks for equality with the object’s \`compoundType\` field.\\"\\"\\" compoundType: CompoundTypeInput - # Checks for equality with the object’s \`date\` field. + \\"\\"\\"Checks for equality with the object’s \`date\` field.\\"\\"\\" date: Date - # Checks for equality with the object’s \`daterange\` field. + \\"\\"\\"Checks for equality with the object’s \`daterange\` field.\\"\\"\\" daterange: DateRangeInput - # Checks for equality with the object’s \`decimal\` field. + \\"\\"\\"Checks for equality with the object’s \`decimal\` field.\\"\\"\\" decimal: BigFloat - # Checks for equality with the object’s \`domain\` field. + \\"\\"\\"Checks for equality with the object’s \`domain\` field.\\"\\"\\" domain: AnInt - # Checks for equality with the object’s \`domain2\` field. + \\"\\"\\"Checks for equality with the object’s \`domain2\` field.\\"\\"\\" domain2: AnotherInt - # Checks for equality with the object’s \`enum\` field. + \\"\\"\\"Checks for equality with the object’s \`enum\` field.\\"\\"\\" enum: Color - # Checks for equality with the object’s \`enumArray\` field. + \\"\\"\\"Checks for equality with the object’s \`enumArray\` field.\\"\\"\\" enumArray: [Color] - # Checks for equality with the object’s \`id\` field. + \\"\\"\\"Checks for equality with the object’s \`id\` field.\\"\\"\\" id: Int - # Checks for equality with the object’s \`interval\` field. + \\"\\"\\"Checks for equality with the object’s \`interval\` field.\\"\\"\\" interval: IntervalInput - # Checks for equality with the object’s \`json\` field. + \\"\\"\\"Checks for equality with the object’s \`json\` field.\\"\\"\\" json: JSON - # Checks for equality with the object’s \`jsonb\` field. + \\"\\"\\"Checks for equality with the object’s \`jsonb\` field.\\"\\"\\" jsonb: JSON - # Checks for equality with the object’s \`money\` field. + \\"\\"\\"Checks for equality with the object’s \`money\` field.\\"\\"\\" money: Float - # Checks for equality with the object’s \`nestedCompoundType\` field. + \\"\\"\\"Checks for equality with the object’s \`nestedCompoundType\` field.\\"\\"\\" nestedCompoundType: NestedCompoundTypeInput - # Checks for equality with the object’s \`nullableCompoundType\` field. + \\"\\"\\"Checks for equality with the object’s \`nullableCompoundType\` field.\\"\\"\\" nullableCompoundType: CompoundTypeInput - # Checks for equality with the object’s \`nullableNestedCompoundType\` field. + \\"\\"\\" + Checks for equality with the object’s \`nullableNestedCompoundType\` field. + \\"\\"\\" nullableNestedCompoundType: NestedCompoundTypeInput - # Checks for equality with the object’s \`nullablePoint\` field. + \\"\\"\\"Checks for equality with the object’s \`nullablePoint\` field.\\"\\"\\" nullablePoint: PointInput - # Checks for equality with the object’s \`nullableRange\` field. + \\"\\"\\"Checks for equality with the object’s \`nullableRange\` field.\\"\\"\\" nullableRange: BigFloatRangeInput - # Checks for equality with the object’s \`numeric\` field. + \\"\\"\\"Checks for equality with the object’s \`numeric\` field.\\"\\"\\" numeric: BigFloat - # Checks for equality with the object’s \`numrange\` field. + \\"\\"\\"Checks for equality with the object’s \`numrange\` field.\\"\\"\\" numrange: BigFloatRangeInput - # Checks for equality with the object’s \`point\` field. + \\"\\"\\"Checks for equality with the object’s \`point\` field.\\"\\"\\" point: PointInput - # Checks for equality with the object’s \`smallint\` field. + \\"\\"\\"Checks for equality with the object’s \`smallint\` field.\\"\\"\\" smallint: Int - # Checks for equality with the object’s \`textArray\` field. + \\"\\"\\"Checks for equality with the object’s \`textArray\` field.\\"\\"\\" textArray: [String] - # Checks for equality with the object’s \`time\` field. + \\"\\"\\"Checks for equality with the object’s \`time\` field.\\"\\"\\" time: Time - # Checks for equality with the object’s \`timestamp\` field. + \\"\\"\\"Checks for equality with the object’s \`timestamp\` field.\\"\\"\\" timestamp: Datetime - # Checks for equality with the object’s \`timestamptz\` field. + \\"\\"\\"Checks for equality with the object’s \`timestamptz\` field.\\"\\"\\" timestamptz: Datetime - # Checks for equality with the object’s \`timetz\` field. + \\"\\"\\"Checks for equality with the object’s \`timetz\` field.\\"\\"\\" timetz: Time - # Checks for equality with the object’s \`varchar\` field. + \\"\\"\\"Checks for equality with the object’s \`varchar\` field.\\"\\"\\" varchar: String } -# An input for mutations affecting \`Type\` +\\"\\"\\"An input for mutations affecting \`Type\`\\"\\"\\" input TypeInput { anIntRange: AnIntRangeInput! bigint: BigInt! @@ -2139,7 +2547,9 @@ input TypeInput { varchar: String! } -# Represents an update to a \`Type\`. Fields that are set will be updated. +\\"\\"\\" +Represents an update to a \`Type\`. Fields that are set will be updated. +\\"\\"\\" input TypePatch { anIntRange: AnIntRangeInput bigint: BigInt @@ -2174,31 +2584,33 @@ input TypePatch { varchar: String } -# A connection to a list of \`Type\` values. +\\"\\"\\"A connection to a list of \`Type\` values.\\"\\"\\" type TypesConnection { - # A list of edges which contains the \`Type\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`Type\` and cursor to aid in pagination. + \\"\\"\\" edges: [TypesEdge!]! - # A list of \`Type\` objects. + \\"\\"\\"A list of \`Type\` objects.\\"\\"\\" nodes: [Type]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`Type\` you could get from the connection. + \\"\\"\\"The count of *all* \`Type\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`Type\` edge in the connection. +\\"\\"\\"A \`Type\` edge in the connection.\\"\\"\\" type TypesEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`Type\` at the end of the edge. + \\"\\"\\"The \`Type\` at the end of the edge.\\"\\"\\" node: Type! } -# Methods to use when ordering \`Type\`. +\\"\\"\\"Methods to use when ordering \`Type\`.\\"\\"\\" enum TypesOrderBy { AN_INT_RANGE_ASC AN_INT_RANGE_DESC @@ -2267,65 +2679,69 @@ enum TypesOrderBy { VARCHAR_DESC } -# YOYOYO!! +\\"\\"\\"YOYOYO!!\\"\\"\\" type UpdatableView { - # This is constantly 2 + \\"\\"\\"This is constantly 2\\"\\"\\" constant: Int description: String name: String x: Int } -# A condition to be used against \`UpdatableView\` object types. All fields are -# tested for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`UpdatableView\` object types. All fields are +tested for equality and combined with a logical ‘and.’ +\\"\\"\\" input UpdatableViewCondition { - # Checks for equality with the object’s \`constant\` field. + \\"\\"\\"Checks for equality with the object’s \`constant\` field.\\"\\"\\" constant: Int - # Checks for equality with the object’s \`description\` field. + \\"\\"\\"Checks for equality with the object’s \`description\` field.\\"\\"\\" description: String - # Checks for equality with the object’s \`name\` field. + \\"\\"\\"Checks for equality with the object’s \`name\` field.\\"\\"\\" name: String - # Checks for equality with the object’s \`x\` field. + \\"\\"\\"Checks for equality with the object’s \`x\` field.\\"\\"\\" x: Int } -# An input for mutations affecting \`UpdatableView\` +\\"\\"\\"An input for mutations affecting \`UpdatableView\`\\"\\"\\" input UpdatableViewInput { - # This is constantly 2 + \\"\\"\\"This is constantly 2\\"\\"\\" constant: Int description: String name: String x: Int } -# A connection to a list of \`UpdatableView\` values. +\\"\\"\\"A connection to a list of \`UpdatableView\` values.\\"\\"\\" type UpdatableViewsConnection { - # A list of edges which contains the \`UpdatableView\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`UpdatableView\` and cursor to aid in pagination. + \\"\\"\\" edges: [UpdatableViewsEdge!]! - # A list of \`UpdatableView\` objects. + \\"\\"\\"A list of \`UpdatableView\` objects.\\"\\"\\" nodes: [UpdatableView]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`UpdatableView\` you could get from the connection. + \\"\\"\\"The count of *all* \`UpdatableView\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`UpdatableView\` edge in the connection. +\\"\\"\\"A \`UpdatableView\` edge in the connection.\\"\\"\\" type UpdatableViewsEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`UpdatableView\` at the end of the edge. + \\"\\"\\"The \`UpdatableView\` at the end of the edge.\\"\\"\\" node: UpdatableView! } -# Methods to use when ordering \`UpdatableView\`. +\\"\\"\\"Methods to use when ordering \`UpdatableView\`.\\"\\"\\" enum UpdatableViewsOrderBy { CONSTANT_ASC CONSTANT_DESC @@ -2338,157 +2754,203 @@ enum UpdatableViewsOrderBy { X_DESC } -# All input for the \`updateTypeById\` mutation. +\\"\\"\\"All input for the \`updateTypeById\` mutation.\\"\\"\\" input UpdateTypeByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! - # An object where the defined keys will be set on the \`Type\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`Type\` being updated. + \\"\\"\\" typePatch: TypePatch! } -# All input for the \`updateType\` mutation. +\\"\\"\\"All input for the \`updateType\` mutation.\\"\\"\\" input UpdateTypeInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`Type\` to be updated. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`Type\` to be updated. + \\"\\"\\" nodeId: ID! - # An object where the defined keys will be set on the \`Type\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`Type\` being updated. + \\"\\"\\" typePatch: TypePatch! } -# The output of our update \`Type\` mutation. +\\"\\"\\"The output of our update \`Type\` mutation.\\"\\"\\" type UpdateTypePayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`Type\` that was updated by this mutation. + \\"\\"\\"The \`Type\` that was updated by this mutation.\\"\\"\\" type: Type - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" typeEdge( - # The method to use when ordering \`Type\`. + \\"\\"\\"The method to use when ordering \`Type\`.\\"\\"\\" orderBy: [TypesOrderBy!] = [PRIMARY_KEY_ASC] ): TypesEdge } -# A universally unique identifier as defined by [RFC 4122](https://tools.ietf.org/html/rfc4122). +\\"\\"\\" +A universally unique identifier as defined by [RFC 4122](https://tools.ietf.org/html/rfc4122). +\\"\\"\\" scalar UUID " `; exports[`prints a schema with the default options 1`] = ` -"# All input for the \`add1Mutation\` mutation. +"\\"\\"\\"All input for the \`add1Mutation\` mutation.\\"\\"\\" input Add1MutationInput { arg0: Int! arg1: Int! - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`add1Mutation\` mutation. +\\"\\"\\"The output of our \`add1Mutation\` mutation.\\"\\"\\" type Add1MutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String integer: Int - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`add2Mutation\` mutation. +\\"\\"\\"All input for the \`add2Mutation\` mutation.\\"\\"\\" input Add2MutationInput { a: Int! b: Int - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`add2Mutation\` mutation. +\\"\\"\\"The output of our \`add2Mutation\` mutation.\\"\\"\\" type Add2MutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String integer: Int - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`add3Mutation\` mutation. +\\"\\"\\"All input for the \`add3Mutation\` mutation.\\"\\"\\" input Add3MutationInput { a: Int arg1: Int - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`add3Mutation\` mutation. +\\"\\"\\"The output of our \`add3Mutation\` mutation.\\"\\"\\" type Add3MutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String integer: Int - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`add4MutationError\` mutation. +\\"\\"\\"All input for the \`add4MutationError\` mutation.\\"\\"\\" input Add4MutationErrorInput { arg0: Int b: Int - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`add4MutationError\` mutation. +\\"\\"\\"The output of our \`add4MutationError\` mutation.\\"\\"\\" type Add4MutationErrorPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String integer: Int - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`add4Mutation\` mutation. +\\"\\"\\"All input for the \`add4Mutation\` mutation.\\"\\"\\" input Add4MutationInput { arg0: Int b: Int - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`add4Mutation\` mutation. +\\"\\"\\"The output of our \`add4Mutation\` mutation.\\"\\"\\" type Add4MutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String integer: Int - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } @@ -2515,148 +2977,178 @@ enum AnEnum { scalar AnInt -# A range of \`AnInt\`. +\\"\\"\\"A range of \`AnInt\`.\\"\\"\\" type AnIntRange { - # The ending bound of our range. + \\"\\"\\"The ending bound of our range.\\"\\"\\" end: AnIntRangeBound - # The starting bound of our range. + \\"\\"\\"The starting bound of our range.\\"\\"\\" start: AnIntRangeBound } -# The value at one end of a range. A range can either include this value, or not. +\\"\\"\\" +The value at one end of a range. A range can either include this value, or not. +\\"\\"\\" type AnIntRangeBound { - # Whether or not the value of this bound is included in the range. + \\"\\"\\"Whether or not the value of this bound is included in the range.\\"\\"\\" inclusive: Boolean! - # The value at one end of our range. + \\"\\"\\"The value at one end of our range.\\"\\"\\" value: AnInt! } -# The value at one end of a range. A range can either include this value, or not. +\\"\\"\\" +The value at one end of a range. A range can either include this value, or not. +\\"\\"\\" input AnIntRangeBoundInput { - # Whether or not the value of this bound is included in the range. + \\"\\"\\"Whether or not the value of this bound is included in the range.\\"\\"\\" inclusive: Boolean! - # The value at one end of our range. + \\"\\"\\"The value at one end of our range.\\"\\"\\" value: AnInt! } -# A range of \`AnInt\`. +\\"\\"\\"A range of \`AnInt\`.\\"\\"\\" input AnIntRangeInput { - # The ending bound of our range. + \\"\\"\\"The ending bound of our range.\\"\\"\\" end: AnIntRangeBoundInput - # The starting bound of our range. + \\"\\"\\"The starting bound of our range.\\"\\"\\" start: AnIntRangeBoundInput } scalar AnotherInt -# All input for the \`authenticateFail\` mutation. +\\"\\"\\"All input for the \`authenticateFail\` mutation.\\"\\"\\" input AuthenticateFailInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`authenticateFail\` mutation. +\\"\\"\\"The output of our \`authenticateFail\` mutation.\\"\\"\\" type AuthenticateFailPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String jwtToken: JwtToken - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`authenticate\` mutation. +\\"\\"\\"All input for the \`authenticate\` mutation.\\"\\"\\" input AuthenticateInput { a: Int b: Int c: Int - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# All input for the \`authenticateMany\` mutation. +\\"\\"\\"All input for the \`authenticateMany\` mutation.\\"\\"\\" input AuthenticateManyInput { a: Int b: Int c: Int - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`authenticateMany\` mutation. +\\"\\"\\"The output of our \`authenticateMany\` mutation.\\"\\"\\" type AuthenticateManyPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String jwtTokens: [JwtToken] - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# The output of our \`authenticate\` mutation. +\\"\\"\\"The output of our \`authenticate\` mutation.\\"\\"\\" type AuthenticatePayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String jwtToken: JwtToken - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# A floating point number that requires more precision than IEEE 754 binary 64 +\\"\\"\\" +A floating point number that requires more precision than IEEE 754 binary 64 +\\"\\"\\" scalar BigFloat -# A range of \`BigFloat\`. +\\"\\"\\"A range of \`BigFloat\`.\\"\\"\\" type BigFloatRange { - # The ending bound of our range. + \\"\\"\\"The ending bound of our range.\\"\\"\\" end: BigFloatRangeBound - # The starting bound of our range. + \\"\\"\\"The starting bound of our range.\\"\\"\\" start: BigFloatRangeBound } -# The value at one end of a range. A range can either include this value, or not. +\\"\\"\\" +The value at one end of a range. A range can either include this value, or not. +\\"\\"\\" type BigFloatRangeBound { - # Whether or not the value of this bound is included in the range. + \\"\\"\\"Whether or not the value of this bound is included in the range.\\"\\"\\" inclusive: Boolean! - # The value at one end of our range. + \\"\\"\\"The value at one end of our range.\\"\\"\\" value: BigFloat! } -# The value at one end of a range. A range can either include this value, or not. +\\"\\"\\" +The value at one end of a range. A range can either include this value, or not. +\\"\\"\\" input BigFloatRangeBoundInput { - # Whether or not the value of this bound is included in the range. + \\"\\"\\"Whether or not the value of this bound is included in the range.\\"\\"\\" inclusive: Boolean! - # The value at one end of our range. + \\"\\"\\"The value at one end of our range.\\"\\"\\" value: BigFloat! } -# A range of \`BigFloat\`. +\\"\\"\\"A range of \`BigFloat\`.\\"\\"\\" input BigFloatRangeInput { - # The ending bound of our range. + \\"\\"\\"The ending bound of our range.\\"\\"\\" end: BigFloatRangeBoundInput - # The starting bound of our range. + \\"\\"\\"The starting bound of our range.\\"\\"\\" start: BigFloatRangeBoundInput } -# A signed eight-byte integer. The upper big integer values are greater then the -# max value for a JavaScript number. Therefore all big integers will be output as -# strings and not numbers. +\\"\\"\\" +A signed eight-byte integer. The upper big integer values are greater then the +max value for a JavaScript number. Therefore all big integers will be output as +strings and not numbers. +\\"\\"\\" scalar BigInt enum Color { @@ -2668,95 +3160,107 @@ enum Color { type CompoundKey implements Node { extra: Boolean - # Reads and enables pagination through a set of \`ForeignKey\`. + \\"\\"\\"Reads and enables pagination through a set of \`ForeignKey\`.\\"\\"\\" foreignKeysByCompoundKey1AndCompoundKey2( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: ForeignKeyCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`ForeignKey\`. + \\"\\"\\"The method to use when ordering \`ForeignKey\`.\\"\\"\\" orderBy: [ForeignKeysOrderBy!] = [NATURAL] ): ForeignKeysConnection! - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" nodeId: ID! - # Reads a single \`Person\` that is related to this \`CompoundKey\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`CompoundKey\`.\\"\\"\\" personByPersonId1: Person - # Reads a single \`Person\` that is related to this \`CompoundKey\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`CompoundKey\`.\\"\\"\\" personByPersonId2: Person personId1: Int! personId2: Int! } -# A condition to be used against \`CompoundKey\` object types. All fields are tested -# for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`CompoundKey\` object types. All fields are tested +for equality and combined with a logical ‘and.’ +\\"\\"\\" input CompoundKeyCondition { - # Checks for equality with the object’s \`extra\` field. + \\"\\"\\"Checks for equality with the object’s \`extra\` field.\\"\\"\\" extra: Boolean - # Checks for equality with the object’s \`personId1\` field. + \\"\\"\\"Checks for equality with the object’s \`personId1\` field.\\"\\"\\" personId1: Int - # Checks for equality with the object’s \`personId2\` field. + \\"\\"\\"Checks for equality with the object’s \`personId2\` field.\\"\\"\\" personId2: Int } -# An input for mutations affecting \`CompoundKey\` +\\"\\"\\"An input for mutations affecting \`CompoundKey\`\\"\\"\\" input CompoundKeyInput { extra: Boolean personId1: Int! personId2: Int! } -# Represents an update to a \`CompoundKey\`. Fields that are set will be updated. +\\"\\"\\" +Represents an update to a \`CompoundKey\`. Fields that are set will be updated. +\\"\\"\\" input CompoundKeyPatch { extra: Boolean personId1: Int personId2: Int } -# A connection to a list of \`CompoundKey\` values. +\\"\\"\\"A connection to a list of \`CompoundKey\` values.\\"\\"\\" type CompoundKeysConnection { - # A list of edges which contains the \`CompoundKey\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`CompoundKey\` and cursor to aid in pagination. + \\"\\"\\" edges: [CompoundKeysEdge!]! - # A list of \`CompoundKey\` objects. + \\"\\"\\"A list of \`CompoundKey\` objects.\\"\\"\\" nodes: [CompoundKey]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`CompoundKey\` you could get from the connection. + \\"\\"\\"The count of *all* \`CompoundKey\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`CompoundKey\` edge in the connection. +\\"\\"\\"A \`CompoundKey\` edge in the connection.\\"\\"\\" type CompoundKeysEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`CompoundKey\` at the end of the edge. + \\"\\"\\"The \`CompoundKey\` at the end of the edge.\\"\\"\\" node: CompoundKey! } -# Methods to use when ordering \`CompoundKey\`. +\\"\\"\\"Methods to use when ordering \`CompoundKey\`.\\"\\"\\" enum CompoundKeysOrderBy { EXTRA_ASC EXTRA_DESC @@ -2769,7 +3273,7 @@ enum CompoundKeysOrderBy { PRIMARY_KEY_DESC } -# Awesome feature! +\\"\\"\\"Awesome feature!\\"\\"\\" type CompoundType { a: Int b: String @@ -2781,7 +3285,7 @@ type CompoundType { fooBar: Int } -# An input for mutations affecting \`CompoundType\` +\\"\\"\\"An input for mutations affecting \`CompoundType\`\\"\\"\\" input CompoundTypeInput { a: Int b: String @@ -2792,46 +3296,54 @@ input CompoundTypeInput { fooBar: Int } -# All input for the \`compoundTypeMutation\` mutation. +\\"\\"\\"All input for the \`compoundTypeMutation\` mutation.\\"\\"\\" input CompoundTypeMutationInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String object: CompoundTypeInput } -# The output of our \`compoundTypeMutation\` mutation. +\\"\\"\\"The output of our \`compoundTypeMutation\` mutation.\\"\\"\\" type CompoundTypeMutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String compoundType: CompoundType - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# A connection to a list of \`CompoundType\` values. +\\"\\"\\"A connection to a list of \`CompoundType\` values.\\"\\"\\" type CompoundTypesConnection { - # A list of edges which contains the \`CompoundType\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`CompoundType\` and cursor to aid in pagination. + \\"\\"\\" edges: [CompoundTypesEdge!]! - # A list of \`CompoundType\` objects. + \\"\\"\\"A list of \`CompoundType\` objects.\\"\\"\\" nodes: [CompoundType]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`CompoundType\` you could get from the connection. + \\"\\"\\"The count of *all* \`CompoundType\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`CompoundType\` edge in the connection. +\\"\\"\\"A \`CompoundType\` edge in the connection.\\"\\"\\" type CompoundTypesEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`CompoundType\` at the end of the edge. + \\"\\"\\"The \`CompoundType\` at the end of the edge.\\"\\"\\" node: CompoundType! } @@ -2840,621 +3352,737 @@ type Comptype { schedule: Datetime } -# An input for mutations affecting \`Comptype\` +\\"\\"\\"An input for mutations affecting \`Comptype\`\\"\\"\\" input ComptypeInput { isOptimised: Boolean schedule: Datetime } -# All input for the create \`CompoundKey\` mutation. +\\"\\"\\"All input for the create \`CompoundKey\` mutation.\\"\\"\\" input CreateCompoundKeyInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`CompoundKey\` to be created by this mutation. + \\"\\"\\"The \`CompoundKey\` to be created by this mutation.\\"\\"\\" compoundKey: CompoundKeyInput! } -# The output of our create \`CompoundKey\` mutation. +\\"\\"\\"The output of our create \`CompoundKey\` mutation.\\"\\"\\" type CreateCompoundKeyPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`CompoundKey\` that was created by this mutation. + \\"\\"\\"The \`CompoundKey\` that was created by this mutation.\\"\\"\\" compoundKey: CompoundKey - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" compoundKeyEdge( - # The method to use when ordering \`CompoundKey\`. + \\"\\"\\"The method to use when ordering \`CompoundKey\`.\\"\\"\\" orderBy: [CompoundKeysOrderBy!] = [PRIMARY_KEY_ASC] ): CompoundKeysEdge - # Reads a single \`Person\` that is related to this \`CompoundKey\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`CompoundKey\`.\\"\\"\\" personByPersonId1: Person - # Reads a single \`Person\` that is related to this \`CompoundKey\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`CompoundKey\`.\\"\\"\\" personByPersonId2: Person - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the create \`DefaultValue\` mutation. +\\"\\"\\"All input for the create \`DefaultValue\` mutation.\\"\\"\\" input CreateDefaultValueInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`DefaultValue\` to be created by this mutation. + \\"\\"\\"The \`DefaultValue\` to be created by this mutation.\\"\\"\\" defaultValue: DefaultValueInput! } -# The output of our create \`DefaultValue\` mutation. +\\"\\"\\"The output of our create \`DefaultValue\` mutation.\\"\\"\\" type CreateDefaultValuePayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`DefaultValue\` that was created by this mutation. + \\"\\"\\"The \`DefaultValue\` that was created by this mutation.\\"\\"\\" defaultValue: DefaultValue - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" defaultValueEdge( - # The method to use when ordering \`DefaultValue\`. + \\"\\"\\"The method to use when ordering \`DefaultValue\`.\\"\\"\\" orderBy: [DefaultValuesOrderBy!] = [PRIMARY_KEY_ASC] ): DefaultValuesEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the create \`EdgeCase\` mutation. +\\"\\"\\"All input for the create \`EdgeCase\` mutation.\\"\\"\\" input CreateEdgeCaseInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`EdgeCase\` to be created by this mutation. + \\"\\"\\"The \`EdgeCase\` to be created by this mutation.\\"\\"\\" edgeCase: EdgeCaseInput! } -# The output of our create \`EdgeCase\` mutation. +\\"\\"\\"The output of our create \`EdgeCase\` mutation.\\"\\"\\" type CreateEdgeCasePayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`EdgeCase\` that was created by this mutation. + \\"\\"\\"The \`EdgeCase\` that was created by this mutation.\\"\\"\\" edgeCase: EdgeCase - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" edgeCaseEdge( - # The method to use when ordering \`EdgeCase\`. + \\"\\"\\"The method to use when ordering \`EdgeCase\`.\\"\\"\\" orderBy: [EdgeCasesOrderBy!] = [NATURAL] ): EdgeCasesEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the create \`ForeignKey\` mutation. +\\"\\"\\"All input for the create \`ForeignKey\` mutation.\\"\\"\\" input CreateForeignKeyInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`ForeignKey\` to be created by this mutation. + \\"\\"\\"The \`ForeignKey\` to be created by this mutation.\\"\\"\\" foreignKey: ForeignKeyInput! } -# The output of our create \`ForeignKey\` mutation. +\\"\\"\\"The output of our create \`ForeignKey\` mutation.\\"\\"\\" type CreateForeignKeyPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Reads a single \`CompoundKey\` that is related to this \`ForeignKey\`. + \\"\\"\\"Reads a single \`CompoundKey\` that is related to this \`ForeignKey\`.\\"\\"\\" compoundKeyByCompoundKey1AndCompoundKey2: CompoundKey - # The \`ForeignKey\` that was created by this mutation. + \\"\\"\\"The \`ForeignKey\` that was created by this mutation.\\"\\"\\" foreignKey: ForeignKey - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" foreignKeyEdge( - # The method to use when ordering \`ForeignKey\`. + \\"\\"\\"The method to use when ordering \`ForeignKey\`.\\"\\"\\" orderBy: [ForeignKeysOrderBy!] = [NATURAL] ): ForeignKeysEdge - # Reads a single \`Person\` that is related to this \`ForeignKey\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`ForeignKey\`.\\"\\"\\" personByPersonId: Person - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the create \`Input\` mutation. +\\"\\"\\"All input for the create \`Input\` mutation.\\"\\"\\" input CreateInputInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`Input\` to be created by this mutation. + \\"\\"\\"The \`Input\` to be created by this mutation.\\"\\"\\" input: InputInput! } -# The output of our create \`Input\` mutation. +\\"\\"\\"The output of our create \`Input\` mutation.\\"\\"\\" type CreateInputPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`Input\` that was created by this mutation. + \\"\\"\\"The \`Input\` that was created by this mutation.\\"\\"\\" input: Input - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" inputEdge( - # The method to use when ordering \`Input\`. + \\"\\"\\"The method to use when ordering \`Input\`.\\"\\"\\" orderBy: [InputsOrderBy!] = [PRIMARY_KEY_ASC] ): InputsEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the create \`Patch\` mutation. +\\"\\"\\"All input for the create \`Patch\` mutation.\\"\\"\\" input CreatePatchInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`Patch\` to be created by this mutation. + \\"\\"\\"The \`Patch\` to be created by this mutation.\\"\\"\\" patch: PatchInput! } -# The output of our create \`Patch\` mutation. +\\"\\"\\"The output of our create \`Patch\` mutation.\\"\\"\\" type CreatePatchPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`Patch\` that was created by this mutation. + \\"\\"\\"The \`Patch\` that was created by this mutation.\\"\\"\\" patch: Patch - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" patchEdge( - # The method to use when ordering \`Patch\`. + \\"\\"\\"The method to use when ordering \`Patch\`.\\"\\"\\" orderBy: [PatchesOrderBy!] = [PRIMARY_KEY_ASC] ): PatchesEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the create \`Person\` mutation. +\\"\\"\\"All input for the create \`Person\` mutation.\\"\\"\\" input CreatePersonInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`Person\` to be created by this mutation. + \\"\\"\\"The \`Person\` to be created by this mutation.\\"\\"\\" person: PersonInput! } -# The output of our create \`Person\` mutation. +\\"\\"\\"The output of our create \`Person\` mutation.\\"\\"\\" type CreatePersonPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`Person\` that was created by this mutation. + \\"\\"\\"The \`Person\` that was created by this mutation.\\"\\"\\" person: Person - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" personEdge( - # The method to use when ordering \`Person\`. + \\"\\"\\"The method to use when ordering \`Person\`.\\"\\"\\" orderBy: [PeopleOrderBy!] = [PRIMARY_KEY_ASC] ): PeopleEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the create \`Post\` mutation. +\\"\\"\\"All input for the create \`Post\` mutation.\\"\\"\\" input CreatePostInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`Post\` to be created by this mutation. + \\"\\"\\"The \`Post\` to be created by this mutation.\\"\\"\\" post: PostInput! } -# The output of our create \`Post\` mutation. +\\"\\"\\"The output of our create \`Post\` mutation.\\"\\"\\" type CreatePostPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Reads a single \`Person\` that is related to this \`Post\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`Post\`.\\"\\"\\" personByAuthorId: Person - # The \`Post\` that was created by this mutation. + \\"\\"\\"The \`Post\` that was created by this mutation.\\"\\"\\" post: Post - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" postEdge( - # The method to use when ordering \`Post\`. + \\"\\"\\"The method to use when ordering \`Post\`.\\"\\"\\" orderBy: [PostsOrderBy!] = [PRIMARY_KEY_ASC] ): PostsEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the create \`Reserved\` mutation. +\\"\\"\\"All input for the create \`Reserved\` mutation.\\"\\"\\" input CreateReservedInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`Reserved\` to be created by this mutation. + \\"\\"\\"The \`Reserved\` to be created by this mutation.\\"\\"\\" reserved: ReservedInput! } -# All input for the create \`ReservedInputRecord\` mutation. +\\"\\"\\"All input for the create \`ReservedInputRecord\` mutation.\\"\\"\\" input CreateReservedInputRecordInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`ReservedInputRecord\` to be created by this mutation. + \\"\\"\\"The \`ReservedInputRecord\` to be created by this mutation.\\"\\"\\" reservedInputRecord: ReservedInputRecordInput! } -# The output of our create \`ReservedInputRecord\` mutation. +\\"\\"\\"The output of our create \`ReservedInputRecord\` mutation.\\"\\"\\" type CreateReservedInputRecordPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`ReservedInputRecord\` that was created by this mutation. + \\"\\"\\"The \`ReservedInputRecord\` that was created by this mutation.\\"\\"\\" reservedInputRecord: ReservedInputRecord - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" reservedInputRecordEdge( - # The method to use when ordering \`ReservedInputRecord\`. + \\"\\"\\"The method to use when ordering \`ReservedInputRecord\`.\\"\\"\\" orderBy: [ReservedInputRecordsOrderBy!] = [PRIMARY_KEY_ASC] ): ReservedInputRecordsEdge } -# All input for the create \`ReservedPatchRecord\` mutation. +\\"\\"\\"All input for the create \`ReservedPatchRecord\` mutation.\\"\\"\\" input CreateReservedPatchRecordInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`ReservedPatchRecord\` to be created by this mutation. + \\"\\"\\"The \`ReservedPatchRecord\` to be created by this mutation.\\"\\"\\" reservedPatchRecord: ReservedPatchRecordInput! } -# The output of our create \`ReservedPatchRecord\` mutation. +\\"\\"\\"The output of our create \`ReservedPatchRecord\` mutation.\\"\\"\\" type CreateReservedPatchRecordPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`ReservedPatchRecord\` that was created by this mutation. + \\"\\"\\"The \`ReservedPatchRecord\` that was created by this mutation.\\"\\"\\" reservedPatchRecord: ReservedPatchRecord - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" reservedPatchRecordEdge( - # The method to use when ordering \`ReservedPatchRecord\`. + \\"\\"\\"The method to use when ordering \`ReservedPatchRecord\`.\\"\\"\\" orderBy: [ReservedPatchRecordsOrderBy!] = [PRIMARY_KEY_ASC] ): ReservedPatchRecordsEdge } -# The output of our create \`Reserved\` mutation. +\\"\\"\\"The output of our create \`Reserved\` mutation.\\"\\"\\" type CreateReservedPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`Reserved\` that was created by this mutation. + \\"\\"\\"The \`Reserved\` that was created by this mutation.\\"\\"\\" reserved: Reserved - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" reservedEdge( - # The method to use when ordering \`Reserved\`. + \\"\\"\\"The method to use when ordering \`Reserved\`.\\"\\"\\" orderBy: [ReservedsOrderBy!] = [PRIMARY_KEY_ASC] ): ReservedsEdge } -# All input for the create \`SimilarTable1\` mutation. +\\"\\"\\"All input for the create \`SimilarTable1\` mutation.\\"\\"\\" input CreateSimilarTable1Input { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`SimilarTable1\` to be created by this mutation. + \\"\\"\\"The \`SimilarTable1\` to be created by this mutation.\\"\\"\\" similarTable1: SimilarTable1Input! } -# The output of our create \`SimilarTable1\` mutation. +\\"\\"\\"The output of our create \`SimilarTable1\` mutation.\\"\\"\\" type CreateSimilarTable1Payload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`SimilarTable1\` that was created by this mutation. + \\"\\"\\"The \`SimilarTable1\` that was created by this mutation.\\"\\"\\" similarTable1: SimilarTable1 - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" similarTable1Edge( - # The method to use when ordering \`SimilarTable1\`. + \\"\\"\\"The method to use when ordering \`SimilarTable1\`.\\"\\"\\" orderBy: [SimilarTable1SOrderBy!] = [PRIMARY_KEY_ASC] ): SimilarTable1SEdge } -# All input for the create \`SimilarTable2\` mutation. +\\"\\"\\"All input for the create \`SimilarTable2\` mutation.\\"\\"\\" input CreateSimilarTable2Input { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`SimilarTable2\` to be created by this mutation. + \\"\\"\\"The \`SimilarTable2\` to be created by this mutation.\\"\\"\\" similarTable2: SimilarTable2Input! } -# The output of our create \`SimilarTable2\` mutation. +\\"\\"\\"The output of our create \`SimilarTable2\` mutation.\\"\\"\\" type CreateSimilarTable2Payload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`SimilarTable2\` that was created by this mutation. + \\"\\"\\"The \`SimilarTable2\` that was created by this mutation.\\"\\"\\" similarTable2: SimilarTable2 - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" similarTable2Edge( - # The method to use when ordering \`SimilarTable2\`. + \\"\\"\\"The method to use when ordering \`SimilarTable2\`.\\"\\"\\" orderBy: [SimilarTable2SOrderBy!] = [PRIMARY_KEY_ASC] ): SimilarTable2SEdge } -# All input for the create \`Testview\` mutation. +\\"\\"\\"All input for the create \`Testview\` mutation.\\"\\"\\" input CreateTestviewInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`Testview\` to be created by this mutation. + \\"\\"\\"The \`Testview\` to be created by this mutation.\\"\\"\\" testview: TestviewInput! } -# The output of our create \`Testview\` mutation. +\\"\\"\\"The output of our create \`Testview\` mutation.\\"\\"\\" type CreateTestviewPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`Testview\` that was created by this mutation. + \\"\\"\\"The \`Testview\` that was created by this mutation.\\"\\"\\" testview: Testview - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" testviewEdge( - # The method to use when ordering \`Testview\`. + \\"\\"\\"The method to use when ordering \`Testview\`.\\"\\"\\" orderBy: [TestviewsOrderBy!] = [NATURAL] ): TestviewsEdge } -# All input for the create \`Type\` mutation. +\\"\\"\\"All input for the create \`Type\` mutation.\\"\\"\\" input CreateTypeInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`Type\` to be created by this mutation. + \\"\\"\\"The \`Type\` to be created by this mutation.\\"\\"\\" type: TypeInput! } -# The output of our create \`Type\` mutation. +\\"\\"\\"The output of our create \`Type\` mutation.\\"\\"\\" type CreateTypePayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`Type\` that was created by this mutation. + \\"\\"\\"The \`Type\` that was created by this mutation.\\"\\"\\" type: Type - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" typeEdge( - # The method to use when ordering \`Type\`. + \\"\\"\\"The method to use when ordering \`Type\`.\\"\\"\\" orderBy: [TypesOrderBy!] = [PRIMARY_KEY_ASC] ): TypesEdge } -# All input for the create \`UpdatableView\` mutation. +\\"\\"\\"All input for the create \`UpdatableView\` mutation.\\"\\"\\" input CreateUpdatableViewInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`UpdatableView\` to be created by this mutation. + \\"\\"\\"The \`UpdatableView\` to be created by this mutation.\\"\\"\\" updatableView: UpdatableViewInput! } -# The output of our create \`UpdatableView\` mutation. +\\"\\"\\"The output of our create \`UpdatableView\` mutation.\\"\\"\\" type CreateUpdatableViewPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`UpdatableView\` that was created by this mutation. + \\"\\"\\"The \`UpdatableView\` that was created by this mutation.\\"\\"\\" updatableView: UpdatableView - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" updatableViewEdge( - # The method to use when ordering \`UpdatableView\`. + \\"\\"\\"The method to use when ordering \`UpdatableView\`.\\"\\"\\" orderBy: [UpdatableViewsOrderBy!] = [NATURAL] ): UpdatableViewsEdge } -# All input for the create \`ViewTable\` mutation. +\\"\\"\\"All input for the create \`ViewTable\` mutation.\\"\\"\\" input CreateViewTableInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`ViewTable\` to be created by this mutation. + \\"\\"\\"The \`ViewTable\` to be created by this mutation.\\"\\"\\" viewTable: ViewTableInput! } -# The output of our create \`ViewTable\` mutation. +\\"\\"\\"The output of our create \`ViewTable\` mutation.\\"\\"\\" type CreateViewTablePayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`ViewTable\` that was created by this mutation. + \\"\\"\\"The \`ViewTable\` that was created by this mutation.\\"\\"\\" viewTable: ViewTable - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" viewTableEdge( - # The method to use when ordering \`ViewTable\`. + \\"\\"\\"The method to use when ordering \`ViewTable\`.\\"\\"\\" orderBy: [ViewTablesOrderBy!] = [PRIMARY_KEY_ASC] ): ViewTablesEdge } -# A location in a connection that can be used for resuming pagination. +\\"\\"\\"A location in a connection that can be used for resuming pagination.\\"\\"\\" scalar Cursor -# The day, does not include a time. +\\"\\"\\"The day, does not include a time.\\"\\"\\" scalar Date -# A range of \`Date\`. +\\"\\"\\"A range of \`Date\`.\\"\\"\\" type DateRange { - # The ending bound of our range. + \\"\\"\\"The ending bound of our range.\\"\\"\\" end: DateRangeBound - # The starting bound of our range. + \\"\\"\\"The starting bound of our range.\\"\\"\\" start: DateRangeBound } -# The value at one end of a range. A range can either include this value, or not. +\\"\\"\\" +The value at one end of a range. A range can either include this value, or not. +\\"\\"\\" type DateRangeBound { - # Whether or not the value of this bound is included in the range. + \\"\\"\\"Whether or not the value of this bound is included in the range.\\"\\"\\" inclusive: Boolean! - # The value at one end of our range. + \\"\\"\\"The value at one end of our range.\\"\\"\\" value: Date! } -# The value at one end of a range. A range can either include this value, or not. +\\"\\"\\" +The value at one end of a range. A range can either include this value, or not. +\\"\\"\\" input DateRangeBoundInput { - # Whether or not the value of this bound is included in the range. + \\"\\"\\"Whether or not the value of this bound is included in the range.\\"\\"\\" inclusive: Boolean! - # The value at one end of our range. + \\"\\"\\"The value at one end of our range.\\"\\"\\" value: Date! } -# A range of \`Date\`. +\\"\\"\\"A range of \`Date\`.\\"\\"\\" input DateRangeInput { - # The ending bound of our range. + \\"\\"\\"The ending bound of our range.\\"\\"\\" end: DateRangeBoundInput - # The starting bound of our range. + \\"\\"\\"The starting bound of our range.\\"\\"\\" start: DateRangeBoundInput } -# A point in time as described by the [ISO -# 8601](https://en.wikipedia.org/wiki/ISO_8601) standard. May or may not include a timezone. +\\"\\"\\" +A point in time as described by the [ISO +8601](https://en.wikipedia.org/wiki/ISO_8601) standard. May or may not include a timezone. +\\"\\"\\" scalar Datetime type DefaultValue implements Node { id: Int! - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" nodeId: ID! nullValue: String } -# A condition to be used against \`DefaultValue\` object types. All fields are -# tested for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`DefaultValue\` object types. All fields are +tested for equality and combined with a logical ‘and.’ +\\"\\"\\" input DefaultValueCondition { - # Checks for equality with the object’s \`id\` field. + \\"\\"\\"Checks for equality with the object’s \`id\` field.\\"\\"\\" id: Int - # Checks for equality with the object’s \`nullValue\` field. + \\"\\"\\"Checks for equality with the object’s \`nullValue\` field.\\"\\"\\" nullValue: String } -# An input for mutations affecting \`DefaultValue\` +\\"\\"\\"An input for mutations affecting \`DefaultValue\`\\"\\"\\" input DefaultValueInput { id: Int nullValue: String } -# Represents an update to a \`DefaultValue\`. Fields that are set will be updated. +\\"\\"\\" +Represents an update to a \`DefaultValue\`. Fields that are set will be updated. +\\"\\"\\" input DefaultValuePatch { id: Int nullValue: String } -# A connection to a list of \`DefaultValue\` values. +\\"\\"\\"A connection to a list of \`DefaultValue\` values.\\"\\"\\" type DefaultValuesConnection { - # A list of edges which contains the \`DefaultValue\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`DefaultValue\` and cursor to aid in pagination. + \\"\\"\\" edges: [DefaultValuesEdge!]! - # A list of \`DefaultValue\` objects. + \\"\\"\\"A list of \`DefaultValue\` objects.\\"\\"\\" nodes: [DefaultValue]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`DefaultValue\` you could get from the connection. + \\"\\"\\"The count of *all* \`DefaultValue\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`DefaultValue\` edge in the connection. +\\"\\"\\"A \`DefaultValue\` edge in the connection.\\"\\"\\" type DefaultValuesEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`DefaultValue\` at the end of the edge. + \\"\\"\\"The \`DefaultValue\` at the end of the edge.\\"\\"\\" node: DefaultValue! } -# Methods to use when ordering \`DefaultValue\`. +\\"\\"\\"Methods to use when ordering \`DefaultValue\`.\\"\\"\\" enum DefaultValuesOrderBy { ID_ASC ID_DESC @@ -3465,514 +4093,648 @@ enum DefaultValuesOrderBy { PRIMARY_KEY_DESC } -# All input for the \`deleteCompoundKeyByPersonId1AndPersonId2\` mutation. +\\"\\"\\" +All input for the \`deleteCompoundKeyByPersonId1AndPersonId2\` mutation. +\\"\\"\\" input DeleteCompoundKeyByPersonId1AndPersonId2Input { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String personId1: Int! personId2: Int! } -# All input for the \`deleteCompoundKey\` mutation. +\\"\\"\\"All input for the \`deleteCompoundKey\` mutation.\\"\\"\\" input DeleteCompoundKeyInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`CompoundKey\` to be deleted. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`CompoundKey\` to be deleted. + \\"\\"\\" nodeId: ID! } -# The output of our delete \`CompoundKey\` mutation. +\\"\\"\\"The output of our delete \`CompoundKey\` mutation.\\"\\"\\" type DeleteCompoundKeyPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`CompoundKey\` that was deleted by this mutation. + \\"\\"\\"The \`CompoundKey\` that was deleted by this mutation.\\"\\"\\" compoundKey: CompoundKey - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" compoundKeyEdge( - # The method to use when ordering \`CompoundKey\`. + \\"\\"\\"The method to use when ordering \`CompoundKey\`.\\"\\"\\" orderBy: [CompoundKeysOrderBy!] = [PRIMARY_KEY_ASC] ): CompoundKeysEdge deletedCompoundKeyId: ID - # Reads a single \`Person\` that is related to this \`CompoundKey\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`CompoundKey\`.\\"\\"\\" personByPersonId1: Person - # Reads a single \`Person\` that is related to this \`CompoundKey\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`CompoundKey\`.\\"\\"\\" personByPersonId2: Person - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`deleteDefaultValueById\` mutation. +\\"\\"\\"All input for the \`deleteDefaultValueById\` mutation.\\"\\"\\" input DeleteDefaultValueByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! } -# All input for the \`deleteDefaultValue\` mutation. +\\"\\"\\"All input for the \`deleteDefaultValue\` mutation.\\"\\"\\" input DeleteDefaultValueInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`DefaultValue\` to be deleted. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`DefaultValue\` to be deleted. + \\"\\"\\" nodeId: ID! } -# The output of our delete \`DefaultValue\` mutation. +\\"\\"\\"The output of our delete \`DefaultValue\` mutation.\\"\\"\\" type DeleteDefaultValuePayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`DefaultValue\` that was deleted by this mutation. + \\"\\"\\"The \`DefaultValue\` that was deleted by this mutation.\\"\\"\\" defaultValue: DefaultValue - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" defaultValueEdge( - # The method to use when ordering \`DefaultValue\`. + \\"\\"\\"The method to use when ordering \`DefaultValue\`.\\"\\"\\" orderBy: [DefaultValuesOrderBy!] = [PRIMARY_KEY_ASC] ): DefaultValuesEdge deletedDefaultValueId: ID - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`deleteInputById\` mutation. +\\"\\"\\"All input for the \`deleteInputById\` mutation.\\"\\"\\" input DeleteInputByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! } -# All input for the \`deleteInput\` mutation. +\\"\\"\\"All input for the \`deleteInput\` mutation.\\"\\"\\" input DeleteInputInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`Input\` to be deleted. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`Input\` to be deleted. + \\"\\"\\" nodeId: ID! } -# The output of our delete \`Input\` mutation. +\\"\\"\\"The output of our delete \`Input\` mutation.\\"\\"\\" type DeleteInputPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String deletedInputId: ID - # The \`Input\` that was deleted by this mutation. + \\"\\"\\"The \`Input\` that was deleted by this mutation.\\"\\"\\" input: Input - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" inputEdge( - # The method to use when ordering \`Input\`. + \\"\\"\\"The method to use when ordering \`Input\`.\\"\\"\\" orderBy: [InputsOrderBy!] = [PRIMARY_KEY_ASC] ): InputsEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`deletePatchById\` mutation. +\\"\\"\\"All input for the \`deletePatchById\` mutation.\\"\\"\\" input DeletePatchByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! } -# All input for the \`deletePatch\` mutation. +\\"\\"\\"All input for the \`deletePatch\` mutation.\\"\\"\\" input DeletePatchInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`Patch\` to be deleted. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`Patch\` to be deleted. + \\"\\"\\" nodeId: ID! } -# The output of our delete \`Patch\` mutation. +\\"\\"\\"The output of our delete \`Patch\` mutation.\\"\\"\\" type DeletePatchPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String deletedPatchId: ID - # The \`Patch\` that was deleted by this mutation. + \\"\\"\\"The \`Patch\` that was deleted by this mutation.\\"\\"\\" patch: Patch - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" patchEdge( - # The method to use when ordering \`Patch\`. + \\"\\"\\"The method to use when ordering \`Patch\`.\\"\\"\\" orderBy: [PatchesOrderBy!] = [PRIMARY_KEY_ASC] ): PatchesEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`deletePersonByEmail\` mutation. +\\"\\"\\"All input for the \`deletePersonByEmail\` mutation.\\"\\"\\" input DeletePersonByEmailInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String email: Email! } -# All input for the \`deletePersonById\` mutation. +\\"\\"\\"All input for the \`deletePersonById\` mutation.\\"\\"\\" input DeletePersonByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! } -# All input for the \`deletePerson\` mutation. +\\"\\"\\"All input for the \`deletePerson\` mutation.\\"\\"\\" input DeletePersonInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`Person\` to be deleted. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`Person\` to be deleted. + \\"\\"\\" nodeId: ID! } -# The output of our delete \`Person\` mutation. +\\"\\"\\"The output of our delete \`Person\` mutation.\\"\\"\\" type DeletePersonPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String deletedPersonId: ID - # The \`Person\` that was deleted by this mutation. + \\"\\"\\"The \`Person\` that was deleted by this mutation.\\"\\"\\" person: Person - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" personEdge( - # The method to use when ordering \`Person\`. + \\"\\"\\"The method to use when ordering \`Person\`.\\"\\"\\" orderBy: [PeopleOrderBy!] = [PRIMARY_KEY_ASC] ): PeopleEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`deletePostById\` mutation. +\\"\\"\\"All input for the \`deletePostById\` mutation.\\"\\"\\" input DeletePostByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! } -# All input for the \`deletePost\` mutation. +\\"\\"\\"All input for the \`deletePost\` mutation.\\"\\"\\" input DeletePostInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`Post\` to be deleted. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`Post\` to be deleted. + \\"\\"\\" nodeId: ID! } -# The output of our delete \`Post\` mutation. +\\"\\"\\"The output of our delete \`Post\` mutation.\\"\\"\\" type DeletePostPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String deletedPostId: ID - # Reads a single \`Person\` that is related to this \`Post\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`Post\`.\\"\\"\\" personByAuthorId: Person - # The \`Post\` that was deleted by this mutation. + \\"\\"\\"The \`Post\` that was deleted by this mutation.\\"\\"\\" post: Post - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" postEdge( - # The method to use when ordering \`Post\`. + \\"\\"\\"The method to use when ordering \`Post\`.\\"\\"\\" orderBy: [PostsOrderBy!] = [PRIMARY_KEY_ASC] ): PostsEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`deleteReservedById\` mutation. +\\"\\"\\"All input for the \`deleteReservedById\` mutation.\\"\\"\\" input DeleteReservedByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! } -# All input for the \`deleteReserved\` mutation. +\\"\\"\\"All input for the \`deleteReserved\` mutation.\\"\\"\\" input DeleteReservedInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`Reserved\` to be deleted. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`Reserved\` to be deleted. + \\"\\"\\" nodeId: ID! } -# All input for the \`deleteReservedInputRecordById\` mutation. +\\"\\"\\"All input for the \`deleteReservedInputRecordById\` mutation.\\"\\"\\" input DeleteReservedInputRecordByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! } -# All input for the \`deleteReservedInputRecord\` mutation. +\\"\\"\\"All input for the \`deleteReservedInputRecord\` mutation.\\"\\"\\" input DeleteReservedInputRecordInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`ReservedInputRecord\` to be deleted. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`ReservedInputRecord\` to be deleted. + \\"\\"\\" nodeId: ID! } -# The output of our delete \`ReservedInputRecord\` mutation. +\\"\\"\\"The output of our delete \`ReservedInputRecord\` mutation.\\"\\"\\" type DeleteReservedInputRecordPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String deletedReservedInputId: ID - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`ReservedInputRecord\` that was deleted by this mutation. + \\"\\"\\"The \`ReservedInputRecord\` that was deleted by this mutation.\\"\\"\\" reservedInputRecord: ReservedInputRecord - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" reservedInputRecordEdge( - # The method to use when ordering \`ReservedInputRecord\`. + \\"\\"\\"The method to use when ordering \`ReservedInputRecord\`.\\"\\"\\" orderBy: [ReservedInputRecordsOrderBy!] = [PRIMARY_KEY_ASC] ): ReservedInputRecordsEdge } -# All input for the \`deleteReservedPatchRecordById\` mutation. +\\"\\"\\"All input for the \`deleteReservedPatchRecordById\` mutation.\\"\\"\\" input DeleteReservedPatchRecordByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! } -# All input for the \`deleteReservedPatchRecord\` mutation. +\\"\\"\\"All input for the \`deleteReservedPatchRecord\` mutation.\\"\\"\\" input DeleteReservedPatchRecordInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`ReservedPatchRecord\` to be deleted. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`ReservedPatchRecord\` to be deleted. + \\"\\"\\" nodeId: ID! } -# The output of our delete \`ReservedPatchRecord\` mutation. +\\"\\"\\"The output of our delete \`ReservedPatchRecord\` mutation.\\"\\"\\" type DeleteReservedPatchRecordPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String deletedReservedPatchId: ID - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`ReservedPatchRecord\` that was deleted by this mutation. + \\"\\"\\"The \`ReservedPatchRecord\` that was deleted by this mutation.\\"\\"\\" reservedPatchRecord: ReservedPatchRecord - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" reservedPatchRecordEdge( - # The method to use when ordering \`ReservedPatchRecord\`. + \\"\\"\\"The method to use when ordering \`ReservedPatchRecord\`.\\"\\"\\" orderBy: [ReservedPatchRecordsOrderBy!] = [PRIMARY_KEY_ASC] ): ReservedPatchRecordsEdge } -# The output of our delete \`Reserved\` mutation. +\\"\\"\\"The output of our delete \`Reserved\` mutation.\\"\\"\\" type DeleteReservedPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String deletedReservedId: ID - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`Reserved\` that was deleted by this mutation. + \\"\\"\\"The \`Reserved\` that was deleted by this mutation.\\"\\"\\" reserved: Reserved - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" reservedEdge( - # The method to use when ordering \`Reserved\`. + \\"\\"\\"The method to use when ordering \`Reserved\`.\\"\\"\\" orderBy: [ReservedsOrderBy!] = [PRIMARY_KEY_ASC] ): ReservedsEdge } -# All input for the \`deleteSimilarTable1ById\` mutation. +\\"\\"\\"All input for the \`deleteSimilarTable1ById\` mutation.\\"\\"\\" input DeleteSimilarTable1ByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! } -# All input for the \`deleteSimilarTable1\` mutation. +\\"\\"\\"All input for the \`deleteSimilarTable1\` mutation.\\"\\"\\" input DeleteSimilarTable1Input { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`SimilarTable1\` to be deleted. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`SimilarTable1\` to be deleted. + \\"\\"\\" nodeId: ID! } -# The output of our delete \`SimilarTable1\` mutation. +\\"\\"\\"The output of our delete \`SimilarTable1\` mutation.\\"\\"\\" type DeleteSimilarTable1Payload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String deletedSimilarTable1Id: ID - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`SimilarTable1\` that was deleted by this mutation. + \\"\\"\\"The \`SimilarTable1\` that was deleted by this mutation.\\"\\"\\" similarTable1: SimilarTable1 - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" similarTable1Edge( - # The method to use when ordering \`SimilarTable1\`. + \\"\\"\\"The method to use when ordering \`SimilarTable1\`.\\"\\"\\" orderBy: [SimilarTable1SOrderBy!] = [PRIMARY_KEY_ASC] ): SimilarTable1SEdge } -# All input for the \`deleteSimilarTable2ById\` mutation. +\\"\\"\\"All input for the \`deleteSimilarTable2ById\` mutation.\\"\\"\\" input DeleteSimilarTable2ByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! } -# All input for the \`deleteSimilarTable2\` mutation. +\\"\\"\\"All input for the \`deleteSimilarTable2\` mutation.\\"\\"\\" input DeleteSimilarTable2Input { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`SimilarTable2\` to be deleted. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`SimilarTable2\` to be deleted. + \\"\\"\\" nodeId: ID! } -# The output of our delete \`SimilarTable2\` mutation. +\\"\\"\\"The output of our delete \`SimilarTable2\` mutation.\\"\\"\\" type DeleteSimilarTable2Payload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String deletedSimilarTable2Id: ID - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`SimilarTable2\` that was deleted by this mutation. + \\"\\"\\"The \`SimilarTable2\` that was deleted by this mutation.\\"\\"\\" similarTable2: SimilarTable2 - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" similarTable2Edge( - # The method to use when ordering \`SimilarTable2\`. + \\"\\"\\"The method to use when ordering \`SimilarTable2\`.\\"\\"\\" orderBy: [SimilarTable2SOrderBy!] = [PRIMARY_KEY_ASC] ): SimilarTable2SEdge } -# All input for the \`deleteTypeById\` mutation. +\\"\\"\\"All input for the \`deleteTypeById\` mutation.\\"\\"\\" input DeleteTypeByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! } -# All input for the \`deleteType\` mutation. +\\"\\"\\"All input for the \`deleteType\` mutation.\\"\\"\\" input DeleteTypeInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`Type\` to be deleted. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`Type\` to be deleted. + \\"\\"\\" nodeId: ID! } -# The output of our delete \`Type\` mutation. +\\"\\"\\"The output of our delete \`Type\` mutation.\\"\\"\\" type DeleteTypePayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String deletedTypeId: ID - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`Type\` that was deleted by this mutation. + \\"\\"\\"The \`Type\` that was deleted by this mutation.\\"\\"\\" type: Type - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" typeEdge( - # The method to use when ordering \`Type\`. + \\"\\"\\"The method to use when ordering \`Type\`.\\"\\"\\" orderBy: [TypesOrderBy!] = [PRIMARY_KEY_ASC] ): TypesEdge } -# All input for the \`deleteViewTableById\` mutation. +\\"\\"\\"All input for the \`deleteViewTableById\` mutation.\\"\\"\\" input DeleteViewTableByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! } -# All input for the \`deleteViewTable\` mutation. +\\"\\"\\"All input for the \`deleteViewTable\` mutation.\\"\\"\\" input DeleteViewTableInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`ViewTable\` to be deleted. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`ViewTable\` to be deleted. + \\"\\"\\" nodeId: ID! } -# The output of our delete \`ViewTable\` mutation. +\\"\\"\\"The output of our delete \`ViewTable\` mutation.\\"\\"\\" type DeleteViewTablePayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String deletedViewTableId: ID - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`ViewTable\` that was deleted by this mutation. + \\"\\"\\"The \`ViewTable\` that was deleted by this mutation.\\"\\"\\" viewTable: ViewTable - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" viewTableEdge( - # The method to use when ordering \`ViewTable\`. + \\"\\"\\"The method to use when ordering \`ViewTable\`.\\"\\"\\" orderBy: [ViewTablesOrderBy!] = [PRIMARY_KEY_ASC] ): ViewTablesEdge } @@ -3984,51 +4746,55 @@ type EdgeCase { wontCastEasy: Int } -# A condition to be used against \`EdgeCase\` object types. All fields are tested -# for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`EdgeCase\` object types. All fields are tested +for equality and combined with a logical ‘and.’ +\\"\\"\\" input EdgeCaseCondition { - # Checks for equality with the object’s \`notNullHasDefault\` field. + \\"\\"\\"Checks for equality with the object’s \`notNullHasDefault\` field.\\"\\"\\" notNullHasDefault: Boolean - # Checks for equality with the object’s \`rowId\` field. + \\"\\"\\"Checks for equality with the object’s \`rowId\` field.\\"\\"\\" rowId: Int - # Checks for equality with the object’s \`wontCastEasy\` field. + \\"\\"\\"Checks for equality with the object’s \`wontCastEasy\` field.\\"\\"\\" wontCastEasy: Int } -# An input for mutations affecting \`EdgeCase\` +\\"\\"\\"An input for mutations affecting \`EdgeCase\`\\"\\"\\" input EdgeCaseInput { notNullHasDefault: Boolean rowId: Int wontCastEasy: Int } -# A connection to a list of \`EdgeCase\` values. +\\"\\"\\"A connection to a list of \`EdgeCase\` values.\\"\\"\\" type EdgeCasesConnection { - # A list of edges which contains the \`EdgeCase\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`EdgeCase\` and cursor to aid in pagination. + \\"\\"\\" edges: [EdgeCasesEdge!]! - # A list of \`EdgeCase\` objects. + \\"\\"\\"A list of \`EdgeCase\` objects.\\"\\"\\" nodes: [EdgeCase]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`EdgeCase\` you could get from the connection. + \\"\\"\\"The count of *all* \`EdgeCase\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`EdgeCase\` edge in the connection. +\\"\\"\\"A \`EdgeCase\` edge in the connection.\\"\\"\\" type EdgeCasesEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`EdgeCase\` at the end of the edge. + \\"\\"\\"The \`EdgeCase\` at the end of the edge.\\"\\"\\" node: EdgeCase! } -# Methods to use when ordering \`EdgeCase\`. +\\"\\"\\"Methods to use when ordering \`EdgeCase\`.\\"\\"\\" enum EdgeCasesOrderBy { NATURAL NOT_NULL_HAS_DEFAULT_ASC @@ -4054,21 +4820,23 @@ enum EnumWithEmptyString { TWO } -# The value at one end of a range. A range can either include this value, or not. +\\"\\"\\" +The value at one end of a range. A range can either include this value, or not. +\\"\\"\\" input FloatRangeBoundInput { - # Whether or not the value of this bound is included in the range. + \\"\\"\\"Whether or not the value of this bound is included in the range.\\"\\"\\" inclusive: Boolean! - # The value at one end of our range. + \\"\\"\\"The value at one end of our range.\\"\\"\\" value: Float! } -# A range of \`Float\`. +\\"\\"\\"A range of \`Float\`.\\"\\"\\" input FloatRangeInput { - # The ending bound of our range. + \\"\\"\\"The ending bound of our range.\\"\\"\\" end: FloatRangeBoundInput - # The starting bound of our range. + \\"\\"\\"The starting bound of our range.\\"\\"\\" start: FloatRangeBoundInput } @@ -4076,59 +4844,63 @@ type ForeignKey { compoundKey1: Int compoundKey2: Int - # Reads a single \`CompoundKey\` that is related to this \`ForeignKey\`. + \\"\\"\\"Reads a single \`CompoundKey\` that is related to this \`ForeignKey\`.\\"\\"\\" compoundKeyByCompoundKey1AndCompoundKey2: CompoundKey - # Reads a single \`Person\` that is related to this \`ForeignKey\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`ForeignKey\`.\\"\\"\\" personByPersonId: Person personId: Int } -# A condition to be used against \`ForeignKey\` object types. All fields are tested -# for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`ForeignKey\` object types. All fields are tested +for equality and combined with a logical ‘and.’ +\\"\\"\\" input ForeignKeyCondition { - # Checks for equality with the object’s \`compoundKey1\` field. + \\"\\"\\"Checks for equality with the object’s \`compoundKey1\` field.\\"\\"\\" compoundKey1: Int - # Checks for equality with the object’s \`compoundKey2\` field. + \\"\\"\\"Checks for equality with the object’s \`compoundKey2\` field.\\"\\"\\" compoundKey2: Int - # Checks for equality with the object’s \`personId\` field. + \\"\\"\\"Checks for equality with the object’s \`personId\` field.\\"\\"\\" personId: Int } -# An input for mutations affecting \`ForeignKey\` +\\"\\"\\"An input for mutations affecting \`ForeignKey\`\\"\\"\\" input ForeignKeyInput { compoundKey1: Int compoundKey2: Int personId: Int } -# A connection to a list of \`ForeignKey\` values. +\\"\\"\\"A connection to a list of \`ForeignKey\` values.\\"\\"\\" type ForeignKeysConnection { - # A list of edges which contains the \`ForeignKey\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`ForeignKey\` and cursor to aid in pagination. + \\"\\"\\" edges: [ForeignKeysEdge!]! - # A list of \`ForeignKey\` objects. + \\"\\"\\"A list of \`ForeignKey\` objects.\\"\\"\\" nodes: [ForeignKey]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`ForeignKey\` you could get from the connection. + \\"\\"\\"The count of *all* \`ForeignKey\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`ForeignKey\` edge in the connection. +\\"\\"\\"A \`ForeignKey\` edge in the connection.\\"\\"\\" type ForeignKeysEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`ForeignKey\` at the end of the edge. + \\"\\"\\"The \`ForeignKey\` at the end of the edge.\\"\\"\\" node: ForeignKey! } -# Methods to use when ordering \`ForeignKey\`. +\\"\\"\\"Methods to use when ordering \`ForeignKey\`.\\"\\"\\" enum ForeignKeysOrderBy { COMPOUND_KEY_1_ASC COMPOUND_KEY_1_DESC @@ -4141,74 +4913,88 @@ enum ForeignKeysOrderBy { scalar Guid -# All input for the \`guidFn\` mutation. +\\"\\"\\"All input for the \`guidFn\` mutation.\\"\\"\\" input GuidFnInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String g: Guid } -# The output of our \`guidFn\` mutation. +\\"\\"\\"The output of our \`guidFn\` mutation.\\"\\"\\" type GuidFnPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String guid: Guid - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# Should output as Input +\\"\\"\\"Should output as Input\\"\\"\\" type Input implements Node { id: Int! - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" nodeId: ID! } -# A condition to be used against \`Input\` object types. All fields are tested for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`Input\` object types. All fields are tested for equality and combined with a logical ‘and.’ +\\"\\"\\" input InputCondition { - # Checks for equality with the object’s \`id\` field. + \\"\\"\\"Checks for equality with the object’s \`id\` field.\\"\\"\\" id: Int } -# An input for mutations affecting \`Input\` +\\"\\"\\"An input for mutations affecting \`Input\`\\"\\"\\" input InputInput { id: Int } -# Represents an update to a \`Input\`. Fields that are set will be updated. +\\"\\"\\" +Represents an update to a \`Input\`. Fields that are set will be updated. +\\"\\"\\" input InputPatch { id: Int } -# A connection to a list of \`Input\` values. +\\"\\"\\"A connection to a list of \`Input\` values.\\"\\"\\" type InputsConnection { - # A list of edges which contains the \`Input\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`Input\` and cursor to aid in pagination. + \\"\\"\\" edges: [InputsEdge!]! - # A list of \`Input\` objects. + \\"\\"\\"A list of \`Input\` objects.\\"\\"\\" nodes: [Input]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`Input\` you could get from the connection. + \\"\\"\\"The count of *all* \`Input\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`Input\` edge in the connection. +\\"\\"\\"A \`Input\` edge in the connection.\\"\\"\\" type InputsEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`Input\` at the end of the edge. + \\"\\"\\"The \`Input\` at the end of the edge.\\"\\"\\" node: Input! } -# Methods to use when ordering \`Input\`. +\\"\\"\\"Methods to use when ordering \`Input\`.\\"\\"\\" enum InputsOrderBy { ID_ASC ID_DESC @@ -4217,169 +5003,211 @@ enum InputsOrderBy { PRIMARY_KEY_DESC } -# An interval of time that has passed where the smallest distinct unit is a second. +\\"\\"\\" +An interval of time that has passed where the smallest distinct unit is a second. +\\"\\"\\" type Interval { - # A quantity of days. + \\"\\"\\"A quantity of days.\\"\\"\\" days: Int - # A quantity of hours. + \\"\\"\\"A quantity of hours.\\"\\"\\" hours: Int - # A quantity of minutes. + \\"\\"\\"A quantity of minutes.\\"\\"\\" minutes: Int - # A quantity of months. + \\"\\"\\"A quantity of months.\\"\\"\\" months: Int - # A quantity of seconds. This is the only non-integer field, as all the other - # fields will dump their overflow into a smaller unit of time. Intervals don’t - # have a smaller unit than seconds. + \\"\\"\\" + A quantity of seconds. This is the only non-integer field, as all the other + fields will dump their overflow into a smaller unit of time. Intervals don’t + have a smaller unit than seconds. + \\"\\"\\" seconds: Float - # A quantity of years. + \\"\\"\\"A quantity of years.\\"\\"\\" years: Int } -# An interval of time that has passed where the smallest distinct unit is a second. +\\"\\"\\" +An interval of time that has passed where the smallest distinct unit is a second. +\\"\\"\\" input IntervalInput { - # A quantity of days. + \\"\\"\\"A quantity of days.\\"\\"\\" days: Int - # A quantity of hours. + \\"\\"\\"A quantity of hours.\\"\\"\\" hours: Int - # A quantity of minutes. + \\"\\"\\"A quantity of minutes.\\"\\"\\" minutes: Int - # A quantity of months. + \\"\\"\\"A quantity of months.\\"\\"\\" months: Int - # A quantity of seconds. This is the only non-integer field, as all the other - # fields will dump their overflow into a smaller unit of time. Intervals don’t - # have a smaller unit than seconds. + \\"\\"\\" + A quantity of seconds. This is the only non-integer field, as all the other + fields will dump their overflow into a smaller unit of time. Intervals don’t + have a smaller unit than seconds. + \\"\\"\\" seconds: Float - # A quantity of years. + \\"\\"\\"A quantity of years.\\"\\"\\" years: Int } -# All input for the \`intSetMutation\` mutation. +\\"\\"\\"All input for the \`intSetMutation\` mutation.\\"\\"\\" input IntSetMutationInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String x: Int y: Int z: Int } -# The output of our \`intSetMutation\` mutation. +\\"\\"\\"The output of our \`intSetMutation\` mutation.\\"\\"\\" type IntSetMutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String integers: [Int] - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# A connection to a list of \`Int\` values. +\\"\\"\\"A connection to a list of \`Int\` values.\\"\\"\\" type IntSetQueryConnection { - # A list of edges which contains the \`Int\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`Int\` and cursor to aid in pagination. + \\"\\"\\" edges: [IntSetQueryEdge!]! - # A list of \`Int\` objects. + \\"\\"\\"A list of \`Int\` objects.\\"\\"\\" nodes: [Int]! } -# A \`Int\` edge in the connection. +\\"\\"\\"A \`Int\` edge in the connection.\\"\\"\\" type IntSetQueryEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`Int\` at the end of the edge. + \\"\\"\\"The \`Int\` at the end of the edge.\\"\\"\\" node: Int } -# A JavaScript object encoded in the JSON format as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). +\\"\\"\\" +A JavaScript object encoded in the JSON format as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). +\\"\\"\\" scalar JSON -# All input for the \`jsonbIdentityMutation\` mutation. +\\"\\"\\"All input for the \`jsonbIdentityMutation\` mutation.\\"\\"\\" input JsonbIdentityMutationInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String json: JSON } -# The output of our \`jsonbIdentityMutation\` mutation. +\\"\\"\\"The output of our \`jsonbIdentityMutation\` mutation.\\"\\"\\" type JsonbIdentityMutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String json: JSON - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`jsonbIdentityMutationPlpgsql\` mutation. +\\"\\"\\"All input for the \`jsonbIdentityMutationPlpgsql\` mutation.\\"\\"\\" input JsonbIdentityMutationPlpgsqlInput { _theJson: JSON! - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`jsonbIdentityMutationPlpgsql\` mutation. +\\"\\"\\"The output of our \`jsonbIdentityMutationPlpgsql\` mutation.\\"\\"\\" type JsonbIdentityMutationPlpgsqlPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String json: JSON - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`jsonbIdentityMutationPlpgsqlWithDefault\` mutation. +\\"\\"\\"All input for the \`jsonbIdentityMutationPlpgsqlWithDefault\` mutation.\\"\\"\\" input JsonbIdentityMutationPlpgsqlWithDefaultInput { _theJson: JSON - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`jsonbIdentityMutationPlpgsqlWithDefault\` mutation. +\\"\\"\\"The output of our \`jsonbIdentityMutationPlpgsqlWithDefault\` mutation.\\"\\"\\" type JsonbIdentityMutationPlpgsqlWithDefaultPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String json: JSON - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`jsonIdentityMutation\` mutation. +\\"\\"\\"All input for the \`jsonIdentityMutation\` mutation.\\"\\"\\" input JsonIdentityMutationInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String json: JSON } -# The output of our \`jsonIdentityMutation\` mutation. +\\"\\"\\"The output of our \`jsonIdentityMutation\` mutation.\\"\\"\\" type JsonIdentityMutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String json: JSON - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } @@ -4391,635 +5219,875 @@ type JwtToken { role: String } -# All input for the \`mult1\` mutation. +\\"\\"\\"All input for the \`mult1\` mutation.\\"\\"\\" input Mult1Input { arg0: Int arg1: Int - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`mult1\` mutation. +\\"\\"\\"The output of our \`mult1\` mutation.\\"\\"\\" type Mult1Payload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String integer: Int - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`mult2\` mutation. +\\"\\"\\"All input for the \`mult2\` mutation.\\"\\"\\" input Mult2Input { arg0: Int arg1: Int - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`mult2\` mutation. +\\"\\"\\"The output of our \`mult2\` mutation.\\"\\"\\" type Mult2Payload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String integer: Int - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`mult3\` mutation. +\\"\\"\\"All input for the \`mult3\` mutation.\\"\\"\\" input Mult3Input { arg0: Int! arg1: Int! - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`mult3\` mutation. +\\"\\"\\"The output of our \`mult3\` mutation.\\"\\"\\" type Mult3Payload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String integer: Int - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`mult4\` mutation. +\\"\\"\\"All input for the \`mult4\` mutation.\\"\\"\\" input Mult4Input { arg0: Int! arg1: Int! - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`mult4\` mutation. +\\"\\"\\"The output of our \`mult4\` mutation.\\"\\"\\" type Mult4Payload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String integer: Int - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# The root mutation type which contains root level fields which mutate data. +\\"\\"\\" +The root mutation type which contains root level fields which mutate data. +\\"\\"\\" type Mutation { - # lol, add some stuff 1 mutation + \\"\\"\\"lol, add some stuff 1 mutation\\"\\"\\" add1Mutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: Add1MutationInput! ): Add1MutationPayload - # lol, add some stuff 2 mutation + \\"\\"\\"lol, add some stuff 2 mutation\\"\\"\\" add2Mutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: Add2MutationInput! ): Add2MutationPayload - # lol, add some stuff 3 mutation + \\"\\"\\"lol, add some stuff 3 mutation\\"\\"\\" add3Mutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: Add3MutationInput! ): Add3MutationPayload - # lol, add some stuff 4 mutation + \\"\\"\\"lol, add some stuff 4 mutation\\"\\"\\" add4Mutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: Add4MutationInput! ): Add4MutationPayload add4MutationError( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: Add4MutationErrorInput! ): Add4MutationErrorPayload authenticate( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: AuthenticateInput! ): AuthenticatePayload authenticateFail( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: AuthenticateFailInput! ): AuthenticateFailPayload authenticateMany( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: AuthenticateManyInput! ): AuthenticateManyPayload compoundTypeMutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CompoundTypeMutationInput! ): CompoundTypeMutationPayload - # Creates a single \`CompoundKey\`. + \\"\\"\\"Creates a single \`CompoundKey\`.\\"\\"\\" createCompoundKey( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreateCompoundKeyInput! ): CreateCompoundKeyPayload - # Creates a single \`DefaultValue\`. + \\"\\"\\"Creates a single \`DefaultValue\`.\\"\\"\\" createDefaultValue( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreateDefaultValueInput! ): CreateDefaultValuePayload - # Creates a single \`EdgeCase\`. + \\"\\"\\"Creates a single \`EdgeCase\`.\\"\\"\\" createEdgeCase( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreateEdgeCaseInput! ): CreateEdgeCasePayload - # Creates a single \`ForeignKey\`. + \\"\\"\\"Creates a single \`ForeignKey\`.\\"\\"\\" createForeignKey( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreateForeignKeyInput! ): CreateForeignKeyPayload - # Creates a single \`Input\`. + \\"\\"\\"Creates a single \`Input\`.\\"\\"\\" createInput( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreateInputInput! ): CreateInputPayload - # Creates a single \`Patch\`. + \\"\\"\\"Creates a single \`Patch\`.\\"\\"\\" createPatch( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreatePatchInput! ): CreatePatchPayload - # Creates a single \`Person\`. + \\"\\"\\"Creates a single \`Person\`.\\"\\"\\" createPerson( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreatePersonInput! ): CreatePersonPayload - # Creates a single \`Post\`. + \\"\\"\\"Creates a single \`Post\`.\\"\\"\\" createPost( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreatePostInput! ): CreatePostPayload - # Creates a single \`Reserved\`. + \\"\\"\\"Creates a single \`Reserved\`.\\"\\"\\" createReserved( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreateReservedInput! ): CreateReservedPayload - # Creates a single \`ReservedInputRecord\`. + \\"\\"\\"Creates a single \`ReservedInputRecord\`.\\"\\"\\" createReservedInputRecord( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreateReservedInputRecordInput! ): CreateReservedInputRecordPayload - # Creates a single \`ReservedPatchRecord\`. + \\"\\"\\"Creates a single \`ReservedPatchRecord\`.\\"\\"\\" createReservedPatchRecord( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreateReservedPatchRecordInput! ): CreateReservedPatchRecordPayload - # Creates a single \`SimilarTable1\`. + \\"\\"\\"Creates a single \`SimilarTable1\`.\\"\\"\\" createSimilarTable1( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreateSimilarTable1Input! ): CreateSimilarTable1Payload - # Creates a single \`SimilarTable2\`. + \\"\\"\\"Creates a single \`SimilarTable2\`.\\"\\"\\" createSimilarTable2( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreateSimilarTable2Input! ): CreateSimilarTable2Payload - # Creates a single \`Testview\`. + \\"\\"\\"Creates a single \`Testview\`.\\"\\"\\" createTestview( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreateTestviewInput! ): CreateTestviewPayload - # Creates a single \`Type\`. + \\"\\"\\"Creates a single \`Type\`.\\"\\"\\" createType( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreateTypeInput! ): CreateTypePayload - # Creates a single \`UpdatableView\`. + \\"\\"\\"Creates a single \`UpdatableView\`.\\"\\"\\" createUpdatableView( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreateUpdatableViewInput! ): CreateUpdatableViewPayload - # Creates a single \`ViewTable\`. + \\"\\"\\"Creates a single \`ViewTable\`.\\"\\"\\" createViewTable( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreateViewTableInput! ): CreateViewTablePayload - # Deletes a single \`CompoundKey\` using its globally unique id. + \\"\\"\\"Deletes a single \`CompoundKey\` using its globally unique id.\\"\\"\\" deleteCompoundKey( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteCompoundKeyInput! ): DeleteCompoundKeyPayload - # Deletes a single \`CompoundKey\` using a unique key. + \\"\\"\\"Deletes a single \`CompoundKey\` using a unique key.\\"\\"\\" deleteCompoundKeyByPersonId1AndPersonId2( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteCompoundKeyByPersonId1AndPersonId2Input! ): DeleteCompoundKeyPayload - # Deletes a single \`DefaultValue\` using its globally unique id. + \\"\\"\\"Deletes a single \`DefaultValue\` using its globally unique id.\\"\\"\\" deleteDefaultValue( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteDefaultValueInput! ): DeleteDefaultValuePayload - # Deletes a single \`DefaultValue\` using a unique key. + \\"\\"\\"Deletes a single \`DefaultValue\` using a unique key.\\"\\"\\" deleteDefaultValueById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteDefaultValueByIdInput! ): DeleteDefaultValuePayload - # Deletes a single \`Input\` using its globally unique id. + \\"\\"\\"Deletes a single \`Input\` using its globally unique id.\\"\\"\\" deleteInput( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteInputInput! ): DeleteInputPayload - # Deletes a single \`Input\` using a unique key. + \\"\\"\\"Deletes a single \`Input\` using a unique key.\\"\\"\\" deleteInputById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteInputByIdInput! ): DeleteInputPayload - # Deletes a single \`Patch\` using its globally unique id. + \\"\\"\\"Deletes a single \`Patch\` using its globally unique id.\\"\\"\\" deletePatch( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeletePatchInput! ): DeletePatchPayload - # Deletes a single \`Patch\` using a unique key. + \\"\\"\\"Deletes a single \`Patch\` using a unique key.\\"\\"\\" deletePatchById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeletePatchByIdInput! ): DeletePatchPayload - # Deletes a single \`Person\` using its globally unique id. + \\"\\"\\"Deletes a single \`Person\` using its globally unique id.\\"\\"\\" deletePerson( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeletePersonInput! ): DeletePersonPayload - # Deletes a single \`Person\` using a unique key. + \\"\\"\\"Deletes a single \`Person\` using a unique key.\\"\\"\\" deletePersonByEmail( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeletePersonByEmailInput! ): DeletePersonPayload - # Deletes a single \`Person\` using a unique key. + \\"\\"\\"Deletes a single \`Person\` using a unique key.\\"\\"\\" deletePersonById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeletePersonByIdInput! ): DeletePersonPayload - # Deletes a single \`Post\` using its globally unique id. + \\"\\"\\"Deletes a single \`Post\` using its globally unique id.\\"\\"\\" deletePost( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeletePostInput! ): DeletePostPayload - # Deletes a single \`Post\` using a unique key. + \\"\\"\\"Deletes a single \`Post\` using a unique key.\\"\\"\\" deletePostById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeletePostByIdInput! ): DeletePostPayload - # Deletes a single \`Reserved\` using its globally unique id. + \\"\\"\\"Deletes a single \`Reserved\` using its globally unique id.\\"\\"\\" deleteReserved( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteReservedInput! ): DeleteReservedPayload - # Deletes a single \`Reserved\` using a unique key. + \\"\\"\\"Deletes a single \`Reserved\` using a unique key.\\"\\"\\" deleteReservedById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteReservedByIdInput! ): DeleteReservedPayload - # Deletes a single \`ReservedInputRecord\` using its globally unique id. + \\"\\"\\"Deletes a single \`ReservedInputRecord\` using its globally unique id.\\"\\"\\" deleteReservedInputRecord( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteReservedInputRecordInput! ): DeleteReservedInputRecordPayload - # Deletes a single \`ReservedInputRecord\` using a unique key. + \\"\\"\\"Deletes a single \`ReservedInputRecord\` using a unique key.\\"\\"\\" deleteReservedInputRecordById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteReservedInputRecordByIdInput! ): DeleteReservedInputRecordPayload - # Deletes a single \`ReservedPatchRecord\` using its globally unique id. + \\"\\"\\"Deletes a single \`ReservedPatchRecord\` using its globally unique id.\\"\\"\\" deleteReservedPatchRecord( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteReservedPatchRecordInput! ): DeleteReservedPatchRecordPayload - # Deletes a single \`ReservedPatchRecord\` using a unique key. + \\"\\"\\"Deletes a single \`ReservedPatchRecord\` using a unique key.\\"\\"\\" deleteReservedPatchRecordById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteReservedPatchRecordByIdInput! ): DeleteReservedPatchRecordPayload - # Deletes a single \`SimilarTable1\` using its globally unique id. + \\"\\"\\"Deletes a single \`SimilarTable1\` using its globally unique id.\\"\\"\\" deleteSimilarTable1( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteSimilarTable1Input! ): DeleteSimilarTable1Payload - # Deletes a single \`SimilarTable1\` using a unique key. + \\"\\"\\"Deletes a single \`SimilarTable1\` using a unique key.\\"\\"\\" deleteSimilarTable1ById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteSimilarTable1ByIdInput! ): DeleteSimilarTable1Payload - # Deletes a single \`SimilarTable2\` using its globally unique id. + \\"\\"\\"Deletes a single \`SimilarTable2\` using its globally unique id.\\"\\"\\" deleteSimilarTable2( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteSimilarTable2Input! ): DeleteSimilarTable2Payload - # Deletes a single \`SimilarTable2\` using a unique key. + \\"\\"\\"Deletes a single \`SimilarTable2\` using a unique key.\\"\\"\\" deleteSimilarTable2ById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteSimilarTable2ByIdInput! ): DeleteSimilarTable2Payload - # Deletes a single \`Type\` using its globally unique id. + \\"\\"\\"Deletes a single \`Type\` using its globally unique id.\\"\\"\\" deleteType( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteTypeInput! ): DeleteTypePayload - # Deletes a single \`Type\` using a unique key. + \\"\\"\\"Deletes a single \`Type\` using a unique key.\\"\\"\\" deleteTypeById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteTypeByIdInput! ): DeleteTypePayload - # Deletes a single \`ViewTable\` using its globally unique id. + \\"\\"\\"Deletes a single \`ViewTable\` using its globally unique id.\\"\\"\\" deleteViewTable( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteViewTableInput! ): DeleteViewTablePayload - # Deletes a single \`ViewTable\` using a unique key. + \\"\\"\\"Deletes a single \`ViewTable\` using a unique key.\\"\\"\\" deleteViewTableById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteViewTableByIdInput! ): DeleteViewTablePayload guidFn( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: GuidFnInput! ): GuidFnPayload intSetMutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: IntSetMutationInput! ): IntSetMutationPayload jsonIdentityMutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: JsonIdentityMutationInput! ): JsonIdentityMutationPayload jsonbIdentityMutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: JsonbIdentityMutationInput! ): JsonbIdentityMutationPayload jsonbIdentityMutationPlpgsql( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: JsonbIdentityMutationPlpgsqlInput! ): JsonbIdentityMutationPlpgsqlPayload jsonbIdentityMutationPlpgsqlWithDefault( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: JsonbIdentityMutationPlpgsqlWithDefaultInput! ): JsonbIdentityMutationPlpgsqlWithDefaultPayload mult1( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: Mult1Input! ): Mult1Payload mult2( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: Mult2Input! ): Mult2Payload mult3( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: Mult3Input! ): Mult3Payload mult4( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: Mult4Input! ): Mult4Payload noArgsMutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: NoArgsMutationInput! ): NoArgsMutationPayload normalRand( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: NormalRandInput! ): NormalRandPayload - # Reads and enables pagination through a set of \`Post\`. + \\"\\"\\"Reads and enables pagination through a set of \`Post\`.\\"\\"\\" postMany( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: PostManyInput! ): PostManyPayload postWithSuffix( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: PostWithSuffixInput! ): PostWithSuffixPayload returnVoidMutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: ReturnVoidMutationInput! ): ReturnVoidMutationPayload tableMutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: TableMutationInput! ): TableMutationPayload - # Reads and enables pagination through a set of \`Person\`. + \\"\\"\\"Reads and enables pagination through a set of \`Person\`.\\"\\"\\" tableSetMutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: TableSetMutationInput! ): TableSetMutationPayload typesMutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: TypesMutationInput! ): TypesMutationPayload - # Updates a single \`CompoundKey\` using its globally unique id and a patch. + \\"\\"\\" + Updates a single \`CompoundKey\` using its globally unique id and a patch. + \\"\\"\\" updateCompoundKey( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateCompoundKeyInput! ): UpdateCompoundKeyPayload - # Updates a single \`CompoundKey\` using a unique key and a patch. + \\"\\"\\"Updates a single \`CompoundKey\` using a unique key and a patch.\\"\\"\\" updateCompoundKeyByPersonId1AndPersonId2( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateCompoundKeyByPersonId1AndPersonId2Input! ): UpdateCompoundKeyPayload - # Updates a single \`DefaultValue\` using its globally unique id and a patch. + \\"\\"\\" + Updates a single \`DefaultValue\` using its globally unique id and a patch. + \\"\\"\\" updateDefaultValue( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateDefaultValueInput! ): UpdateDefaultValuePayload - # Updates a single \`DefaultValue\` using a unique key and a patch. + \\"\\"\\"Updates a single \`DefaultValue\` using a unique key and a patch.\\"\\"\\" updateDefaultValueById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateDefaultValueByIdInput! ): UpdateDefaultValuePayload - # Updates a single \`Input\` using its globally unique id and a patch. + \\"\\"\\"Updates a single \`Input\` using its globally unique id and a patch.\\"\\"\\" updateInput( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateInputInput! ): UpdateInputPayload - # Updates a single \`Input\` using a unique key and a patch. + \\"\\"\\"Updates a single \`Input\` using a unique key and a patch.\\"\\"\\" updateInputById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateInputByIdInput! ): UpdateInputPayload - # Updates a single \`Patch\` using its globally unique id and a patch. + \\"\\"\\"Updates a single \`Patch\` using its globally unique id and a patch.\\"\\"\\" updatePatch( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdatePatchInput! ): UpdatePatchPayload - # Updates a single \`Patch\` using a unique key and a patch. + \\"\\"\\"Updates a single \`Patch\` using a unique key and a patch.\\"\\"\\" updatePatchById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdatePatchByIdInput! ): UpdatePatchPayload - # Updates a single \`Person\` using its globally unique id and a patch. + \\"\\"\\"Updates a single \`Person\` using its globally unique id and a patch.\\"\\"\\" updatePerson( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdatePersonInput! ): UpdatePersonPayload - # Updates a single \`Person\` using a unique key and a patch. + \\"\\"\\"Updates a single \`Person\` using a unique key and a patch.\\"\\"\\" updatePersonByEmail( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdatePersonByEmailInput! ): UpdatePersonPayload - # Updates a single \`Person\` using a unique key and a patch. + \\"\\"\\"Updates a single \`Person\` using a unique key and a patch.\\"\\"\\" updatePersonById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdatePersonByIdInput! ): UpdatePersonPayload - # Updates a single \`Post\` using its globally unique id and a patch. + \\"\\"\\"Updates a single \`Post\` using its globally unique id and a patch.\\"\\"\\" updatePost( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdatePostInput! ): UpdatePostPayload - # Updates a single \`Post\` using a unique key and a patch. + \\"\\"\\"Updates a single \`Post\` using a unique key and a patch.\\"\\"\\" updatePostById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdatePostByIdInput! ): UpdatePostPayload - # Updates a single \`Reserved\` using its globally unique id and a patch. + \\"\\"\\"Updates a single \`Reserved\` using its globally unique id and a patch.\\"\\"\\" updateReserved( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateReservedInput! ): UpdateReservedPayload - # Updates a single \`Reserved\` using a unique key and a patch. + \\"\\"\\"Updates a single \`Reserved\` using a unique key and a patch.\\"\\"\\" updateReservedById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateReservedByIdInput! ): UpdateReservedPayload - # Updates a single \`ReservedInputRecord\` using its globally unique id and a patch. + \\"\\"\\" + Updates a single \`ReservedInputRecord\` using its globally unique id and a patch. + \\"\\"\\" updateReservedInputRecord( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateReservedInputRecordInput! ): UpdateReservedInputRecordPayload - # Updates a single \`ReservedInputRecord\` using a unique key and a patch. + \\"\\"\\" + Updates a single \`ReservedInputRecord\` using a unique key and a patch. + \\"\\"\\" updateReservedInputRecordById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateReservedInputRecordByIdInput! ): UpdateReservedInputRecordPayload - # Updates a single \`ReservedPatchRecord\` using its globally unique id and a patch. + \\"\\"\\" + Updates a single \`ReservedPatchRecord\` using its globally unique id and a patch. + \\"\\"\\" updateReservedPatchRecord( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateReservedPatchRecordInput! ): UpdateReservedPatchRecordPayload - # Updates a single \`ReservedPatchRecord\` using a unique key and a patch. + \\"\\"\\" + Updates a single \`ReservedPatchRecord\` using a unique key and a patch. + \\"\\"\\" updateReservedPatchRecordById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateReservedPatchRecordByIdInput! ): UpdateReservedPatchRecordPayload - # Updates a single \`SimilarTable1\` using its globally unique id and a patch. + \\"\\"\\" + Updates a single \`SimilarTable1\` using its globally unique id and a patch. + \\"\\"\\" updateSimilarTable1( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateSimilarTable1Input! ): UpdateSimilarTable1Payload - # Updates a single \`SimilarTable1\` using a unique key and a patch. + \\"\\"\\"Updates a single \`SimilarTable1\` using a unique key and a patch.\\"\\"\\" updateSimilarTable1ById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateSimilarTable1ByIdInput! ): UpdateSimilarTable1Payload - # Updates a single \`SimilarTable2\` using its globally unique id and a patch. + \\"\\"\\" + Updates a single \`SimilarTable2\` using its globally unique id and a patch. + \\"\\"\\" updateSimilarTable2( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateSimilarTable2Input! ): UpdateSimilarTable2Payload - # Updates a single \`SimilarTable2\` using a unique key and a patch. + \\"\\"\\"Updates a single \`SimilarTable2\` using a unique key and a patch.\\"\\"\\" updateSimilarTable2ById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateSimilarTable2ByIdInput! ): UpdateSimilarTable2Payload - # Updates a single \`Type\` using its globally unique id and a patch. + \\"\\"\\"Updates a single \`Type\` using its globally unique id and a patch.\\"\\"\\" updateType( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateTypeInput! ): UpdateTypePayload - # Updates a single \`Type\` using a unique key and a patch. + \\"\\"\\"Updates a single \`Type\` using a unique key and a patch.\\"\\"\\" updateTypeById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateTypeByIdInput! ): UpdateTypePayload - # Updates a single \`ViewTable\` using its globally unique id and a patch. + \\"\\"\\" + Updates a single \`ViewTable\` using its globally unique id and a patch. + \\"\\"\\" updateViewTable( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateViewTableInput! ): UpdateViewTablePayload - # Updates a single \`ViewTable\` using a unique key and a patch. + \\"\\"\\"Updates a single \`ViewTable\` using a unique key and a patch.\\"\\"\\" updateViewTableById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateViewTableByIdInput! ): UpdateViewTablePayload } @@ -5030,34 +6098,42 @@ type NestedCompoundType { bazBuz: Int } -# An input for mutations affecting \`NestedCompoundType\` +\\"\\"\\"An input for mutations affecting \`NestedCompoundType\`\\"\\"\\" input NestedCompoundTypeInput { a: CompoundTypeInput b: CompoundTypeInput bazBuz: Int } -# All input for the \`noArgsMutation\` mutation. +\\"\\"\\"All input for the \`noArgsMutation\` mutation.\\"\\"\\" input NoArgsMutationInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`noArgsMutation\` mutation. +\\"\\"\\"The output of our \`noArgsMutation\` mutation.\\"\\"\\" type NoArgsMutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String integer: Int - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# An object with a globally unique \`ID\`. +\\"\\"\\"An object with a globally unique \`ID\`.\\"\\"\\" interface Node { - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" nodeId: ID! } @@ -5065,122 +6141,140 @@ type NonUpdatableView { column: Int } -# A condition to be used against \`NonUpdatableView\` object types. All fields are -# tested for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`NonUpdatableView\` object types. All fields are +tested for equality and combined with a logical ‘and.’ +\\"\\"\\" input NonUpdatableViewCondition { - # Checks for equality with the object’s \`column\` field. + \\"\\"\\"Checks for equality with the object’s \`column\` field.\\"\\"\\" column: Int } -# A connection to a list of \`NonUpdatableView\` values. +\\"\\"\\"A connection to a list of \`NonUpdatableView\` values.\\"\\"\\" type NonUpdatableViewsConnection { - # A list of edges which contains the \`NonUpdatableView\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`NonUpdatableView\` and cursor to aid in pagination. + \\"\\"\\" edges: [NonUpdatableViewsEdge!]! - # A list of \`NonUpdatableView\` objects. + \\"\\"\\"A list of \`NonUpdatableView\` objects.\\"\\"\\" nodes: [NonUpdatableView]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`NonUpdatableView\` you could get from the connection. + \\"\\"\\" + The count of *all* \`NonUpdatableView\` you could get from the connection. + \\"\\"\\" totalCount: Int } -# A \`NonUpdatableView\` edge in the connection. +\\"\\"\\"A \`NonUpdatableView\` edge in the connection.\\"\\"\\" type NonUpdatableViewsEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`NonUpdatableView\` at the end of the edge. + \\"\\"\\"The \`NonUpdatableView\` at the end of the edge.\\"\\"\\" node: NonUpdatableView! } -# Methods to use when ordering \`NonUpdatableView\`. +\\"\\"\\"Methods to use when ordering \`NonUpdatableView\`.\\"\\"\\" enum NonUpdatableViewsOrderBy { COLUMN_ASC COLUMN_DESC NATURAL } -# All input for the \`normalRand\` mutation. +\\"\\"\\"All input for the \`normalRand\` mutation.\\"\\"\\" input NormalRandInput { arg0: Int! arg1: Float! arg2: Float! - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`normalRand\` mutation. +\\"\\"\\"The output of our \`normalRand\` mutation.\\"\\"\\" type NormalRandPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String floats: [Float] - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } scalar NotNullUrl -# Information about pagination in a connection. +\\"\\"\\"Information about pagination in a connection.\\"\\"\\" type PageInfo { - # When paginating forwards, the cursor to continue. + \\"\\"\\"When paginating forwards, the cursor to continue.\\"\\"\\" endCursor: Cursor - # When paginating forwards, are there more items? + \\"\\"\\"When paginating forwards, are there more items?\\"\\"\\" hasNextPage: Boolean! - # When paginating backwards, are there more items? + \\"\\"\\"When paginating backwards, are there more items?\\"\\"\\" hasPreviousPage: Boolean! - # When paginating backwards, the cursor to continue. + \\"\\"\\"When paginating backwards, the cursor to continue.\\"\\"\\" startCursor: Cursor } -# Should output as Patch +\\"\\"\\"Should output as Patch\\"\\"\\" type Patch implements Node { id: Int! - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" nodeId: ID! } -# A condition to be used against \`Patch\` object types. All fields are tested for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`Patch\` object types. All fields are tested for equality and combined with a logical ‘and.’ +\\"\\"\\" input PatchCondition { - # Checks for equality with the object’s \`id\` field. + \\"\\"\\"Checks for equality with the object’s \`id\` field.\\"\\"\\" id: Int } -# A connection to a list of \`Patch\` values. +\\"\\"\\"A connection to a list of \`Patch\` values.\\"\\"\\" type PatchesConnection { - # A list of edges which contains the \`Patch\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`Patch\` and cursor to aid in pagination. + \\"\\"\\" edges: [PatchesEdge!]! - # A list of \`Patch\` objects. + \\"\\"\\"A list of \`Patch\` objects.\\"\\"\\" nodes: [Patch]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`Patch\` you could get from the connection. + \\"\\"\\"The count of *all* \`Patch\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`Patch\` edge in the connection. +\\"\\"\\"A \`Patch\` edge in the connection.\\"\\"\\" type PatchesEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`Patch\` at the end of the edge. + \\"\\"\\"The \`Patch\` at the end of the edge.\\"\\"\\" node: Patch! } -# Methods to use when ordering \`Patch\`. +\\"\\"\\"Methods to use when ordering \`Patch\`.\\"\\"\\" enum PatchesOrderBy { ID_ASC ID_DESC @@ -5189,41 +6283,45 @@ enum PatchesOrderBy { PRIMARY_KEY_DESC } -# An input for mutations affecting \`Patch\` +\\"\\"\\"An input for mutations affecting \`Patch\`\\"\\"\\" input PatchInput { id: Int } -# Represents an update to a \`Patch\`. Fields that are set will be updated. +\\"\\"\\" +Represents an update to a \`Patch\`. Fields that are set will be updated. +\\"\\"\\" input PatchPatch { id: Int } -# A connection to a list of \`Person\` values. +\\"\\"\\"A connection to a list of \`Person\` values.\\"\\"\\" type PeopleConnection { - # A list of edges which contains the \`Person\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`Person\` and cursor to aid in pagination. + \\"\\"\\" edges: [PeopleEdge!]! - # A list of \`Person\` objects. + \\"\\"\\"A list of \`Person\` objects.\\"\\"\\" nodes: [Person]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`Person\` you could get from the connection. + \\"\\"\\"The count of *all* \`Person\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`Person\` edge in the connection. +\\"\\"\\"A \`Person\` edge in the connection.\\"\\"\\" type PeopleEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`Person\` at the end of the edge. + \\"\\"\\"The \`Person\` at the end of the edge.\\"\\"\\" node: Person! } -# Methods to use when ordering \`Person\`. +\\"\\"\\"Methods to use when ordering \`Person\`.\\"\\"\\" enum PeopleOrderBy { ABOUT_ASC ABOUT_DESC @@ -5244,58 +6342,66 @@ enum PeopleOrderBy { SITE_DESC } -# Person test comment +\\"\\"\\"Person test comment\\"\\"\\" type Person implements Node { about: String aliases: [String]! - # Reads and enables pagination through a set of \`CompoundKey\`. + \\"\\"\\"Reads and enables pagination through a set of \`CompoundKey\`.\\"\\"\\" compoundKeysByPersonId1( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: CompoundKeyCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`CompoundKey\`. + \\"\\"\\"The method to use when ordering \`CompoundKey\`.\\"\\"\\" orderBy: [CompoundKeysOrderBy!] = [PRIMARY_KEY_ASC] ): CompoundKeysConnection! - # Reads and enables pagination through a set of \`CompoundKey\`. + \\"\\"\\"Reads and enables pagination through a set of \`CompoundKey\`.\\"\\"\\" compoundKeysByPersonId2( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: CompoundKeyCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`CompoundKey\`. + \\"\\"\\"The method to use when ordering \`CompoundKey\`.\\"\\"\\" orderBy: [CompoundKeysOrderBy!] = [PRIMARY_KEY_ASC] ): CompoundKeysConnection! createdAt: Datetime @@ -5304,109 +6410,123 @@ type Person implements Node { firstName: String firstPost: Post - # Reads and enables pagination through a set of \`ForeignKey\`. + \\"\\"\\"Reads and enables pagination through a set of \`ForeignKey\`.\\"\\"\\" foreignKeysByPersonId( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: ForeignKeyCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`ForeignKey\`. + \\"\\"\\"The method to use when ordering \`ForeignKey\`.\\"\\"\\" orderBy: [ForeignKeysOrderBy!] = [NATURAL] ): ForeignKeysConnection! - # Reads and enables pagination through a set of \`Person\`. + \\"\\"\\"Reads and enables pagination through a set of \`Person\`.\\"\\"\\" friends( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int ): PeopleConnection! id: Int! - # The person’s name + \\"\\"\\"The person’s name\\"\\"\\" name: String! - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" nodeId: ID! - # Reads and enables pagination through a set of \`Post\`. + \\"\\"\\"Reads and enables pagination through a set of \`Post\`.\\"\\"\\" postsByAuthorId( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: PostCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`Post\`. + \\"\\"\\"The method to use when ordering \`Post\`.\\"\\"\\" orderBy: [PostsOrderBy!] = [PRIMARY_KEY_ASC] ): PostsConnection! site: WrappedUrl @deprecated(reason: \\"Don’t use me\\") } -# A condition to be used against \`Person\` object types. All fields are tested for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`Person\` object types. All fields are tested for equality and combined with a logical ‘and.’ +\\"\\"\\" input PersonCondition { - # Checks for equality with the object’s \`about\` field. + \\"\\"\\"Checks for equality with the object’s \`about\` field.\\"\\"\\" about: String - # Checks for equality with the object’s \`aliases\` field. + \\"\\"\\"Checks for equality with the object’s \`aliases\` field.\\"\\"\\" aliases: [String] - # Checks for equality with the object’s \`createdAt\` field. + \\"\\"\\"Checks for equality with the object’s \`createdAt\` field.\\"\\"\\" createdAt: Datetime - # Checks for equality with the object’s \`email\` field. + \\"\\"\\"Checks for equality with the object’s \`email\` field.\\"\\"\\" email: Email - # Checks for equality with the object’s \`id\` field. + \\"\\"\\"Checks for equality with the object’s \`id\` field.\\"\\"\\" id: Int - # Checks for equality with the object’s \`name\` field. + \\"\\"\\"Checks for equality with the object’s \`name\` field.\\"\\"\\" name: String - # Checks for equality with the object’s \`site\` field. + \\"\\"\\"Checks for equality with the object’s \`site\` field.\\"\\"\\" site: WrappedUrlInput } -# An input for mutations affecting \`Person\` +\\"\\"\\"An input for mutations affecting \`Person\`\\"\\"\\" input PersonInput { about: String aliases: [String] @@ -5414,12 +6534,14 @@ input PersonInput { email: Email! id: Int - # The person’s name + \\"\\"\\"The person’s name\\"\\"\\" name: String! site: WrappedUrlInput } -# Represents an update to a \`Person\`. Fields that are set will be updated. +\\"\\"\\" +Represents an update to a \`Person\`. Fields that are set will be updated. +\\"\\"\\" input PersonPatch { about: String aliases: [String] @@ -5427,7 +6549,7 @@ input PersonPatch { email: Email id: Int - # The person’s name + \\"\\"\\"The person’s name\\"\\"\\" name: String site: WrappedUrlInput } @@ -5453,35 +6575,39 @@ type Post implements Node { headlineTrimmedStrict(length: Int, omission: String): String id: Int! - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" nodeId: ID! - # Reads a single \`Person\` that is related to this \`Post\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`Post\`.\\"\\"\\" personByAuthorId: Person } -# A condition to be used against \`Post\` object types. All fields are tested for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`Post\` object types. All fields are tested for equality and combined with a logical ‘and.’ +\\"\\"\\" input PostCondition { - # Checks for equality with the object’s \`authorId\` field. + \\"\\"\\"Checks for equality with the object’s \`authorId\` field.\\"\\"\\" authorId: Int - # Checks for equality with the object’s \`body\` field. + \\"\\"\\"Checks for equality with the object’s \`body\` field.\\"\\"\\" body: String - # Checks for equality with the object’s \`comptypes\` field. + \\"\\"\\"Checks for equality with the object’s \`comptypes\` field.\\"\\"\\" comptypes: [ComptypeInput] - # Checks for equality with the object’s \`enums\` field. + \\"\\"\\"Checks for equality with the object’s \`enums\` field.\\"\\"\\" enums: [AnEnum] - # Checks for equality with the object’s \`headline\` field. + \\"\\"\\"Checks for equality with the object’s \`headline\` field.\\"\\"\\" headline: String - # Checks for equality with the object’s \`id\` field. + \\"\\"\\"Checks for equality with the object’s \`id\` field.\\"\\"\\" id: Int } -# An input for mutations affecting \`Post\` +\\"\\"\\"An input for mutations affecting \`Post\`\\"\\"\\" input PostInput { authorId: Int body: String @@ -5491,35 +6617,43 @@ input PostInput { id: Int } -# All input for the \`postMany\` mutation. +\\"\\"\\"All input for the \`postMany\` mutation.\\"\\"\\" input PostManyInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String posts: [PostInput] } -# The output of our \`postMany\` mutation. +\\"\\"\\"The output of our \`postMany\` mutation.\\"\\"\\" type PostManyPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Reads a single \`Person\` that is related to this \`Post\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`Post\`.\\"\\"\\" personByAuthorId: Person - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" postEdge( - # The method to use when ordering \`Post\`. + \\"\\"\\"The method to use when ordering \`Post\`.\\"\\"\\" orderBy: [PostsOrderBy!] = [PRIMARY_KEY_ASC] ): PostsEdge posts: [Post] - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# Represents an update to a \`Post\`. Fields that are set will be updated. +\\"\\"\\" +Represents an update to a \`Post\`. Fields that are set will be updated. +\\"\\"\\" input PostPatch { authorId: Int body: String @@ -5529,31 +6663,33 @@ input PostPatch { id: Int } -# A connection to a list of \`Post\` values. +\\"\\"\\"A connection to a list of \`Post\` values.\\"\\"\\" type PostsConnection { - # A list of edges which contains the \`Post\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`Post\` and cursor to aid in pagination. + \\"\\"\\" edges: [PostsEdge!]! - # A list of \`Post\` objects. + \\"\\"\\"A list of \`Post\` objects.\\"\\"\\" nodes: [Post]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`Post\` you could get from the connection. + \\"\\"\\"The count of *all* \`Post\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`Post\` edge in the connection. +\\"\\"\\"A \`Post\` edge in the connection.\\"\\"\\" type PostsEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`Post\` at the end of the edge. + \\"\\"\\"The \`Post\` at the end of the edge.\\"\\"\\" node: Post! } -# Methods to use when ordering \`Post\`. +\\"\\"\\"Methods to use when ordering \`Post\`.\\"\\"\\" enum PostsOrderBy { AUTHOR_ID_ASC AUTHOR_ID_DESC @@ -5572,614 +6708,706 @@ enum PostsOrderBy { PRIMARY_KEY_DESC } -# All input for the \`postWithSuffix\` mutation. +\\"\\"\\"All input for the \`postWithSuffix\` mutation.\\"\\"\\" input PostWithSuffixInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String post: PostInput suffix: String } -# The output of our \`postWithSuffix\` mutation. +\\"\\"\\"The output of our \`postWithSuffix\` mutation.\\"\\"\\" type PostWithSuffixPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Reads a single \`Person\` that is related to this \`Post\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`Post\`.\\"\\"\\" personByAuthorId: Person post: Post - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" postEdge( - # The method to use when ordering \`Post\`. + \\"\\"\\"The method to use when ordering \`Post\`.\\"\\"\\" orderBy: [PostsOrderBy!] = [PRIMARY_KEY_ASC] ): PostsEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# The root query type which gives access points into the data universe. +\\"\\"\\"The root query type which gives access points into the data universe.\\"\\"\\" type Query implements Node { - # lol, add some stuff 1 query + \\"\\"\\"lol, add some stuff 1 query\\"\\"\\" add1Query(arg0: Int!, arg1: Int!): Int - # lol, add some stuff 2 query + \\"\\"\\"lol, add some stuff 2 query\\"\\"\\" add2Query(a: Int!, b: Int): Int - # lol, add some stuff 3 query + \\"\\"\\"lol, add some stuff 3 query\\"\\"\\" add3Query(a: Int, arg1: Int): Int - # lol, add some stuff 4 query + \\"\\"\\"lol, add some stuff 4 query\\"\\"\\" add4Query(arg0: Int, b: Int): Int - # Reads and enables pagination through a set of \`CompoundKey\`. + \\"\\"\\"Reads and enables pagination through a set of \`CompoundKey\`.\\"\\"\\" allCompoundKeys( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: CompoundKeyCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`CompoundKey\`. + \\"\\"\\"The method to use when ordering \`CompoundKey\`.\\"\\"\\" orderBy: [CompoundKeysOrderBy!] = [PRIMARY_KEY_ASC] ): CompoundKeysConnection - # Reads and enables pagination through a set of \`DefaultValue\`. + \\"\\"\\"Reads and enables pagination through a set of \`DefaultValue\`.\\"\\"\\" allDefaultValues( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: DefaultValueCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`DefaultValue\`. + \\"\\"\\"The method to use when ordering \`DefaultValue\`.\\"\\"\\" orderBy: [DefaultValuesOrderBy!] = [PRIMARY_KEY_ASC] ): DefaultValuesConnection - # Reads and enables pagination through a set of \`EdgeCase\`. + \\"\\"\\"Reads and enables pagination through a set of \`EdgeCase\`.\\"\\"\\" allEdgeCases( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: EdgeCaseCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`EdgeCase\`. + \\"\\"\\"The method to use when ordering \`EdgeCase\`.\\"\\"\\" orderBy: [EdgeCasesOrderBy!] = [NATURAL] ): EdgeCasesConnection - # Reads and enables pagination through a set of \`ForeignKey\`. + \\"\\"\\"Reads and enables pagination through a set of \`ForeignKey\`.\\"\\"\\" allForeignKeys( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: ForeignKeyCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`ForeignKey\`. + \\"\\"\\"The method to use when ordering \`ForeignKey\`.\\"\\"\\" orderBy: [ForeignKeysOrderBy!] = [NATURAL] ): ForeignKeysConnection - # Reads and enables pagination through a set of \`Input\`. + \\"\\"\\"Reads and enables pagination through a set of \`Input\`.\\"\\"\\" allInputs( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: InputCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`Input\`. + \\"\\"\\"The method to use when ordering \`Input\`.\\"\\"\\" orderBy: [InputsOrderBy!] = [PRIMARY_KEY_ASC] ): InputsConnection - # Reads and enables pagination through a set of \`NonUpdatableView\`. + \\"\\"\\"Reads and enables pagination through a set of \`NonUpdatableView\`.\\"\\"\\" allNonUpdatableViews( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: NonUpdatableViewCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`NonUpdatableView\`. + \\"\\"\\"The method to use when ordering \`NonUpdatableView\`.\\"\\"\\" orderBy: [NonUpdatableViewsOrderBy!] = [NATURAL] ): NonUpdatableViewsConnection - # Reads and enables pagination through a set of \`Patch\`. + \\"\\"\\"Reads and enables pagination through a set of \`Patch\`.\\"\\"\\" allPatches( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: PatchCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`Patch\`. + \\"\\"\\"The method to use when ordering \`Patch\`.\\"\\"\\" orderBy: [PatchesOrderBy!] = [PRIMARY_KEY_ASC] ): PatchesConnection - # Reads and enables pagination through a set of \`Person\`. + \\"\\"\\"Reads and enables pagination through a set of \`Person\`.\\"\\"\\" allPeople( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: PersonCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`Person\`. + \\"\\"\\"The method to use when ordering \`Person\`.\\"\\"\\" orderBy: [PeopleOrderBy!] = [PRIMARY_KEY_ASC] ): PeopleConnection - # Reads and enables pagination through a set of \`Post\`. + \\"\\"\\"Reads and enables pagination through a set of \`Post\`.\\"\\"\\" allPosts( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: PostCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`Post\`. + \\"\\"\\"The method to use when ordering \`Post\`.\\"\\"\\" orderBy: [PostsOrderBy!] = [PRIMARY_KEY_ASC] ): PostsConnection - # Reads and enables pagination through a set of \`ReservedInputRecord\`. + \\"\\"\\"Reads and enables pagination through a set of \`ReservedInputRecord\`.\\"\\"\\" allReservedInputRecords( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: ReservedInputRecordCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`ReservedInputRecord\`. + \\"\\"\\"The method to use when ordering \`ReservedInputRecord\`.\\"\\"\\" orderBy: [ReservedInputRecordsOrderBy!] = [PRIMARY_KEY_ASC] ): ReservedInputRecordsConnection - # Reads and enables pagination through a set of \`ReservedPatchRecord\`. + \\"\\"\\"Reads and enables pagination through a set of \`ReservedPatchRecord\`.\\"\\"\\" allReservedPatchRecords( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: ReservedPatchRecordCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`ReservedPatchRecord\`. + \\"\\"\\"The method to use when ordering \`ReservedPatchRecord\`.\\"\\"\\" orderBy: [ReservedPatchRecordsOrderBy!] = [PRIMARY_KEY_ASC] ): ReservedPatchRecordsConnection - # Reads and enables pagination through a set of \`Reserved\`. + \\"\\"\\"Reads and enables pagination through a set of \`Reserved\`.\\"\\"\\" allReserveds( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: ReservedCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`Reserved\`. + \\"\\"\\"The method to use when ordering \`Reserved\`.\\"\\"\\" orderBy: [ReservedsOrderBy!] = [PRIMARY_KEY_ASC] ): ReservedsConnection - # Reads and enables pagination through a set of \`SimilarTable1\`. + \\"\\"\\"Reads and enables pagination through a set of \`SimilarTable1\`.\\"\\"\\" allSimilarTable1S( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: SimilarTable1Condition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`SimilarTable1\`. + \\"\\"\\"The method to use when ordering \`SimilarTable1\`.\\"\\"\\" orderBy: [SimilarTable1SOrderBy!] = [PRIMARY_KEY_ASC] ): SimilarTable1SConnection - # Reads and enables pagination through a set of \`SimilarTable2\`. + \\"\\"\\"Reads and enables pagination through a set of \`SimilarTable2\`.\\"\\"\\" allSimilarTable2S( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: SimilarTable2Condition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`SimilarTable2\`. + \\"\\"\\"The method to use when ordering \`SimilarTable2\`.\\"\\"\\" orderBy: [SimilarTable2SOrderBy!] = [PRIMARY_KEY_ASC] ): SimilarTable2SConnection - # Reads and enables pagination through a set of \`Testview\`. + \\"\\"\\"Reads and enables pagination through a set of \`Testview\`.\\"\\"\\" allTestviews( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: TestviewCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`Testview\`. + \\"\\"\\"The method to use when ordering \`Testview\`.\\"\\"\\" orderBy: [TestviewsOrderBy!] = [NATURAL] ): TestviewsConnection - # Reads and enables pagination through a set of \`Type\`. + \\"\\"\\"Reads and enables pagination through a set of \`Type\`.\\"\\"\\" allTypes( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: TypeCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`Type\`. + \\"\\"\\"The method to use when ordering \`Type\`.\\"\\"\\" orderBy: [TypesOrderBy!] = [PRIMARY_KEY_ASC] ): TypesConnection - # Reads and enables pagination through a set of \`UpdatableView\`. + \\"\\"\\"Reads and enables pagination through a set of \`UpdatableView\`.\\"\\"\\" allUpdatableViews( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: UpdatableViewCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`UpdatableView\`. + \\"\\"\\"The method to use when ordering \`UpdatableView\`.\\"\\"\\" orderBy: [UpdatableViewsOrderBy!] = [NATURAL] ): UpdatableViewsConnection - # Reads and enables pagination through a set of \`ViewTable\`. + \\"\\"\\"Reads and enables pagination through a set of \`ViewTable\`.\\"\\"\\" allViewTables( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: ViewTableCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`ViewTable\`. + \\"\\"\\"The method to use when ordering \`ViewTable\`.\\"\\"\\" orderBy: [ViewTablesOrderBy!] = [PRIMARY_KEY_ASC] ): ViewTablesConnection - # Reads a single \`CompoundKey\` using its globally unique \`ID\`. + \\"\\"\\"Reads a single \`CompoundKey\` using its globally unique \`ID\`.\\"\\"\\" compoundKey( - # The globally unique \`ID\` to be used in selecting a single \`CompoundKey\`. + \\"\\"\\" + The globally unique \`ID\` to be used in selecting a single \`CompoundKey\`. + \\"\\"\\" nodeId: ID! ): CompoundKey compoundKeyByPersonId1AndPersonId2(personId1: Int!, personId2: Int!): CompoundKey compoundTypeQuery(object: CompoundTypeInput): CompoundType - # Reads and enables pagination through a set of \`CompoundType\`. + \\"\\"\\"Reads and enables pagination through a set of \`CompoundType\`.\\"\\"\\" compoundTypeSetQuery( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int ): CompoundTypesConnection! - # Reads and enables pagination through a set of \`TablefuncCrosstab2\`. + \\"\\"\\"Reads and enables pagination through a set of \`TablefuncCrosstab2\`.\\"\\"\\" crosstab2( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor arg0: String! - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int ): TablefuncCrosstab2SConnection! - # Reads and enables pagination through a set of \`TablefuncCrosstab3\`. + \\"\\"\\"Reads and enables pagination through a set of \`TablefuncCrosstab3\`.\\"\\"\\" crosstab3( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor arg0: String! - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int ): TablefuncCrosstab3SConnection! - # Reads and enables pagination through a set of \`TablefuncCrosstab4\`. + \\"\\"\\"Reads and enables pagination through a set of \`TablefuncCrosstab4\`.\\"\\"\\" crosstab4( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor arg0: String! - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int ): TablefuncCrosstab4SConnection! - # Reads a single \`DefaultValue\` using its globally unique \`ID\`. + \\"\\"\\"Reads a single \`DefaultValue\` using its globally unique \`ID\`.\\"\\"\\" defaultValue( - # The globally unique \`ID\` to be used in selecting a single \`DefaultValue\`. + \\"\\"\\" + The globally unique \`ID\` to be used in selecting a single \`DefaultValue\`. + \\"\\"\\" nodeId: ID! ): DefaultValue defaultValueById(id: Int!): DefaultValue - # Reads a single \`Input\` using its globally unique \`ID\`. + \\"\\"\\"Reads a single \`Input\` using its globally unique \`ID\`.\\"\\"\\" input( - # The globally unique \`ID\` to be used in selecting a single \`Input\`. + \\"\\"\\"The globally unique \`ID\` to be used in selecting a single \`Input\`.\\"\\"\\" nodeId: ID! ): Input inputById(id: Int!): Input intSetQuery( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int x: Int y: Int @@ -6189,13 +7417,15 @@ type Query implements Node { jsonbIdentity(json: JSON): JSON noArgsQuery: Int - # Fetches an object given its globally unique \`ID\`. + \\"\\"\\"Fetches an object given its globally unique \`ID\`.\\"\\"\\" node( - # The globally unique \`ID\`. + \\"\\"\\"The globally unique \`ID\`.\\"\\"\\" nodeId: ID! ): Node - # The root query type must be a \`Node\` to work well with Relay 1 mutations. This just resolves to \`query\`. + \\"\\"\\" + The root query type must be a \`Node\` to work well with Relay 1 mutations. This just resolves to \`query\`. + \\"\\"\\" nodeId: ID! optionalMissingMiddle1(arg0: Int!, b: Int, c: Int): Int optionalMissingMiddle2(a: Int!, b: Int, c: Int): Int @@ -6203,115 +7433,131 @@ type Query implements Node { optionalMissingMiddle4(arg0: Int!, arg2: Int, b: Int): Int optionalMissingMiddle5(a: Int!, arg1: Int, arg2: Int): Int - # Reads a single \`Patch\` using its globally unique \`ID\`. + \\"\\"\\"Reads a single \`Patch\` using its globally unique \`ID\`.\\"\\"\\" patch( - # The globally unique \`ID\` to be used in selecting a single \`Patch\`. + \\"\\"\\"The globally unique \`ID\` to be used in selecting a single \`Patch\`.\\"\\"\\" nodeId: ID! ): Patch patchById(id: Int!): Patch - # Reads a single \`Person\` using its globally unique \`ID\`. + \\"\\"\\"Reads a single \`Person\` using its globally unique \`ID\`.\\"\\"\\" person( - # The globally unique \`ID\` to be used in selecting a single \`Person\`. + \\"\\"\\"The globally unique \`ID\` to be used in selecting a single \`Person\`.\\"\\"\\" nodeId: ID! ): Person personByEmail(email: Email!): Person personById(id: Int!): Person - # Reads a single \`Post\` using its globally unique \`ID\`. + \\"\\"\\"Reads a single \`Post\` using its globally unique \`ID\`.\\"\\"\\" post( - # The globally unique \`ID\` to be used in selecting a single \`Post\`. + \\"\\"\\"The globally unique \`ID\` to be used in selecting a single \`Post\`.\\"\\"\\" nodeId: ID! ): Post postById(id: Int!): Post - # Exposes the root query type nested one level down. This is helpful for Relay 1 - # which can only query top level fields if they are in a particular form. + \\"\\"\\" + Exposes the root query type nested one level down. This is helpful for Relay 1 + which can only query top level fields if they are in a particular form. + \\"\\"\\" query: Query! - # Reads a single \`Reserved\` using its globally unique \`ID\`. + \\"\\"\\"Reads a single \`Reserved\` using its globally unique \`ID\`.\\"\\"\\" reserved( - # The globally unique \`ID\` to be used in selecting a single \`Reserved\`. + \\"\\"\\"The globally unique \`ID\` to be used in selecting a single \`Reserved\`.\\"\\"\\" nodeId: ID! ): Reserved reservedById(id: Int!): Reserved - # Reads a single \`ReservedInputRecord\` using its globally unique \`ID\`. + \\"\\"\\"Reads a single \`ReservedInputRecord\` using its globally unique \`ID\`.\\"\\"\\" reservedInputRecord( - # The globally unique \`ID\` to be used in selecting a single \`ReservedInputRecord\`. + \\"\\"\\" + The globally unique \`ID\` to be used in selecting a single \`ReservedInputRecord\`. + \\"\\"\\" nodeId: ID! ): ReservedInputRecord reservedInputRecordById(id: Int!): ReservedInputRecord - # Reads a single \`ReservedPatchRecord\` using its globally unique \`ID\`. + \\"\\"\\"Reads a single \`ReservedPatchRecord\` using its globally unique \`ID\`.\\"\\"\\" reservedPatchRecord( - # The globally unique \`ID\` to be used in selecting a single \`ReservedPatchRecord\`. + \\"\\"\\" + The globally unique \`ID\` to be used in selecting a single \`ReservedPatchRecord\`. + \\"\\"\\" nodeId: ID! ): ReservedPatchRecord reservedPatchRecordById(id: Int!): ReservedPatchRecord - # Reads a single \`SimilarTable1\` using its globally unique \`ID\`. + \\"\\"\\"Reads a single \`SimilarTable1\` using its globally unique \`ID\`.\\"\\"\\" similarTable1( - # The globally unique \`ID\` to be used in selecting a single \`SimilarTable1\`. + \\"\\"\\" + The globally unique \`ID\` to be used in selecting a single \`SimilarTable1\`. + \\"\\"\\" nodeId: ID! ): SimilarTable1 similarTable1ById(id: Int!): SimilarTable1 - # Reads a single \`SimilarTable2\` using its globally unique \`ID\`. + \\"\\"\\"Reads a single \`SimilarTable2\` using its globally unique \`ID\`.\\"\\"\\" similarTable2( - # The globally unique \`ID\` to be used in selecting a single \`SimilarTable2\`. + \\"\\"\\" + The globally unique \`ID\` to be used in selecting a single \`SimilarTable2\`. + \\"\\"\\" nodeId: ID! ): SimilarTable2 similarTable2ById(id: Int!): SimilarTable2 staticBigInteger( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int ): StaticBigIntegerConnection! tableQuery(id: Int): Post - # Reads and enables pagination through a set of \`Person\`. + \\"\\"\\"Reads and enables pagination through a set of \`Person\`.\\"\\"\\" tableSetQuery( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int ): PeopleConnection! - # Reads a single \`Type\` using its globally unique \`ID\`. + \\"\\"\\"Reads a single \`Type\` using its globally unique \`ID\`.\\"\\"\\" type( - # The globally unique \`ID\` to be used in selecting a single \`Type\`. + \\"\\"\\"The globally unique \`ID\` to be used in selecting a single \`Type\`.\\"\\"\\" nodeId: ID! ): Type typeById(id: Int!): Type typesQuery(a: BigInt!, b: Boolean!, c: String!, d: [Int]!, e: JSON!, f: FloatRangeInput!): Boolean - # Reads a single \`ViewTable\` using its globally unique \`ID\`. + \\"\\"\\"Reads a single \`ViewTable\` using its globally unique \`ID\`.\\"\\"\\" viewTable( - # The globally unique \`ID\` to be used in selecting a single \`ViewTable\`. + \\"\\"\\" + The globally unique \`ID\` to be used in selecting a single \`ViewTable\`. + \\"\\"\\" nodeId: ID! ): ViewTable viewTableById(id: Int!): ViewTable @@ -6320,72 +7566,88 @@ type Query implements Node { type Reserved implements Node { id: Int! - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" nodeId: ID! } -# A condition to be used against \`Reserved\` object types. All fields are tested -# for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`Reserved\` object types. All fields are tested +for equality and combined with a logical ‘and.’ +\\"\\"\\" input ReservedCondition { - # Checks for equality with the object’s \`id\` field. + \\"\\"\\"Checks for equality with the object’s \`id\` field.\\"\\"\\" id: Int } -# An input for mutations affecting \`Reserved\` +\\"\\"\\"An input for mutations affecting \`Reserved\`\\"\\"\\" input ReservedInput { id: Int } -# \`reserved_input\` table should get renamed to ReservedInputRecord to prevent clashes with ReservedInput from \`reserved\` table +\\"\\"\\" +\`reserved_input\` table should get renamed to ReservedInputRecord to prevent clashes with ReservedInput from \`reserved\` table +\\"\\"\\" type ReservedInputRecord implements Node { id: Int! - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" nodeId: ID! } -# A condition to be used against \`ReservedInputRecord\` object types. All fields -# are tested for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`ReservedInputRecord\` object types. All fields +are tested for equality and combined with a logical ‘and.’ +\\"\\"\\" input ReservedInputRecordCondition { - # Checks for equality with the object’s \`id\` field. + \\"\\"\\"Checks for equality with the object’s \`id\` field.\\"\\"\\" id: Int } -# An input for mutations affecting \`ReservedInputRecord\` +\\"\\"\\"An input for mutations affecting \`ReservedInputRecord\`\\"\\"\\" input ReservedInputRecordInput { id: Int } -# Represents an update to a \`ReservedInputRecord\`. Fields that are set will be updated. +\\"\\"\\" +Represents an update to a \`ReservedInputRecord\`. Fields that are set will be updated. +\\"\\"\\" input ReservedInputRecordPatch { id: Int } -# A connection to a list of \`ReservedInputRecord\` values. +\\"\\"\\"A connection to a list of \`ReservedInputRecord\` values.\\"\\"\\" type ReservedInputRecordsConnection { - # A list of edges which contains the \`ReservedInputRecord\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`ReservedInputRecord\` and cursor to aid in pagination. + \\"\\"\\" edges: [ReservedInputRecordsEdge!]! - # A list of \`ReservedInputRecord\` objects. + \\"\\"\\"A list of \`ReservedInputRecord\` objects.\\"\\"\\" nodes: [ReservedInputRecord]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`ReservedInputRecord\` you could get from the connection. + \\"\\"\\" + The count of *all* \`ReservedInputRecord\` you could get from the connection. + \\"\\"\\" totalCount: Int } -# A \`ReservedInputRecord\` edge in the connection. +\\"\\"\\"A \`ReservedInputRecord\` edge in the connection.\\"\\"\\" type ReservedInputRecordsEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`ReservedInputRecord\` at the end of the edge. + \\"\\"\\"The \`ReservedInputRecord\` at the end of the edge.\\"\\"\\" node: ReservedInputRecord! } -# Methods to use when ordering \`ReservedInputRecord\`. +\\"\\"\\"Methods to use when ordering \`ReservedInputRecord\`.\\"\\"\\" enum ReservedInputRecordsOrderBy { ID_ASC ID_DESC @@ -6394,61 +7656,75 @@ enum ReservedInputRecordsOrderBy { PRIMARY_KEY_DESC } -# Represents an update to a \`Reserved\`. Fields that are set will be updated. +\\"\\"\\" +Represents an update to a \`Reserved\`. Fields that are set will be updated. +\\"\\"\\" input ReservedPatch { id: Int } -# \`reservedPatchs\` table should get renamed to ReservedPatchRecord to prevent clashes with ReservedPatch from \`reserved\` table +\\"\\"\\" +\`reservedPatchs\` table should get renamed to ReservedPatchRecord to prevent clashes with ReservedPatch from \`reserved\` table +\\"\\"\\" type ReservedPatchRecord implements Node { id: Int! - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" nodeId: ID! } -# A condition to be used against \`ReservedPatchRecord\` object types. All fields -# are tested for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`ReservedPatchRecord\` object types. All fields +are tested for equality and combined with a logical ‘and.’ +\\"\\"\\" input ReservedPatchRecordCondition { - # Checks for equality with the object’s \`id\` field. + \\"\\"\\"Checks for equality with the object’s \`id\` field.\\"\\"\\" id: Int } -# An input for mutations affecting \`ReservedPatchRecord\` +\\"\\"\\"An input for mutations affecting \`ReservedPatchRecord\`\\"\\"\\" input ReservedPatchRecordInput { id: Int } -# Represents an update to a \`ReservedPatchRecord\`. Fields that are set will be updated. +\\"\\"\\" +Represents an update to a \`ReservedPatchRecord\`. Fields that are set will be updated. +\\"\\"\\" input ReservedPatchRecordPatch { id: Int } -# A connection to a list of \`ReservedPatchRecord\` values. +\\"\\"\\"A connection to a list of \`ReservedPatchRecord\` values.\\"\\"\\" type ReservedPatchRecordsConnection { - # A list of edges which contains the \`ReservedPatchRecord\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`ReservedPatchRecord\` and cursor to aid in pagination. + \\"\\"\\" edges: [ReservedPatchRecordsEdge!]! - # A list of \`ReservedPatchRecord\` objects. + \\"\\"\\"A list of \`ReservedPatchRecord\` objects.\\"\\"\\" nodes: [ReservedPatchRecord]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`ReservedPatchRecord\` you could get from the connection. + \\"\\"\\" + The count of *all* \`ReservedPatchRecord\` you could get from the connection. + \\"\\"\\" totalCount: Int } -# A \`ReservedPatchRecord\` edge in the connection. +\\"\\"\\"A \`ReservedPatchRecord\` edge in the connection.\\"\\"\\" type ReservedPatchRecordsEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`ReservedPatchRecord\` at the end of the edge. + \\"\\"\\"The \`ReservedPatchRecord\` at the end of the edge.\\"\\"\\" node: ReservedPatchRecord! } -# Methods to use when ordering \`ReservedPatchRecord\`. +\\"\\"\\"Methods to use when ordering \`ReservedPatchRecord\`.\\"\\"\\" enum ReservedPatchRecordsOrderBy { ID_ASC ID_DESC @@ -6457,31 +7733,33 @@ enum ReservedPatchRecordsOrderBy { PRIMARY_KEY_DESC } -# A connection to a list of \`Reserved\` values. +\\"\\"\\"A connection to a list of \`Reserved\` values.\\"\\"\\" type ReservedsConnection { - # A list of edges which contains the \`Reserved\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`Reserved\` and cursor to aid in pagination. + \\"\\"\\" edges: [ReservedsEdge!]! - # A list of \`Reserved\` objects. + \\"\\"\\"A list of \`Reserved\` objects.\\"\\"\\" nodes: [Reserved]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`Reserved\` you could get from the connection. + \\"\\"\\"The count of *all* \`Reserved\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`Reserved\` edge in the connection. +\\"\\"\\"A \`Reserved\` edge in the connection.\\"\\"\\" type ReservedsEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`Reserved\` at the end of the edge. + \\"\\"\\"The \`Reserved\` at the end of the edge.\\"\\"\\" node: Reserved! } -# Methods to use when ordering \`Reserved\`. +\\"\\"\\"Methods to use when ordering \`Reserved\`.\\"\\"\\" enum ReservedsOrderBy { ID_ASC ID_DESC @@ -6490,20 +7768,26 @@ enum ReservedsOrderBy { PRIMARY_KEY_DESC } -# All input for the \`returnVoidMutation\` mutation. +\\"\\"\\"All input for the \`returnVoidMutation\` mutation.\\"\\"\\" input ReturnVoidMutationInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`returnVoidMutation\` mutation. +\\"\\"\\"The output of our \`returnVoidMutation\` mutation.\\"\\"\\" type ReturnVoidMutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } @@ -6513,27 +7797,31 @@ type SimilarTable1 implements Node { col3: Int! id: Int! - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" nodeId: ID! } -# A condition to be used against \`SimilarTable1\` object types. All fields are -# tested for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`SimilarTable1\` object types. All fields are +tested for equality and combined with a logical ‘and.’ +\\"\\"\\" input SimilarTable1Condition { - # Checks for equality with the object’s \`col1\` field. + \\"\\"\\"Checks for equality with the object’s \`col1\` field.\\"\\"\\" col1: Int - # Checks for equality with the object’s \`col2\` field. + \\"\\"\\"Checks for equality with the object’s \`col2\` field.\\"\\"\\" col2: Int - # Checks for equality with the object’s \`col3\` field. + \\"\\"\\"Checks for equality with the object’s \`col3\` field.\\"\\"\\" col3: Int - # Checks for equality with the object’s \`id\` field. + \\"\\"\\"Checks for equality with the object’s \`id\` field.\\"\\"\\" id: Int } -# An input for mutations affecting \`SimilarTable1\` +\\"\\"\\"An input for mutations affecting \`SimilarTable1\`\\"\\"\\" input SimilarTable1Input { col1: Int col2: Int @@ -6541,7 +7829,9 @@ input SimilarTable1Input { id: Int } -# Represents an update to a \`SimilarTable1\`. Fields that are set will be updated. +\\"\\"\\" +Represents an update to a \`SimilarTable1\`. Fields that are set will be updated. +\\"\\"\\" input SimilarTable1Patch { col1: Int col2: Int @@ -6549,31 +7839,33 @@ input SimilarTable1Patch { id: Int } -# A connection to a list of \`SimilarTable1\` values. +\\"\\"\\"A connection to a list of \`SimilarTable1\` values.\\"\\"\\" type SimilarTable1SConnection { - # A list of edges which contains the \`SimilarTable1\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`SimilarTable1\` and cursor to aid in pagination. + \\"\\"\\" edges: [SimilarTable1SEdge!]! - # A list of \`SimilarTable1\` objects. + \\"\\"\\"A list of \`SimilarTable1\` objects.\\"\\"\\" nodes: [SimilarTable1]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`SimilarTable1\` you could get from the connection. + \\"\\"\\"The count of *all* \`SimilarTable1\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`SimilarTable1\` edge in the connection. +\\"\\"\\"A \`SimilarTable1\` edge in the connection.\\"\\"\\" type SimilarTable1SEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`SimilarTable1\` at the end of the edge. + \\"\\"\\"The \`SimilarTable1\` at the end of the edge.\\"\\"\\" node: SimilarTable1! } -# Methods to use when ordering \`SimilarTable1\`. +\\"\\"\\"Methods to use when ordering \`SimilarTable1\`.\\"\\"\\" enum SimilarTable1SOrderBy { COL1_ASC COL1_DESC @@ -6594,27 +7886,31 @@ type SimilarTable2 implements Node { col5: Int id: Int! - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" nodeId: ID! } -# A condition to be used against \`SimilarTable2\` object types. All fields are -# tested for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`SimilarTable2\` object types. All fields are +tested for equality and combined with a logical ‘and.’ +\\"\\"\\" input SimilarTable2Condition { - # Checks for equality with the object’s \`col3\` field. + \\"\\"\\"Checks for equality with the object’s \`col3\` field.\\"\\"\\" col3: Int - # Checks for equality with the object’s \`col4\` field. + \\"\\"\\"Checks for equality with the object’s \`col4\` field.\\"\\"\\" col4: Int - # Checks for equality with the object’s \`col5\` field. + \\"\\"\\"Checks for equality with the object’s \`col5\` field.\\"\\"\\" col5: Int - # Checks for equality with the object’s \`id\` field. + \\"\\"\\"Checks for equality with the object’s \`id\` field.\\"\\"\\" id: Int } -# An input for mutations affecting \`SimilarTable2\` +\\"\\"\\"An input for mutations affecting \`SimilarTable2\`\\"\\"\\" input SimilarTable2Input { col3: Int! col4: Int @@ -6622,7 +7918,9 @@ input SimilarTable2Input { id: Int } -# Represents an update to a \`SimilarTable2\`. Fields that are set will be updated. +\\"\\"\\" +Represents an update to a \`SimilarTable2\`. Fields that are set will be updated. +\\"\\"\\" input SimilarTable2Patch { col3: Int col4: Int @@ -6630,31 +7928,33 @@ input SimilarTable2Patch { id: Int } -# A connection to a list of \`SimilarTable2\` values. +\\"\\"\\"A connection to a list of \`SimilarTable2\` values.\\"\\"\\" type SimilarTable2SConnection { - # A list of edges which contains the \`SimilarTable2\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`SimilarTable2\` and cursor to aid in pagination. + \\"\\"\\" edges: [SimilarTable2SEdge!]! - # A list of \`SimilarTable2\` objects. + \\"\\"\\"A list of \`SimilarTable2\` objects.\\"\\"\\" nodes: [SimilarTable2]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`SimilarTable2\` you could get from the connection. + \\"\\"\\"The count of *all* \`SimilarTable2\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`SimilarTable2\` edge in the connection. +\\"\\"\\"A \`SimilarTable2\` edge in the connection.\\"\\"\\" type SimilarTable2SEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`SimilarTable2\` at the end of the edge. + \\"\\"\\"The \`SimilarTable2\` at the end of the edge.\\"\\"\\" node: SimilarTable2! } -# Methods to use when ordering \`SimilarTable2\`. +\\"\\"\\"Methods to use when ordering \`SimilarTable2\`.\\"\\"\\" enum SimilarTable2SOrderBy { COL3_ASC COL3_DESC @@ -6669,21 +7969,23 @@ enum SimilarTable2SOrderBy { PRIMARY_KEY_DESC } -# A connection to a list of \`BigInt\` values. +\\"\\"\\"A connection to a list of \`BigInt\` values.\\"\\"\\" type StaticBigIntegerConnection { - # A list of edges which contains the \`BigInt\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`BigInt\` and cursor to aid in pagination. + \\"\\"\\" edges: [StaticBigIntegerEdge!]! - # A list of \`BigInt\` objects. + \\"\\"\\"A list of \`BigInt\` objects.\\"\\"\\" nodes: [BigInt]! } -# A \`BigInt\` edge in the connection. +\\"\\"\\"A \`BigInt\` edge in the connection.\\"\\"\\" type StaticBigIntegerEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`BigInt\` at the end of the edge. + \\"\\"\\"The \`BigInt\` at the end of the edge.\\"\\"\\" node: BigInt } @@ -6693,27 +7995,31 @@ type TablefuncCrosstab2 { rowName: String } -# A connection to a list of \`TablefuncCrosstab2\` values. +\\"\\"\\"A connection to a list of \`TablefuncCrosstab2\` values.\\"\\"\\" type TablefuncCrosstab2SConnection { - # A list of edges which contains the \`TablefuncCrosstab2\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`TablefuncCrosstab2\` and cursor to aid in pagination. + \\"\\"\\" edges: [TablefuncCrosstab2SEdge!]! - # A list of \`TablefuncCrosstab2\` objects. + \\"\\"\\"A list of \`TablefuncCrosstab2\` objects.\\"\\"\\" nodes: [TablefuncCrosstab2]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`TablefuncCrosstab2\` you could get from the connection. + \\"\\"\\" + The count of *all* \`TablefuncCrosstab2\` you could get from the connection. + \\"\\"\\" totalCount: Int } -# A \`TablefuncCrosstab2\` edge in the connection. +\\"\\"\\"A \`TablefuncCrosstab2\` edge in the connection.\\"\\"\\" type TablefuncCrosstab2SEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`TablefuncCrosstab2\` at the end of the edge. + \\"\\"\\"The \`TablefuncCrosstab2\` at the end of the edge.\\"\\"\\" node: TablefuncCrosstab2! } @@ -6724,27 +8030,31 @@ type TablefuncCrosstab3 { rowName: String } -# A connection to a list of \`TablefuncCrosstab3\` values. +\\"\\"\\"A connection to a list of \`TablefuncCrosstab3\` values.\\"\\"\\" type TablefuncCrosstab3SConnection { - # A list of edges which contains the \`TablefuncCrosstab3\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`TablefuncCrosstab3\` and cursor to aid in pagination. + \\"\\"\\" edges: [TablefuncCrosstab3SEdge!]! - # A list of \`TablefuncCrosstab3\` objects. + \\"\\"\\"A list of \`TablefuncCrosstab3\` objects.\\"\\"\\" nodes: [TablefuncCrosstab3]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`TablefuncCrosstab3\` you could get from the connection. + \\"\\"\\" + The count of *all* \`TablefuncCrosstab3\` you could get from the connection. + \\"\\"\\" totalCount: Int } -# A \`TablefuncCrosstab3\` edge in the connection. +\\"\\"\\"A \`TablefuncCrosstab3\` edge in the connection.\\"\\"\\" type TablefuncCrosstab3SEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`TablefuncCrosstab3\` at the end of the edge. + \\"\\"\\"The \`TablefuncCrosstab3\` at the end of the edge.\\"\\"\\" node: TablefuncCrosstab3! } @@ -6756,79 +8066,95 @@ type TablefuncCrosstab4 { rowName: String } -# A connection to a list of \`TablefuncCrosstab4\` values. +\\"\\"\\"A connection to a list of \`TablefuncCrosstab4\` values.\\"\\"\\" type TablefuncCrosstab4SConnection { - # A list of edges which contains the \`TablefuncCrosstab4\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`TablefuncCrosstab4\` and cursor to aid in pagination. + \\"\\"\\" edges: [TablefuncCrosstab4SEdge!]! - # A list of \`TablefuncCrosstab4\` objects. + \\"\\"\\"A list of \`TablefuncCrosstab4\` objects.\\"\\"\\" nodes: [TablefuncCrosstab4]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`TablefuncCrosstab4\` you could get from the connection. + \\"\\"\\" + The count of *all* \`TablefuncCrosstab4\` you could get from the connection. + \\"\\"\\" totalCount: Int } -# A \`TablefuncCrosstab4\` edge in the connection. +\\"\\"\\"A \`TablefuncCrosstab4\` edge in the connection.\\"\\"\\" type TablefuncCrosstab4SEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`TablefuncCrosstab4\` at the end of the edge. + \\"\\"\\"The \`TablefuncCrosstab4\` at the end of the edge.\\"\\"\\" node: TablefuncCrosstab4! } -# All input for the \`tableMutation\` mutation. +\\"\\"\\"All input for the \`tableMutation\` mutation.\\"\\"\\" input TableMutationInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int } -# The output of our \`tableMutation\` mutation. +\\"\\"\\"The output of our \`tableMutation\` mutation.\\"\\"\\" type TableMutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Reads a single \`Person\` that is related to this \`Post\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`Post\`.\\"\\"\\" personByAuthorId: Person post: Post - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" postEdge( - # The method to use when ordering \`Post\`. + \\"\\"\\"The method to use when ordering \`Post\`.\\"\\"\\" orderBy: [PostsOrderBy!] = [PRIMARY_KEY_ASC] ): PostsEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`tableSetMutation\` mutation. +\\"\\"\\"All input for the \`tableSetMutation\` mutation.\\"\\"\\" input TableSetMutationInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`tableSetMutation\` mutation. +\\"\\"\\"The output of our \`tableSetMutation\` mutation.\\"\\"\\" type TableSetMutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String people: [Person] - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" personEdge( - # The method to use when ordering \`Person\`. + \\"\\"\\"The method to use when ordering \`Person\`.\\"\\"\\" orderBy: [PeopleOrderBy!] = [PRIMARY_KEY_ASC] ): PeopleEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } @@ -6838,51 +8164,55 @@ type Testview { testviewid: Int } -# A condition to be used against \`Testview\` object types. All fields are tested -# for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`Testview\` object types. All fields are tested +for equality and combined with a logical ‘and.’ +\\"\\"\\" input TestviewCondition { - # Checks for equality with the object’s \`col1\` field. + \\"\\"\\"Checks for equality with the object’s \`col1\` field.\\"\\"\\" col1: Int - # Checks for equality with the object’s \`col2\` field. + \\"\\"\\"Checks for equality with the object’s \`col2\` field.\\"\\"\\" col2: Int - # Checks for equality with the object’s \`testviewid\` field. + \\"\\"\\"Checks for equality with the object’s \`testviewid\` field.\\"\\"\\" testviewid: Int } -# An input for mutations affecting \`Testview\` +\\"\\"\\"An input for mutations affecting \`Testview\`\\"\\"\\" input TestviewInput { col1: Int col2: Int testviewid: Int } -# A connection to a list of \`Testview\` values. +\\"\\"\\"A connection to a list of \`Testview\` values.\\"\\"\\" type TestviewsConnection { - # A list of edges which contains the \`Testview\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`Testview\` and cursor to aid in pagination. + \\"\\"\\" edges: [TestviewsEdge!]! - # A list of \`Testview\` objects. + \\"\\"\\"A list of \`Testview\` objects.\\"\\"\\" nodes: [Testview]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`Testview\` you could get from the connection. + \\"\\"\\"The count of *all* \`Testview\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`Testview\` edge in the connection. +\\"\\"\\"A \`Testview\` edge in the connection.\\"\\"\\" type TestviewsEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`Testview\` at the end of the edge. + \\"\\"\\"The \`Testview\` at the end of the edge.\\"\\"\\" node: Testview! } -# Methods to use when ordering \`Testview\`. +\\"\\"\\"Methods to use when ordering \`Testview\`.\\"\\"\\" enum TestviewsOrderBy { COL1_ASC COL1_DESC @@ -6893,7 +8223,9 @@ enum TestviewsOrderBy { TESTVIEWID_DESC } -# The exact time of day, does not include the date. May or may not have a timezone offset. +\\"\\"\\" +The exact time of day, does not include the date. May or may not have a timezone offset. +\\"\\"\\" scalar Time type Type implements Node { @@ -6915,7 +8247,9 @@ type Type implements Node { money: Float! nestedCompoundType: NestedCompoundType! - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" nodeId: ID! nullableCompoundType: CompoundType nullableNestedCompoundType: NestedCompoundType @@ -6933,103 +8267,107 @@ type Type implements Node { varchar: String! } -# A condition to be used against \`Type\` object types. All fields are tested for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`Type\` object types. All fields are tested for equality and combined with a logical ‘and.’ +\\"\\"\\" input TypeCondition { - # Checks for equality with the object’s \`anIntRange\` field. + \\"\\"\\"Checks for equality with the object’s \`anIntRange\` field.\\"\\"\\" anIntRange: AnIntRangeInput - # Checks for equality with the object’s \`bigint\` field. + \\"\\"\\"Checks for equality with the object’s \`bigint\` field.\\"\\"\\" bigint: BigInt - # Checks for equality with the object’s \`boolean\` field. + \\"\\"\\"Checks for equality with the object’s \`boolean\` field.\\"\\"\\" boolean: Boolean - # Checks for equality with the object’s \`compoundType\` field. + \\"\\"\\"Checks for equality with the object’s \`compoundType\` field.\\"\\"\\" compoundType: CompoundTypeInput - # Checks for equality with the object’s \`date\` field. + \\"\\"\\"Checks for equality with the object’s \`date\` field.\\"\\"\\" date: Date - # Checks for equality with the object’s \`daterange\` field. + \\"\\"\\"Checks for equality with the object’s \`daterange\` field.\\"\\"\\" daterange: DateRangeInput - # Checks for equality with the object’s \`decimal\` field. + \\"\\"\\"Checks for equality with the object’s \`decimal\` field.\\"\\"\\" decimal: BigFloat - # Checks for equality with the object’s \`domain\` field. + \\"\\"\\"Checks for equality with the object’s \`domain\` field.\\"\\"\\" domain: AnInt - # Checks for equality with the object’s \`domain2\` field. + \\"\\"\\"Checks for equality with the object’s \`domain2\` field.\\"\\"\\" domain2: AnotherInt - # Checks for equality with the object’s \`enum\` field. + \\"\\"\\"Checks for equality with the object’s \`enum\` field.\\"\\"\\" enum: Color - # Checks for equality with the object’s \`enumArray\` field. + \\"\\"\\"Checks for equality with the object’s \`enumArray\` field.\\"\\"\\" enumArray: [Color] - # Checks for equality with the object’s \`id\` field. + \\"\\"\\"Checks for equality with the object’s \`id\` field.\\"\\"\\" id: Int - # Checks for equality with the object’s \`interval\` field. + \\"\\"\\"Checks for equality with the object’s \`interval\` field.\\"\\"\\" interval: IntervalInput - # Checks for equality with the object’s \`json\` field. + \\"\\"\\"Checks for equality with the object’s \`json\` field.\\"\\"\\" json: JSON - # Checks for equality with the object’s \`jsonb\` field. + \\"\\"\\"Checks for equality with the object’s \`jsonb\` field.\\"\\"\\" jsonb: JSON - # Checks for equality with the object’s \`money\` field. + \\"\\"\\"Checks for equality with the object’s \`money\` field.\\"\\"\\" money: Float - # Checks for equality with the object’s \`nestedCompoundType\` field. + \\"\\"\\"Checks for equality with the object’s \`nestedCompoundType\` field.\\"\\"\\" nestedCompoundType: NestedCompoundTypeInput - # Checks for equality with the object’s \`nullableCompoundType\` field. + \\"\\"\\"Checks for equality with the object’s \`nullableCompoundType\` field.\\"\\"\\" nullableCompoundType: CompoundTypeInput - # Checks for equality with the object’s \`nullableNestedCompoundType\` field. + \\"\\"\\" + Checks for equality with the object’s \`nullableNestedCompoundType\` field. + \\"\\"\\" nullableNestedCompoundType: NestedCompoundTypeInput - # Checks for equality with the object’s \`nullablePoint\` field. + \\"\\"\\"Checks for equality with the object’s \`nullablePoint\` field.\\"\\"\\" nullablePoint: PointInput - # Checks for equality with the object’s \`nullableRange\` field. + \\"\\"\\"Checks for equality with the object’s \`nullableRange\` field.\\"\\"\\" nullableRange: BigFloatRangeInput - # Checks for equality with the object’s \`numeric\` field. + \\"\\"\\"Checks for equality with the object’s \`numeric\` field.\\"\\"\\" numeric: BigFloat - # Checks for equality with the object’s \`numrange\` field. + \\"\\"\\"Checks for equality with the object’s \`numrange\` field.\\"\\"\\" numrange: BigFloatRangeInput - # Checks for equality with the object’s \`point\` field. + \\"\\"\\"Checks for equality with the object’s \`point\` field.\\"\\"\\" point: PointInput - # Checks for equality with the object’s \`smallint\` field. + \\"\\"\\"Checks for equality with the object’s \`smallint\` field.\\"\\"\\" smallint: Int - # Checks for equality with the object’s \`textArray\` field. + \\"\\"\\"Checks for equality with the object’s \`textArray\` field.\\"\\"\\" textArray: [String] - # Checks for equality with the object’s \`time\` field. + \\"\\"\\"Checks for equality with the object’s \`time\` field.\\"\\"\\" time: Time - # Checks for equality with the object’s \`timestamp\` field. + \\"\\"\\"Checks for equality with the object’s \`timestamp\` field.\\"\\"\\" timestamp: Datetime - # Checks for equality with the object’s \`timestamptz\` field. + \\"\\"\\"Checks for equality with the object’s \`timestamptz\` field.\\"\\"\\" timestamptz: Datetime - # Checks for equality with the object’s \`timetz\` field. + \\"\\"\\"Checks for equality with the object’s \`timetz\` field.\\"\\"\\" timetz: Time - # Checks for equality with the object’s \`varchar\` field. + \\"\\"\\"Checks for equality with the object’s \`varchar\` field.\\"\\"\\" varchar: String } -# An input for mutations affecting \`Type\` +\\"\\"\\"An input for mutations affecting \`Type\`\\"\\"\\" input TypeInput { anIntRange: AnIntRangeInput! bigint: BigInt! @@ -7064,7 +8402,9 @@ input TypeInput { varchar: String! } -# Represents an update to a \`Type\`. Fields that are set will be updated. +\\"\\"\\" +Represents an update to a \`Type\`. Fields that are set will be updated. +\\"\\"\\" input TypePatch { anIntRange: AnIntRangeInput bigint: BigInt @@ -7099,57 +8439,65 @@ input TypePatch { varchar: String } -# A connection to a list of \`Type\` values. +\\"\\"\\"A connection to a list of \`Type\` values.\\"\\"\\" type TypesConnection { - # A list of edges which contains the \`Type\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`Type\` and cursor to aid in pagination. + \\"\\"\\" edges: [TypesEdge!]! - # A list of \`Type\` objects. + \\"\\"\\"A list of \`Type\` objects.\\"\\"\\" nodes: [Type]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`Type\` you could get from the connection. + \\"\\"\\"The count of *all* \`Type\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`Type\` edge in the connection. +\\"\\"\\"A \`Type\` edge in the connection.\\"\\"\\" type TypesEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`Type\` at the end of the edge. + \\"\\"\\"The \`Type\` at the end of the edge.\\"\\"\\" node: Type! } -# All input for the \`typesMutation\` mutation. +\\"\\"\\"All input for the \`typesMutation\` mutation.\\"\\"\\" input TypesMutationInput { a: BigInt! b: Boolean! c: String! - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String d: [Int]! e: JSON! f: FloatRangeInput! } -# The output of our \`typesMutation\` mutation. +\\"\\"\\"The output of our \`typesMutation\` mutation.\\"\\"\\" type TypesMutationPayload { boolean: Boolean - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# Methods to use when ordering \`Type\`. +\\"\\"\\"Methods to use when ordering \`Type\`.\\"\\"\\" enum TypesOrderBy { AN_INT_RANGE_ASC AN_INT_RANGE_DESC @@ -7218,65 +8566,69 @@ enum TypesOrderBy { VARCHAR_DESC } -# YOYOYO!! +\\"\\"\\"YOYOYO!!\\"\\"\\" type UpdatableView { - # This is constantly 2 + \\"\\"\\"This is constantly 2\\"\\"\\" constant: Int description: String name: String x: Int } -# A condition to be used against \`UpdatableView\` object types. All fields are -# tested for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`UpdatableView\` object types. All fields are +tested for equality and combined with a logical ‘and.’ +\\"\\"\\" input UpdatableViewCondition { - # Checks for equality with the object’s \`constant\` field. + \\"\\"\\"Checks for equality with the object’s \`constant\` field.\\"\\"\\" constant: Int - # Checks for equality with the object’s \`description\` field. + \\"\\"\\"Checks for equality with the object’s \`description\` field.\\"\\"\\" description: String - # Checks for equality with the object’s \`name\` field. + \\"\\"\\"Checks for equality with the object’s \`name\` field.\\"\\"\\" name: String - # Checks for equality with the object’s \`x\` field. + \\"\\"\\"Checks for equality with the object’s \`x\` field.\\"\\"\\" x: Int } -# An input for mutations affecting \`UpdatableView\` +\\"\\"\\"An input for mutations affecting \`UpdatableView\`\\"\\"\\" input UpdatableViewInput { - # This is constantly 2 + \\"\\"\\"This is constantly 2\\"\\"\\" constant: Int description: String name: String x: Int } -# A connection to a list of \`UpdatableView\` values. +\\"\\"\\"A connection to a list of \`UpdatableView\` values.\\"\\"\\" type UpdatableViewsConnection { - # A list of edges which contains the \`UpdatableView\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`UpdatableView\` and cursor to aid in pagination. + \\"\\"\\" edges: [UpdatableViewsEdge!]! - # A list of \`UpdatableView\` objects. + \\"\\"\\"A list of \`UpdatableView\` objects.\\"\\"\\" nodes: [UpdatableView]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`UpdatableView\` you could get from the connection. + \\"\\"\\"The count of *all* \`UpdatableView\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`UpdatableView\` edge in the connection. +\\"\\"\\"A \`UpdatableView\` edge in the connection.\\"\\"\\" type UpdatableViewsEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`UpdatableView\` at the end of the edge. + \\"\\"\\"The \`UpdatableView\` at the end of the edge.\\"\\"\\" node: UpdatableView! } -# Methods to use when ordering \`UpdatableView\`. +\\"\\"\\"Methods to use when ordering \`UpdatableView\`.\\"\\"\\" enum UpdatableViewsOrderBy { CONSTANT_ASC CONSTANT_DESC @@ -7289,587 +8641,777 @@ enum UpdatableViewsOrderBy { X_DESC } -# All input for the \`updateCompoundKeyByPersonId1AndPersonId2\` mutation. +\\"\\"\\" +All input for the \`updateCompoundKeyByPersonId1AndPersonId2\` mutation. +\\"\\"\\" input UpdateCompoundKeyByPersonId1AndPersonId2Input { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # An object where the defined keys will be set on the \`CompoundKey\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`CompoundKey\` being updated. + \\"\\"\\" compoundKeyPatch: CompoundKeyPatch! personId1: Int! personId2: Int! } -# All input for the \`updateCompoundKey\` mutation. +\\"\\"\\"All input for the \`updateCompoundKey\` mutation.\\"\\"\\" input UpdateCompoundKeyInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # An object where the defined keys will be set on the \`CompoundKey\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`CompoundKey\` being updated. + \\"\\"\\" compoundKeyPatch: CompoundKeyPatch! - # The globally unique \`ID\` which will identify a single \`CompoundKey\` to be updated. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`CompoundKey\` to be updated. + \\"\\"\\" nodeId: ID! } -# The output of our update \`CompoundKey\` mutation. +\\"\\"\\"The output of our update \`CompoundKey\` mutation.\\"\\"\\" type UpdateCompoundKeyPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`CompoundKey\` that was updated by this mutation. + \\"\\"\\"The \`CompoundKey\` that was updated by this mutation.\\"\\"\\" compoundKey: CompoundKey - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" compoundKeyEdge( - # The method to use when ordering \`CompoundKey\`. + \\"\\"\\"The method to use when ordering \`CompoundKey\`.\\"\\"\\" orderBy: [CompoundKeysOrderBy!] = [PRIMARY_KEY_ASC] ): CompoundKeysEdge - # Reads a single \`Person\` that is related to this \`CompoundKey\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`CompoundKey\`.\\"\\"\\" personByPersonId1: Person - # Reads a single \`Person\` that is related to this \`CompoundKey\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`CompoundKey\`.\\"\\"\\" personByPersonId2: Person - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`updateDefaultValueById\` mutation. +\\"\\"\\"All input for the \`updateDefaultValueById\` mutation.\\"\\"\\" input UpdateDefaultValueByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # An object where the defined keys will be set on the \`DefaultValue\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`DefaultValue\` being updated. + \\"\\"\\" defaultValuePatch: DefaultValuePatch! id: Int! } -# All input for the \`updateDefaultValue\` mutation. +\\"\\"\\"All input for the \`updateDefaultValue\` mutation.\\"\\"\\" input UpdateDefaultValueInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # An object where the defined keys will be set on the \`DefaultValue\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`DefaultValue\` being updated. + \\"\\"\\" defaultValuePatch: DefaultValuePatch! - # The globally unique \`ID\` which will identify a single \`DefaultValue\` to be updated. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`DefaultValue\` to be updated. + \\"\\"\\" nodeId: ID! } -# The output of our update \`DefaultValue\` mutation. +\\"\\"\\"The output of our update \`DefaultValue\` mutation.\\"\\"\\" type UpdateDefaultValuePayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`DefaultValue\` that was updated by this mutation. + \\"\\"\\"The \`DefaultValue\` that was updated by this mutation.\\"\\"\\" defaultValue: DefaultValue - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" defaultValueEdge( - # The method to use when ordering \`DefaultValue\`. + \\"\\"\\"The method to use when ordering \`DefaultValue\`.\\"\\"\\" orderBy: [DefaultValuesOrderBy!] = [PRIMARY_KEY_ASC] ): DefaultValuesEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`updateInputById\` mutation. +\\"\\"\\"All input for the \`updateInputById\` mutation.\\"\\"\\" input UpdateInputByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! - # An object where the defined keys will be set on the \`Input\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`Input\` being updated. + \\"\\"\\" inputPatch: InputPatch! } -# All input for the \`updateInput\` mutation. +\\"\\"\\"All input for the \`updateInput\` mutation.\\"\\"\\" input UpdateInputInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # An object where the defined keys will be set on the \`Input\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`Input\` being updated. + \\"\\"\\" inputPatch: InputPatch! - # The globally unique \`ID\` which will identify a single \`Input\` to be updated. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`Input\` to be updated. + \\"\\"\\" nodeId: ID! } -# The output of our update \`Input\` mutation. +\\"\\"\\"The output of our update \`Input\` mutation.\\"\\"\\" type UpdateInputPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`Input\` that was updated by this mutation. + \\"\\"\\"The \`Input\` that was updated by this mutation.\\"\\"\\" input: Input - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" inputEdge( - # The method to use when ordering \`Input\`. + \\"\\"\\"The method to use when ordering \`Input\`.\\"\\"\\" orderBy: [InputsOrderBy!] = [PRIMARY_KEY_ASC] ): InputsEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`updatePatchById\` mutation. +\\"\\"\\"All input for the \`updatePatchById\` mutation.\\"\\"\\" input UpdatePatchByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! - # An object where the defined keys will be set on the \`Patch\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`Patch\` being updated. + \\"\\"\\" patchPatch: PatchPatch! } -# All input for the \`updatePatch\` mutation. +\\"\\"\\"All input for the \`updatePatch\` mutation.\\"\\"\\" input UpdatePatchInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`Patch\` to be updated. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`Patch\` to be updated. + \\"\\"\\" nodeId: ID! - # An object where the defined keys will be set on the \`Patch\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`Patch\` being updated. + \\"\\"\\" patchPatch: PatchPatch! } -# The output of our update \`Patch\` mutation. +\\"\\"\\"The output of our update \`Patch\` mutation.\\"\\"\\" type UpdatePatchPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`Patch\` that was updated by this mutation. + \\"\\"\\"The \`Patch\` that was updated by this mutation.\\"\\"\\" patch: Patch - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" patchEdge( - # The method to use when ordering \`Patch\`. + \\"\\"\\"The method to use when ordering \`Patch\`.\\"\\"\\" orderBy: [PatchesOrderBy!] = [PRIMARY_KEY_ASC] ): PatchesEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`updatePersonByEmail\` mutation. +\\"\\"\\"All input for the \`updatePersonByEmail\` mutation.\\"\\"\\" input UpdatePersonByEmailInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String email: Email! - # An object where the defined keys will be set on the \`Person\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`Person\` being updated. + \\"\\"\\" personPatch: PersonPatch! } -# All input for the \`updatePersonById\` mutation. +\\"\\"\\"All input for the \`updatePersonById\` mutation.\\"\\"\\" input UpdatePersonByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! - # An object where the defined keys will be set on the \`Person\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`Person\` being updated. + \\"\\"\\" personPatch: PersonPatch! } -# All input for the \`updatePerson\` mutation. +\\"\\"\\"All input for the \`updatePerson\` mutation.\\"\\"\\" input UpdatePersonInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`Person\` to be updated. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`Person\` to be updated. + \\"\\"\\" nodeId: ID! - # An object where the defined keys will be set on the \`Person\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`Person\` being updated. + \\"\\"\\" personPatch: PersonPatch! } -# The output of our update \`Person\` mutation. +\\"\\"\\"The output of our update \`Person\` mutation.\\"\\"\\" type UpdatePersonPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`Person\` that was updated by this mutation. + \\"\\"\\"The \`Person\` that was updated by this mutation.\\"\\"\\" person: Person - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" personEdge( - # The method to use when ordering \`Person\`. + \\"\\"\\"The method to use when ordering \`Person\`.\\"\\"\\" orderBy: [PeopleOrderBy!] = [PRIMARY_KEY_ASC] ): PeopleEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`updatePostById\` mutation. +\\"\\"\\"All input for the \`updatePostById\` mutation.\\"\\"\\" input UpdatePostByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! - # An object where the defined keys will be set on the \`Post\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`Post\` being updated. + \\"\\"\\" postPatch: PostPatch! } -# All input for the \`updatePost\` mutation. +\\"\\"\\"All input for the \`updatePost\` mutation.\\"\\"\\" input UpdatePostInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`Post\` to be updated. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`Post\` to be updated. + \\"\\"\\" nodeId: ID! - # An object where the defined keys will be set on the \`Post\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`Post\` being updated. + \\"\\"\\" postPatch: PostPatch! } -# The output of our update \`Post\` mutation. +\\"\\"\\"The output of our update \`Post\` mutation.\\"\\"\\" type UpdatePostPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Reads a single \`Person\` that is related to this \`Post\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`Post\`.\\"\\"\\" personByAuthorId: Person - # The \`Post\` that was updated by this mutation. + \\"\\"\\"The \`Post\` that was updated by this mutation.\\"\\"\\" post: Post - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" postEdge( - # The method to use when ordering \`Post\`. + \\"\\"\\"The method to use when ordering \`Post\`.\\"\\"\\" orderBy: [PostsOrderBy!] = [PRIMARY_KEY_ASC] ): PostsEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`updateReservedById\` mutation. +\\"\\"\\"All input for the \`updateReservedById\` mutation.\\"\\"\\" input UpdateReservedByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! - # An object where the defined keys will be set on the \`Reserved\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`Reserved\` being updated. + \\"\\"\\" reservedPatch: ReservedPatch! } -# All input for the \`updateReserved\` mutation. +\\"\\"\\"All input for the \`updateReserved\` mutation.\\"\\"\\" input UpdateReservedInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`Reserved\` to be updated. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`Reserved\` to be updated. + \\"\\"\\" nodeId: ID! - # An object where the defined keys will be set on the \`Reserved\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`Reserved\` being updated. + \\"\\"\\" reservedPatch: ReservedPatch! } -# All input for the \`updateReservedInputRecordById\` mutation. +\\"\\"\\"All input for the \`updateReservedInputRecordById\` mutation.\\"\\"\\" input UpdateReservedInputRecordByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! - # An object where the defined keys will be set on the \`ReservedInputRecord\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`ReservedInputRecord\` being updated. + \\"\\"\\" reservedInputRecordPatch: ReservedInputRecordPatch! } -# All input for the \`updateReservedInputRecord\` mutation. +\\"\\"\\"All input for the \`updateReservedInputRecord\` mutation.\\"\\"\\" input UpdateReservedInputRecordInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`ReservedInputRecord\` to be updated. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`ReservedInputRecord\` to be updated. + \\"\\"\\" nodeId: ID! - # An object where the defined keys will be set on the \`ReservedInputRecord\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`ReservedInputRecord\` being updated. + \\"\\"\\" reservedInputRecordPatch: ReservedInputRecordPatch! } -# The output of our update \`ReservedInputRecord\` mutation. +\\"\\"\\"The output of our update \`ReservedInputRecord\` mutation.\\"\\"\\" type UpdateReservedInputRecordPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`ReservedInputRecord\` that was updated by this mutation. + \\"\\"\\"The \`ReservedInputRecord\` that was updated by this mutation.\\"\\"\\" reservedInputRecord: ReservedInputRecord - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" reservedInputRecordEdge( - # The method to use when ordering \`ReservedInputRecord\`. + \\"\\"\\"The method to use when ordering \`ReservedInputRecord\`.\\"\\"\\" orderBy: [ReservedInputRecordsOrderBy!] = [PRIMARY_KEY_ASC] ): ReservedInputRecordsEdge } -# All input for the \`updateReservedPatchRecordById\` mutation. +\\"\\"\\"All input for the \`updateReservedPatchRecordById\` mutation.\\"\\"\\" input UpdateReservedPatchRecordByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! - # An object where the defined keys will be set on the \`ReservedPatchRecord\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`ReservedPatchRecord\` being updated. + \\"\\"\\" reservedPatchRecordPatch: ReservedPatchRecordPatch! } -# All input for the \`updateReservedPatchRecord\` mutation. +\\"\\"\\"All input for the \`updateReservedPatchRecord\` mutation.\\"\\"\\" input UpdateReservedPatchRecordInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`ReservedPatchRecord\` to be updated. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`ReservedPatchRecord\` to be updated. + \\"\\"\\" nodeId: ID! - # An object where the defined keys will be set on the \`ReservedPatchRecord\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`ReservedPatchRecord\` being updated. + \\"\\"\\" reservedPatchRecordPatch: ReservedPatchRecordPatch! } -# The output of our update \`ReservedPatchRecord\` mutation. +\\"\\"\\"The output of our update \`ReservedPatchRecord\` mutation.\\"\\"\\" type UpdateReservedPatchRecordPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`ReservedPatchRecord\` that was updated by this mutation. + \\"\\"\\"The \`ReservedPatchRecord\` that was updated by this mutation.\\"\\"\\" reservedPatchRecord: ReservedPatchRecord - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" reservedPatchRecordEdge( - # The method to use when ordering \`ReservedPatchRecord\`. + \\"\\"\\"The method to use when ordering \`ReservedPatchRecord\`.\\"\\"\\" orderBy: [ReservedPatchRecordsOrderBy!] = [PRIMARY_KEY_ASC] ): ReservedPatchRecordsEdge } -# The output of our update \`Reserved\` mutation. +\\"\\"\\"The output of our update \`Reserved\` mutation.\\"\\"\\" type UpdateReservedPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`Reserved\` that was updated by this mutation. + \\"\\"\\"The \`Reserved\` that was updated by this mutation.\\"\\"\\" reserved: Reserved - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" reservedEdge( - # The method to use when ordering \`Reserved\`. + \\"\\"\\"The method to use when ordering \`Reserved\`.\\"\\"\\" orderBy: [ReservedsOrderBy!] = [PRIMARY_KEY_ASC] ): ReservedsEdge } -# All input for the \`updateSimilarTable1ById\` mutation. +\\"\\"\\"All input for the \`updateSimilarTable1ById\` mutation.\\"\\"\\" input UpdateSimilarTable1ByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! - # An object where the defined keys will be set on the \`SimilarTable1\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`SimilarTable1\` being updated. + \\"\\"\\" similarTable1Patch: SimilarTable1Patch! } -# All input for the \`updateSimilarTable1\` mutation. +\\"\\"\\"All input for the \`updateSimilarTable1\` mutation.\\"\\"\\" input UpdateSimilarTable1Input { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`SimilarTable1\` to be updated. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`SimilarTable1\` to be updated. + \\"\\"\\" nodeId: ID! - # An object where the defined keys will be set on the \`SimilarTable1\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`SimilarTable1\` being updated. + \\"\\"\\" similarTable1Patch: SimilarTable1Patch! } -# The output of our update \`SimilarTable1\` mutation. +\\"\\"\\"The output of our update \`SimilarTable1\` mutation.\\"\\"\\" type UpdateSimilarTable1Payload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`SimilarTable1\` that was updated by this mutation. + \\"\\"\\"The \`SimilarTable1\` that was updated by this mutation.\\"\\"\\" similarTable1: SimilarTable1 - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" similarTable1Edge( - # The method to use when ordering \`SimilarTable1\`. + \\"\\"\\"The method to use when ordering \`SimilarTable1\`.\\"\\"\\" orderBy: [SimilarTable1SOrderBy!] = [PRIMARY_KEY_ASC] ): SimilarTable1SEdge } -# All input for the \`updateSimilarTable2ById\` mutation. +\\"\\"\\"All input for the \`updateSimilarTable2ById\` mutation.\\"\\"\\" input UpdateSimilarTable2ByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! - # An object where the defined keys will be set on the \`SimilarTable2\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`SimilarTable2\` being updated. + \\"\\"\\" similarTable2Patch: SimilarTable2Patch! } -# All input for the \`updateSimilarTable2\` mutation. +\\"\\"\\"All input for the \`updateSimilarTable2\` mutation.\\"\\"\\" input UpdateSimilarTable2Input { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`SimilarTable2\` to be updated. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`SimilarTable2\` to be updated. + \\"\\"\\" nodeId: ID! - # An object where the defined keys will be set on the \`SimilarTable2\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`SimilarTable2\` being updated. + \\"\\"\\" similarTable2Patch: SimilarTable2Patch! } -# The output of our update \`SimilarTable2\` mutation. +\\"\\"\\"The output of our update \`SimilarTable2\` mutation.\\"\\"\\" type UpdateSimilarTable2Payload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`SimilarTable2\` that was updated by this mutation. + \\"\\"\\"The \`SimilarTable2\` that was updated by this mutation.\\"\\"\\" similarTable2: SimilarTable2 - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" similarTable2Edge( - # The method to use when ordering \`SimilarTable2\`. + \\"\\"\\"The method to use when ordering \`SimilarTable2\`.\\"\\"\\" orderBy: [SimilarTable2SOrderBy!] = [PRIMARY_KEY_ASC] ): SimilarTable2SEdge } -# All input for the \`updateTypeById\` mutation. +\\"\\"\\"All input for the \`updateTypeById\` mutation.\\"\\"\\" input UpdateTypeByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! - # An object where the defined keys will be set on the \`Type\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`Type\` being updated. + \\"\\"\\" typePatch: TypePatch! } -# All input for the \`updateType\` mutation. +\\"\\"\\"All input for the \`updateType\` mutation.\\"\\"\\" input UpdateTypeInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`Type\` to be updated. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`Type\` to be updated. + \\"\\"\\" nodeId: ID! - # An object where the defined keys will be set on the \`Type\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`Type\` being updated. + \\"\\"\\" typePatch: TypePatch! } -# The output of our update \`Type\` mutation. +\\"\\"\\"The output of our update \`Type\` mutation.\\"\\"\\" type UpdateTypePayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`Type\` that was updated by this mutation. + \\"\\"\\"The \`Type\` that was updated by this mutation.\\"\\"\\" type: Type - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" typeEdge( - # The method to use when ordering \`Type\`. + \\"\\"\\"The method to use when ordering \`Type\`.\\"\\"\\" orderBy: [TypesOrderBy!] = [PRIMARY_KEY_ASC] ): TypesEdge } -# All input for the \`updateViewTableById\` mutation. +\\"\\"\\"All input for the \`updateViewTableById\` mutation.\\"\\"\\" input UpdateViewTableByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! - # An object where the defined keys will be set on the \`ViewTable\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`ViewTable\` being updated. + \\"\\"\\" viewTablePatch: ViewTablePatch! } -# All input for the \`updateViewTable\` mutation. +\\"\\"\\"All input for the \`updateViewTable\` mutation.\\"\\"\\" input UpdateViewTableInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`ViewTable\` to be updated. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`ViewTable\` to be updated. + \\"\\"\\" nodeId: ID! - # An object where the defined keys will be set on the \`ViewTable\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`ViewTable\` being updated. + \\"\\"\\" viewTablePatch: ViewTablePatch! } -# The output of our update \`ViewTable\` mutation. +\\"\\"\\"The output of our update \`ViewTable\` mutation.\\"\\"\\" type UpdateViewTablePayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`ViewTable\` that was updated by this mutation. + \\"\\"\\"The \`ViewTable\` that was updated by this mutation.\\"\\"\\" viewTable: ViewTable - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" viewTableEdge( - # The method to use when ordering \`ViewTable\`. + \\"\\"\\"The method to use when ordering \`ViewTable\`.\\"\\"\\" orderBy: [ViewTablesOrderBy!] = [PRIMARY_KEY_ASC] ): ViewTablesEdge } -# A universally unique identifier as defined by [RFC 4122](https://tools.ietf.org/html/rfc4122). +\\"\\"\\" +A universally unique identifier as defined by [RFC 4122](https://tools.ietf.org/html/rfc4122). +\\"\\"\\" scalar UUID type ViewTable implements Node { @@ -7877,62 +9419,70 @@ type ViewTable implements Node { col2: Int id: Int! - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" nodeId: ID! } -# A condition to be used against \`ViewTable\` object types. All fields are tested -# for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`ViewTable\` object types. All fields are tested +for equality and combined with a logical ‘and.’ +\\"\\"\\" input ViewTableCondition { - # Checks for equality with the object’s \`col1\` field. + \\"\\"\\"Checks for equality with the object’s \`col1\` field.\\"\\"\\" col1: Int - # Checks for equality with the object’s \`col2\` field. + \\"\\"\\"Checks for equality with the object’s \`col2\` field.\\"\\"\\" col2: Int - # Checks for equality with the object’s \`id\` field. + \\"\\"\\"Checks for equality with the object’s \`id\` field.\\"\\"\\" id: Int } -# An input for mutations affecting \`ViewTable\` +\\"\\"\\"An input for mutations affecting \`ViewTable\`\\"\\"\\" input ViewTableInput { col1: Int col2: Int id: Int } -# Represents an update to a \`ViewTable\`. Fields that are set will be updated. +\\"\\"\\" +Represents an update to a \`ViewTable\`. Fields that are set will be updated. +\\"\\"\\" input ViewTablePatch { col1: Int col2: Int id: Int } -# A connection to a list of \`ViewTable\` values. +\\"\\"\\"A connection to a list of \`ViewTable\` values.\\"\\"\\" type ViewTablesConnection { - # A list of edges which contains the \`ViewTable\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`ViewTable\` and cursor to aid in pagination. + \\"\\"\\" edges: [ViewTablesEdge!]! - # A list of \`ViewTable\` objects. + \\"\\"\\"A list of \`ViewTable\` objects.\\"\\"\\" nodes: [ViewTable]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`ViewTable\` you could get from the connection. + \\"\\"\\"The count of *all* \`ViewTable\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`ViewTable\` edge in the connection. +\\"\\"\\"A \`ViewTable\` edge in the connection.\\"\\"\\" type ViewTablesEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`ViewTable\` at the end of the edge. + \\"\\"\\"The \`ViewTable\` at the end of the edge.\\"\\"\\" node: ViewTable! } -# Methods to use when ordering \`ViewTable\`. +\\"\\"\\"Methods to use when ordering \`ViewTable\`.\\"\\"\\" enum ViewTablesOrderBy { COL1_ASC COL1_DESC @@ -7949,7 +9499,7 @@ type WrappedUrl { url: NotNullUrl! } -# An input for mutations affecting \`WrappedUrl\` +\\"\\"\\"An input for mutations affecting \`WrappedUrl\`\\"\\"\\" input WrappedUrlInput { url: NotNullUrl! } @@ -7978,9 +9528,11 @@ exports[`prints a schema without default mutations 1`] = ` REJECTED } -# A signed eight-byte integer. The upper big integer values are greater then the -# max value for a JavaScript number. Therefore all big integers will be output as -# strings and not numbers. +\\"\\"\\" +A signed eight-byte integer. The upper big integer values are greater then the +max value for a JavaScript number. Therefore all big integers will be output as +strings and not numbers. +\\"\\"\\" scalar BigInt enum Color { @@ -7992,56 +9544,62 @@ enum Color { type CompoundKey implements Node { extra: Boolean - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" nodeId: ID! - # Reads a single \`Person\` that is related to this \`CompoundKey\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`CompoundKey\`.\\"\\"\\" personByPersonId1: Person - # Reads a single \`Person\` that is related to this \`CompoundKey\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`CompoundKey\`.\\"\\"\\" personByPersonId2: Person personId1: Int! personId2: Int! } -# A condition to be used against \`CompoundKey\` object types. All fields are tested -# for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`CompoundKey\` object types. All fields are tested +for equality and combined with a logical ‘and.’ +\\"\\"\\" input CompoundKeyCondition { - # Checks for equality with the object’s \`extra\` field. + \\"\\"\\"Checks for equality with the object’s \`extra\` field.\\"\\"\\" extra: Boolean - # Checks for equality with the object’s \`personId1\` field. + \\"\\"\\"Checks for equality with the object’s \`personId1\` field.\\"\\"\\" personId1: Int - # Checks for equality with the object’s \`personId2\` field. + \\"\\"\\"Checks for equality with the object’s \`personId2\` field.\\"\\"\\" personId2: Int } -# A connection to a list of \`CompoundKey\` values. +\\"\\"\\"A connection to a list of \`CompoundKey\` values.\\"\\"\\" type CompoundKeysConnection { - # A list of edges which contains the \`CompoundKey\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`CompoundKey\` and cursor to aid in pagination. + \\"\\"\\" edges: [CompoundKeysEdge!]! - # A list of \`CompoundKey\` objects. + \\"\\"\\"A list of \`CompoundKey\` objects.\\"\\"\\" nodes: [CompoundKey]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`CompoundKey\` you could get from the connection. + \\"\\"\\"The count of *all* \`CompoundKey\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`CompoundKey\` edge in the connection. +\\"\\"\\"A \`CompoundKey\` edge in the connection.\\"\\"\\" type CompoundKeysEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`CompoundKey\` at the end of the edge. + \\"\\"\\"The \`CompoundKey\` at the end of the edge.\\"\\"\\" node: CompoundKey! } -# Methods to use when ordering \`CompoundKey\`. +\\"\\"\\"Methods to use when ordering \`CompoundKey\`.\\"\\"\\" enum CompoundKeysOrderBy { EXTRA_ASC EXTRA_DESC @@ -8054,7 +9612,7 @@ enum CompoundKeysOrderBy { PRIMARY_KEY_DESC } -# Awesome feature! +\\"\\"\\"Awesome feature!\\"\\"\\" type CompoundType { a: Int b: String @@ -8066,27 +9624,29 @@ type CompoundType { fooBar: Int } -# A connection to a list of \`CompoundType\` values. +\\"\\"\\"A connection to a list of \`CompoundType\` values.\\"\\"\\" type CompoundTypesConnection { - # A list of edges which contains the \`CompoundType\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`CompoundType\` and cursor to aid in pagination. + \\"\\"\\" edges: [CompoundTypesEdge!]! - # A list of \`CompoundType\` objects. + \\"\\"\\"A list of \`CompoundType\` objects.\\"\\"\\" nodes: [CompoundType]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`CompoundType\` you could get from the connection. + \\"\\"\\"The count of *all* \`CompoundType\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`CompoundType\` edge in the connection. +\\"\\"\\"A \`CompoundType\` edge in the connection.\\"\\"\\" type CompoundTypesEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`CompoundType\` at the end of the edge. + \\"\\"\\"The \`CompoundType\` at the end of the edge.\\"\\"\\" node: CompoundType! } @@ -8095,11 +9655,13 @@ type Comptype { schedule: Datetime } -# A location in a connection that can be used for resuming pagination. +\\"\\"\\"A location in a connection that can be used for resuming pagination.\\"\\"\\" scalar Cursor -# A point in time as described by the [ISO -# 8601](https://en.wikipedia.org/wiki/ISO_8601) standard. May or may not include a timezone. +\\"\\"\\" +A point in time as described by the [ISO +8601](https://en.wikipedia.org/wiki/ISO_8601) standard. May or may not include a timezone. +\\"\\"\\" scalar Datetime type EdgeCase { @@ -8109,44 +9671,48 @@ type EdgeCase { wontCastEasy: Int } -# A condition to be used against \`EdgeCase\` object types. All fields are tested -# for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`EdgeCase\` object types. All fields are tested +for equality and combined with a logical ‘and.’ +\\"\\"\\" input EdgeCaseCondition { - # Checks for equality with the object’s \`notNullHasDefault\` field. + \\"\\"\\"Checks for equality with the object’s \`notNullHasDefault\` field.\\"\\"\\" notNullHasDefault: Boolean - # Checks for equality with the object’s \`rowId\` field. + \\"\\"\\"Checks for equality with the object’s \`rowId\` field.\\"\\"\\" rowId: Int - # Checks for equality with the object’s \`wontCastEasy\` field. + \\"\\"\\"Checks for equality with the object’s \`wontCastEasy\` field.\\"\\"\\" wontCastEasy: Int } -# A connection to a list of \`EdgeCase\` values. +\\"\\"\\"A connection to a list of \`EdgeCase\` values.\\"\\"\\" type EdgeCasesConnection { - # A list of edges which contains the \`EdgeCase\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`EdgeCase\` and cursor to aid in pagination. + \\"\\"\\" edges: [EdgeCasesEdge!]! - # A list of \`EdgeCase\` objects. + \\"\\"\\"A list of \`EdgeCase\` objects.\\"\\"\\" nodes: [EdgeCase]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`EdgeCase\` you could get from the connection. + \\"\\"\\"The count of *all* \`EdgeCase\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`EdgeCase\` edge in the connection. +\\"\\"\\"A \`EdgeCase\` edge in the connection.\\"\\"\\" type EdgeCasesEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`EdgeCase\` at the end of the edge. + \\"\\"\\"The \`EdgeCase\` at the end of the edge.\\"\\"\\" node: EdgeCase! } -# Methods to use when ordering \`EdgeCase\`. +\\"\\"\\"Methods to use when ordering \`EdgeCase\`.\\"\\"\\" enum EdgeCasesOrderBy { NATURAL NOT_NULL_HAS_DEFAULT_ASC @@ -8172,252 +9738,318 @@ enum EnumWithEmptyString { TWO } -# The value at one end of a range. A range can either include this value, or not. +\\"\\"\\" +The value at one end of a range. A range can either include this value, or not. +\\"\\"\\" input FloatRangeBoundInput { - # Whether or not the value of this bound is included in the range. + \\"\\"\\"Whether or not the value of this bound is included in the range.\\"\\"\\" inclusive: Boolean! - # The value at one end of our range. + \\"\\"\\"The value at one end of our range.\\"\\"\\" value: Float! } -# A range of \`Float\`. +\\"\\"\\"A range of \`Float\`.\\"\\"\\" input FloatRangeInput { - # The ending bound of our range. + \\"\\"\\"The ending bound of our range.\\"\\"\\" end: FloatRangeBoundInput - # The starting bound of our range. + \\"\\"\\"The starting bound of our range.\\"\\"\\" start: FloatRangeBoundInput } -# All input for the \`intSetMutation\` mutation. +\\"\\"\\"All input for the \`intSetMutation\` mutation.\\"\\"\\" input IntSetMutationInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String x: Int y: Int z: Int } -# The output of our \`intSetMutation\` mutation. +\\"\\"\\"The output of our \`intSetMutation\` mutation.\\"\\"\\" type IntSetMutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String integers: [Int] - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# A connection to a list of \`Int\` values. +\\"\\"\\"A connection to a list of \`Int\` values.\\"\\"\\" type IntSetQueryConnection { - # A list of edges which contains the \`Int\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`Int\` and cursor to aid in pagination. + \\"\\"\\" edges: [IntSetQueryEdge!]! - # A list of \`Int\` objects. + \\"\\"\\"A list of \`Int\` objects.\\"\\"\\" nodes: [Int]! } -# A \`Int\` edge in the connection. +\\"\\"\\"A \`Int\` edge in the connection.\\"\\"\\" type IntSetQueryEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`Int\` at the end of the edge. + \\"\\"\\"The \`Int\` at the end of the edge.\\"\\"\\" node: Int } -# A JavaScript object encoded in the JSON format as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). +\\"\\"\\" +A JavaScript object encoded in the JSON format as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). +\\"\\"\\" scalar JSON -# All input for the \`jsonbIdentityMutation\` mutation. +\\"\\"\\"All input for the \`jsonbIdentityMutation\` mutation.\\"\\"\\" input JsonbIdentityMutationInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String json: JSON } -# The output of our \`jsonbIdentityMutation\` mutation. +\\"\\"\\"The output of our \`jsonbIdentityMutation\` mutation.\\"\\"\\" type JsonbIdentityMutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String json: JSON - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`jsonbIdentityMutationPlpgsql\` mutation. +\\"\\"\\"All input for the \`jsonbIdentityMutationPlpgsql\` mutation.\\"\\"\\" input JsonbIdentityMutationPlpgsqlInput { _theJson: JSON! - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`jsonbIdentityMutationPlpgsql\` mutation. +\\"\\"\\"The output of our \`jsonbIdentityMutationPlpgsql\` mutation.\\"\\"\\" type JsonbIdentityMutationPlpgsqlPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String json: JSON - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`jsonbIdentityMutationPlpgsqlWithDefault\` mutation. +\\"\\"\\"All input for the \`jsonbIdentityMutationPlpgsqlWithDefault\` mutation.\\"\\"\\" input JsonbIdentityMutationPlpgsqlWithDefaultInput { _theJson: JSON - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`jsonbIdentityMutationPlpgsqlWithDefault\` mutation. +\\"\\"\\"The output of our \`jsonbIdentityMutationPlpgsqlWithDefault\` mutation.\\"\\"\\" type JsonbIdentityMutationPlpgsqlWithDefaultPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String json: JSON - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`jsonIdentityMutation\` mutation. +\\"\\"\\"All input for the \`jsonIdentityMutation\` mutation.\\"\\"\\" input JsonIdentityMutationInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String json: JSON } -# The output of our \`jsonIdentityMutation\` mutation. +\\"\\"\\"The output of our \`jsonIdentityMutation\` mutation.\\"\\"\\" type JsonIdentityMutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String json: JSON - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# The root mutation type which contains root level fields which mutate data. +\\"\\"\\" +The root mutation type which contains root level fields which mutate data. +\\"\\"\\" type Mutation { intSetMutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: IntSetMutationInput! ): IntSetMutationPayload jsonIdentityMutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: JsonIdentityMutationInput! ): JsonIdentityMutationPayload jsonbIdentityMutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: JsonbIdentityMutationInput! ): JsonbIdentityMutationPayload jsonbIdentityMutationPlpgsql( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: JsonbIdentityMutationPlpgsqlInput! ): JsonbIdentityMutationPlpgsqlPayload jsonbIdentityMutationPlpgsqlWithDefault( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: JsonbIdentityMutationPlpgsqlWithDefaultInput! ): JsonbIdentityMutationPlpgsqlWithDefaultPayload noArgsMutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: NoArgsMutationInput! ): NoArgsMutationPayload tableMutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: TableMutationInput! ): TableMutationPayload - # Reads and enables pagination through a set of \`Person\`. + \\"\\"\\"Reads and enables pagination through a set of \`Person\`.\\"\\"\\" tableSetMutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: TableSetMutationInput! ): TableSetMutationPayload typesMutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: TypesMutationInput! ): TypesMutationPayload } -# All input for the \`noArgsMutation\` mutation. +\\"\\"\\"All input for the \`noArgsMutation\` mutation.\\"\\"\\" input NoArgsMutationInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`noArgsMutation\` mutation. +\\"\\"\\"The output of our \`noArgsMutation\` mutation.\\"\\"\\" type NoArgsMutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String integer: Int - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# An object with a globally unique \`ID\`. +\\"\\"\\"An object with a globally unique \`ID\`.\\"\\"\\" interface Node { - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" nodeId: ID! } scalar NotNullUrl -# Information about pagination in a connection. +\\"\\"\\"Information about pagination in a connection.\\"\\"\\" type PageInfo { - # When paginating forwards, the cursor to continue. + \\"\\"\\"When paginating forwards, the cursor to continue.\\"\\"\\" endCursor: Cursor - # When paginating forwards, are there more items? + \\"\\"\\"When paginating forwards, are there more items?\\"\\"\\" hasNextPage: Boolean! - # When paginating backwards, are there more items? + \\"\\"\\"When paginating backwards, are there more items?\\"\\"\\" hasPreviousPage: Boolean! - # When paginating backwards, the cursor to continue. + \\"\\"\\"When paginating backwards, the cursor to continue.\\"\\"\\" startCursor: Cursor } -# A connection to a list of \`Person\` values. +\\"\\"\\"A connection to a list of \`Person\` values.\\"\\"\\" type PeopleConnection { - # A list of edges which contains the \`Person\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`Person\` and cursor to aid in pagination. + \\"\\"\\" edges: [PeopleEdge!]! - # A list of \`Person\` objects. + \\"\\"\\"A list of \`Person\` objects.\\"\\"\\" nodes: [Person]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`Person\` you could get from the connection. + \\"\\"\\"The count of *all* \`Person\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`Person\` edge in the connection. +\\"\\"\\"A \`Person\` edge in the connection.\\"\\"\\" type PeopleEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`Person\` at the end of the edge. + \\"\\"\\"The \`Person\` at the end of the edge.\\"\\"\\" node: Person! } -# Methods to use when ordering \`Person\`. +\\"\\"\\"Methods to use when ordering \`Person\`.\\"\\"\\" enum PeopleOrderBy { ABOUT_ASC ABOUT_DESC @@ -8438,58 +10070,66 @@ enum PeopleOrderBy { SITE_DESC } -# Person test comment +\\"\\"\\"Person test comment\\"\\"\\" type Person implements Node { about: String aliases: [String]! - # Reads and enables pagination through a set of \`CompoundKey\`. + \\"\\"\\"Reads and enables pagination through a set of \`CompoundKey\`.\\"\\"\\" compoundKeysByPersonId1( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: CompoundKeyCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`CompoundKey\`. + \\"\\"\\"The method to use when ordering \`CompoundKey\`.\\"\\"\\" orderBy: [CompoundKeysOrderBy!] = [PRIMARY_KEY_ASC] ): CompoundKeysConnection! - # Reads and enables pagination through a set of \`CompoundKey\`. + \\"\\"\\"Reads and enables pagination through a set of \`CompoundKey\`.\\"\\"\\" compoundKeysByPersonId2( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: CompoundKeyCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`CompoundKey\`. + \\"\\"\\"The method to use when ordering \`CompoundKey\`.\\"\\"\\" orderBy: [CompoundKeysOrderBy!] = [PRIMARY_KEY_ASC] ): CompoundKeysConnection! createdAt: Datetime @@ -8498,55 +10138,61 @@ type Person implements Node { firstName: String firstPost: Post - # Reads and enables pagination through a set of \`Person\`. + \\"\\"\\"Reads and enables pagination through a set of \`Person\`.\\"\\"\\" friends( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int ): PeopleConnection! id: Int! - # The person’s name + \\"\\"\\"The person’s name\\"\\"\\" name: String! - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" nodeId: ID! site: WrappedUrl @deprecated(reason: \\"Don’t use me\\") } -# A condition to be used against \`Person\` object types. All fields are tested for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`Person\` object types. All fields are tested for equality and combined with a logical ‘and.’ +\\"\\"\\" input PersonCondition { - # Checks for equality with the object’s \`about\` field. + \\"\\"\\"Checks for equality with the object’s \`about\` field.\\"\\"\\" about: String - # Checks for equality with the object’s \`aliases\` field. + \\"\\"\\"Checks for equality with the object’s \`aliases\` field.\\"\\"\\" aliases: [String] - # Checks for equality with the object’s \`createdAt\` field. + \\"\\"\\"Checks for equality with the object’s \`createdAt\` field.\\"\\"\\" createdAt: Datetime - # Checks for equality with the object’s \`email\` field. + \\"\\"\\"Checks for equality with the object’s \`email\` field.\\"\\"\\" email: Email - # Checks for equality with the object’s \`id\` field. + \\"\\"\\"Checks for equality with the object’s \`id\` field.\\"\\"\\" id: Int - # Checks for equality with the object’s \`name\` field. + \\"\\"\\"Checks for equality with the object’s \`name\` field.\\"\\"\\" name: String - # Checks for equality with the object’s \`site\` field. + \\"\\"\\"Checks for equality with the object’s \`site\` field.\\"\\"\\" site: WrappedUrlInput } @@ -8559,123 +10205,141 @@ type Post { id: Int! } -# The root query type which gives access points into the data universe. +\\"\\"\\"The root query type which gives access points into the data universe.\\"\\"\\" type Query implements Node { - # Reads and enables pagination through a set of \`CompoundKey\`. + \\"\\"\\"Reads and enables pagination through a set of \`CompoundKey\`.\\"\\"\\" allCompoundKeys( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: CompoundKeyCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`CompoundKey\`. + \\"\\"\\"The method to use when ordering \`CompoundKey\`.\\"\\"\\" orderBy: [CompoundKeysOrderBy!] = [PRIMARY_KEY_ASC] ): CompoundKeysConnection - # Reads and enables pagination through a set of \`EdgeCase\`. + \\"\\"\\"Reads and enables pagination through a set of \`EdgeCase\`.\\"\\"\\" allEdgeCases( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: EdgeCaseCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`EdgeCase\`. + \\"\\"\\"The method to use when ordering \`EdgeCase\`.\\"\\"\\" orderBy: [EdgeCasesOrderBy!] = [NATURAL] ): EdgeCasesConnection - # Reads and enables pagination through a set of \`Person\`. + \\"\\"\\"Reads and enables pagination through a set of \`Person\`.\\"\\"\\" allPeople( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: PersonCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`Person\`. + \\"\\"\\"The method to use when ordering \`Person\`.\\"\\"\\" orderBy: [PeopleOrderBy!] = [PRIMARY_KEY_ASC] ): PeopleConnection - # Reads a single \`CompoundKey\` using its globally unique \`ID\`. + \\"\\"\\"Reads a single \`CompoundKey\` using its globally unique \`ID\`.\\"\\"\\" compoundKey( - # The globally unique \`ID\` to be used in selecting a single \`CompoundKey\`. + \\"\\"\\" + The globally unique \`ID\` to be used in selecting a single \`CompoundKey\`. + \\"\\"\\" nodeId: ID! ): CompoundKey compoundKeyByPersonId1AndPersonId2(personId1: Int!, personId2: Int!): CompoundKey - # Reads and enables pagination through a set of \`CompoundType\`. + \\"\\"\\"Reads and enables pagination through a set of \`CompoundType\`.\\"\\"\\" compoundTypeSetQuery( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int ): CompoundTypesConnection! intSetQuery( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int x: Int y: Int @@ -8685,126 +10349,152 @@ type Query implements Node { jsonbIdentity(json: JSON): JSON noArgsQuery: Int - # Fetches an object given its globally unique \`ID\`. + \\"\\"\\"Fetches an object given its globally unique \`ID\`.\\"\\"\\" node( - # The globally unique \`ID\`. + \\"\\"\\"The globally unique \`ID\`.\\"\\"\\" nodeId: ID! ): Node - # The root query type must be a \`Node\` to work well with Relay 1 mutations. This just resolves to \`query\`. + \\"\\"\\" + The root query type must be a \`Node\` to work well with Relay 1 mutations. This just resolves to \`query\`. + \\"\\"\\" nodeId: ID! - # Reads a single \`Person\` using its globally unique \`ID\`. + \\"\\"\\"Reads a single \`Person\` using its globally unique \`ID\`.\\"\\"\\" person( - # The globally unique \`ID\` to be used in selecting a single \`Person\`. + \\"\\"\\"The globally unique \`ID\` to be used in selecting a single \`Person\`.\\"\\"\\" nodeId: ID! ): Person personByEmail(email: Email!): Person personById(id: Int!): Person - # Exposes the root query type nested one level down. This is helpful for Relay 1 - # which can only query top level fields if they are in a particular form. + \\"\\"\\" + Exposes the root query type nested one level down. This is helpful for Relay 1 + which can only query top level fields if they are in a particular form. + \\"\\"\\" query: Query! tableQuery(id: Int): Post - # Reads and enables pagination through a set of \`Person\`. + \\"\\"\\"Reads and enables pagination through a set of \`Person\`.\\"\\"\\" tableSetQuery( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int ): PeopleConnection! typesQuery(a: BigInt!, b: Boolean!, c: String!, d: [Int]!, e: JSON!, f: FloatRangeInput!): Boolean } -# All input for the \`tableMutation\` mutation. +\\"\\"\\"All input for the \`tableMutation\` mutation.\\"\\"\\" input TableMutationInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int } -# The output of our \`tableMutation\` mutation. +\\"\\"\\"The output of our \`tableMutation\` mutation.\\"\\"\\" type TableMutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String post: Post - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`tableSetMutation\` mutation. +\\"\\"\\"All input for the \`tableSetMutation\` mutation.\\"\\"\\" input TableSetMutationInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`tableSetMutation\` mutation. +\\"\\"\\"The output of our \`tableSetMutation\` mutation.\\"\\"\\" type TableSetMutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String people: [Person] - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" personEdge( - # The method to use when ordering \`Person\`. + \\"\\"\\"The method to use when ordering \`Person\`.\\"\\"\\" orderBy: [PeopleOrderBy!] = [PRIMARY_KEY_ASC] ): PeopleEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`typesMutation\` mutation. +\\"\\"\\"All input for the \`typesMutation\` mutation.\\"\\"\\" input TypesMutationInput { a: BigInt! b: Boolean! c: String! - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String d: [Int]! e: JSON! f: FloatRangeInput! } -# The output of our \`typesMutation\` mutation. +\\"\\"\\"The output of our \`typesMutation\` mutation.\\"\\"\\" type TypesMutationPayload { boolean: Boolean - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# A universally unique identifier as defined by [RFC 4122](https://tools.ietf.org/html/rfc4122). +\\"\\"\\" +A universally unique identifier as defined by [RFC 4122](https://tools.ietf.org/html/rfc4122). +\\"\\"\\" scalar UUID type WrappedUrl { url: NotNullUrl! } -# An input for mutations affecting \`WrappedUrl\` +\\"\\"\\"An input for mutations affecting \`WrappedUrl\`\\"\\"\\" input WrappedUrlInput { url: NotNullUrl! } @@ -8833,9 +10523,11 @@ exports[`prints a schema without parsing tags 1`] = ` REJECTED } -# A signed eight-byte integer. The upper big integer values are greater then the -# max value for a JavaScript number. Therefore all big integers will be output as -# strings and not numbers. +\\"\\"\\" +A signed eight-byte integer. The upper big integer values are greater then the +max value for a JavaScript number. Therefore all big integers will be output as +strings and not numbers. +\\"\\"\\" scalar BigInt enum Color { @@ -8847,70 +10539,78 @@ enum Color { type CompoundKey implements Node { extra: Boolean - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" nodeId: ID! - # Reads a single \`Person\` that is related to this \`CompoundKey\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`CompoundKey\`.\\"\\"\\" personByPersonId1: Person - # Reads a single \`Person\` that is related to this \`CompoundKey\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`CompoundKey\`.\\"\\"\\" personByPersonId2: Person personId1: Int! personId2: Int! } -# A condition to be used against \`CompoundKey\` object types. All fields are tested -# for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`CompoundKey\` object types. All fields are tested +for equality and combined with a logical ‘and.’ +\\"\\"\\" input CompoundKeyCondition { - # Checks for equality with the object’s \`extra\` field. + \\"\\"\\"Checks for equality with the object’s \`extra\` field.\\"\\"\\" extra: Boolean - # Checks for equality with the object’s \`personId1\` field. + \\"\\"\\"Checks for equality with the object’s \`personId1\` field.\\"\\"\\" personId1: Int - # Checks for equality with the object’s \`personId2\` field. + \\"\\"\\"Checks for equality with the object’s \`personId2\` field.\\"\\"\\" personId2: Int } -# An input for mutations affecting \`CompoundKey\` +\\"\\"\\"An input for mutations affecting \`CompoundKey\`\\"\\"\\" input CompoundKeyInput { extra: Boolean personId1: Int! personId2: Int! } -# Represents an update to a \`CompoundKey\`. Fields that are set will be updated. +\\"\\"\\" +Represents an update to a \`CompoundKey\`. Fields that are set will be updated. +\\"\\"\\" input CompoundKeyPatch { extra: Boolean personId1: Int personId2: Int } -# A connection to a list of \`CompoundKey\` values. +\\"\\"\\"A connection to a list of \`CompoundKey\` values.\\"\\"\\" type CompoundKeysConnection { - # A list of edges which contains the \`CompoundKey\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`CompoundKey\` and cursor to aid in pagination. + \\"\\"\\" edges: [CompoundKeysEdge!]! - # A list of \`CompoundKey\` objects. + \\"\\"\\"A list of \`CompoundKey\` objects.\\"\\"\\" nodes: [CompoundKey]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`CompoundKey\` you could get from the connection. + \\"\\"\\"The count of *all* \`CompoundKey\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`CompoundKey\` edge in the connection. +\\"\\"\\"A \`CompoundKey\` edge in the connection.\\"\\"\\" type CompoundKeysEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`CompoundKey\` at the end of the edge. + \\"\\"\\"The \`CompoundKey\` at the end of the edge.\\"\\"\\" node: CompoundKey! } -# Methods to use when ordering \`CompoundKey\`. +\\"\\"\\"Methods to use when ordering \`CompoundKey\`.\\"\\"\\" enum CompoundKeysOrderBy { EXTRA_ASC EXTRA_DESC @@ -8923,7 +10623,7 @@ enum CompoundKeysOrderBy { PRIMARY_KEY_DESC } -# Awesome feature! +\\"\\"\\"Awesome feature!\\"\\"\\" type CompoundType { a: Int b: String @@ -8935,27 +10635,29 @@ type CompoundType { fooBar: Int } -# A connection to a list of \`CompoundType\` values. +\\"\\"\\"A connection to a list of \`CompoundType\` values.\\"\\"\\" type CompoundTypesConnection { - # A list of edges which contains the \`CompoundType\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`CompoundType\` and cursor to aid in pagination. + \\"\\"\\" edges: [CompoundTypesEdge!]! - # A list of \`CompoundType\` objects. + \\"\\"\\"A list of \`CompoundType\` objects.\\"\\"\\" nodes: [CompoundType]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`CompoundType\` you could get from the connection. + \\"\\"\\"The count of *all* \`CompoundType\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`CompoundType\` edge in the connection. +\\"\\"\\"A \`CompoundType\` edge in the connection.\\"\\"\\" type CompoundTypesEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`CompoundType\` at the end of the edge. + \\"\\"\\"The \`CompoundType\` at the end of the edge.\\"\\"\\" node: CompoundType! } @@ -8964,194 +10666,238 @@ type Comptype { schedule: Datetime } -# All input for the create \`CompoundKey\` mutation. +\\"\\"\\"All input for the create \`CompoundKey\` mutation.\\"\\"\\" input CreateCompoundKeyInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`CompoundKey\` to be created by this mutation. + \\"\\"\\"The \`CompoundKey\` to be created by this mutation.\\"\\"\\" compoundKey: CompoundKeyInput! } -# The output of our create \`CompoundKey\` mutation. +\\"\\"\\"The output of our create \`CompoundKey\` mutation.\\"\\"\\" type CreateCompoundKeyPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`CompoundKey\` that was created by this mutation. + \\"\\"\\"The \`CompoundKey\` that was created by this mutation.\\"\\"\\" compoundKey: CompoundKey - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" compoundKeyEdge( - # The method to use when ordering \`CompoundKey\`. + \\"\\"\\"The method to use when ordering \`CompoundKey\`.\\"\\"\\" orderBy: [CompoundKeysOrderBy!] = [PRIMARY_KEY_ASC] ): CompoundKeysEdge - # Reads a single \`Person\` that is related to this \`CompoundKey\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`CompoundKey\`.\\"\\"\\" personByPersonId1: Person - # Reads a single \`Person\` that is related to this \`CompoundKey\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`CompoundKey\`.\\"\\"\\" personByPersonId2: Person - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the create \`EdgeCase\` mutation. +\\"\\"\\"All input for the create \`EdgeCase\` mutation.\\"\\"\\" input CreateEdgeCaseInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`EdgeCase\` to be created by this mutation. + \\"\\"\\"The \`EdgeCase\` to be created by this mutation.\\"\\"\\" edgeCase: EdgeCaseInput! } -# The output of our create \`EdgeCase\` mutation. +\\"\\"\\"The output of our create \`EdgeCase\` mutation.\\"\\"\\" type CreateEdgeCasePayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`EdgeCase\` that was created by this mutation. + \\"\\"\\"The \`EdgeCase\` that was created by this mutation.\\"\\"\\" edgeCase: EdgeCase - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" edgeCaseEdge( - # The method to use when ordering \`EdgeCase\`. + \\"\\"\\"The method to use when ordering \`EdgeCase\`.\\"\\"\\" orderBy: [EdgeCasesOrderBy!] = [NATURAL] ): EdgeCasesEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the create \`Person\` mutation. +\\"\\"\\"All input for the create \`Person\` mutation.\\"\\"\\" input CreatePersonInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`Person\` to be created by this mutation. + \\"\\"\\"The \`Person\` to be created by this mutation.\\"\\"\\" person: PersonInput! } -# The output of our create \`Person\` mutation. +\\"\\"\\"The output of our create \`Person\` mutation.\\"\\"\\" type CreatePersonPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`Person\` that was created by this mutation. + \\"\\"\\"The \`Person\` that was created by this mutation.\\"\\"\\" person: Person - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" personEdge( - # The method to use when ordering \`Person\`. + \\"\\"\\"The method to use when ordering \`Person\`.\\"\\"\\" orderBy: [PeopleOrderBy!] = [PRIMARY_KEY_ASC] ): PeopleEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# A location in a connection that can be used for resuming pagination. +\\"\\"\\"A location in a connection that can be used for resuming pagination.\\"\\"\\" scalar Cursor -# A point in time as described by the [ISO -# 8601](https://en.wikipedia.org/wiki/ISO_8601) standard. May or may not include a timezone. +\\"\\"\\" +A point in time as described by the [ISO +8601](https://en.wikipedia.org/wiki/ISO_8601) standard. May or may not include a timezone. +\\"\\"\\" scalar Datetime -# All input for the \`deleteCompoundKeyByPersonId1AndPersonId2\` mutation. +\\"\\"\\" +All input for the \`deleteCompoundKeyByPersonId1AndPersonId2\` mutation. +\\"\\"\\" input DeleteCompoundKeyByPersonId1AndPersonId2Input { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String personId1: Int! personId2: Int! } -# All input for the \`deleteCompoundKey\` mutation. +\\"\\"\\"All input for the \`deleteCompoundKey\` mutation.\\"\\"\\" input DeleteCompoundKeyInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`CompoundKey\` to be deleted. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`CompoundKey\` to be deleted. + \\"\\"\\" nodeId: ID! } -# The output of our delete \`CompoundKey\` mutation. +\\"\\"\\"The output of our delete \`CompoundKey\` mutation.\\"\\"\\" type DeleteCompoundKeyPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`CompoundKey\` that was deleted by this mutation. + \\"\\"\\"The \`CompoundKey\` that was deleted by this mutation.\\"\\"\\" compoundKey: CompoundKey - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" compoundKeyEdge( - # The method to use when ordering \`CompoundKey\`. + \\"\\"\\"The method to use when ordering \`CompoundKey\`.\\"\\"\\" orderBy: [CompoundKeysOrderBy!] = [PRIMARY_KEY_ASC] ): CompoundKeysEdge deletedCompoundKeyId: ID - # Reads a single \`Person\` that is related to this \`CompoundKey\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`CompoundKey\`.\\"\\"\\" personByPersonId1: Person - # Reads a single \`Person\` that is related to this \`CompoundKey\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`CompoundKey\`.\\"\\"\\" personByPersonId2: Person - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`deletePersonByEmail\` mutation. +\\"\\"\\"All input for the \`deletePersonByEmail\` mutation.\\"\\"\\" input DeletePersonByEmailInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String email: Email! } -# All input for the \`deletePersonById\` mutation. +\\"\\"\\"All input for the \`deletePersonById\` mutation.\\"\\"\\" input DeletePersonByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! } -# All input for the \`deletePerson\` mutation. +\\"\\"\\"All input for the \`deletePerson\` mutation.\\"\\"\\" input DeletePersonInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`Person\` to be deleted. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`Person\` to be deleted. + \\"\\"\\" nodeId: ID! } -# The output of our delete \`Person\` mutation. +\\"\\"\\"The output of our delete \`Person\` mutation.\\"\\"\\" type DeletePersonPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String deletedPersonId: ID - # The \`Person\` that was deleted by this mutation. + \\"\\"\\"The \`Person\` that was deleted by this mutation.\\"\\"\\" person: Person - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" personEdge( - # The method to use when ordering \`Person\`. + \\"\\"\\"The method to use when ordering \`Person\`.\\"\\"\\" orderBy: [PeopleOrderBy!] = [PRIMARY_KEY_ASC] ): PeopleEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } @@ -9162,51 +10908,55 @@ type EdgeCase { wontCastEasy: Int } -# A condition to be used against \`EdgeCase\` object types. All fields are tested -# for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`EdgeCase\` object types. All fields are tested +for equality and combined with a logical ‘and.’ +\\"\\"\\" input EdgeCaseCondition { - # Checks for equality with the object’s \`notNullHasDefault\` field. + \\"\\"\\"Checks for equality with the object’s \`notNullHasDefault\` field.\\"\\"\\" notNullHasDefault: Boolean - # Checks for equality with the object’s \`rowId\` field. + \\"\\"\\"Checks for equality with the object’s \`rowId\` field.\\"\\"\\" rowId: Int - # Checks for equality with the object’s \`wontCastEasy\` field. + \\"\\"\\"Checks for equality with the object’s \`wontCastEasy\` field.\\"\\"\\" wontCastEasy: Int } -# An input for mutations affecting \`EdgeCase\` +\\"\\"\\"An input for mutations affecting \`EdgeCase\`\\"\\"\\" input EdgeCaseInput { notNullHasDefault: Boolean rowId: Int wontCastEasy: Int } -# A connection to a list of \`EdgeCase\` values. +\\"\\"\\"A connection to a list of \`EdgeCase\` values.\\"\\"\\" type EdgeCasesConnection { - # A list of edges which contains the \`EdgeCase\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`EdgeCase\` and cursor to aid in pagination. + \\"\\"\\" edges: [EdgeCasesEdge!]! - # A list of \`EdgeCase\` objects. + \\"\\"\\"A list of \`EdgeCase\` objects.\\"\\"\\" nodes: [EdgeCase]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`EdgeCase\` you could get from the connection. + \\"\\"\\"The count of *all* \`EdgeCase\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`EdgeCase\` edge in the connection. +\\"\\"\\"A \`EdgeCase\` edge in the connection.\\"\\"\\" type EdgeCasesEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`EdgeCase\` at the end of the edge. + \\"\\"\\"The \`EdgeCase\` at the end of the edge.\\"\\"\\" node: EdgeCase! } -# Methods to use when ordering \`EdgeCase\`. +\\"\\"\\"Methods to use when ordering \`EdgeCase\`.\\"\\"\\" enum EdgeCasesOrderBy { NATURAL NOT_NULL_HAS_DEFAULT_ASC @@ -9232,329 +10982,423 @@ enum EnumWithEmptyString { TWO } -# The value at one end of a range. A range can either include this value, or not. +\\"\\"\\" +The value at one end of a range. A range can either include this value, or not. +\\"\\"\\" input FloatRangeBoundInput { - # Whether or not the value of this bound is included in the range. + \\"\\"\\"Whether or not the value of this bound is included in the range.\\"\\"\\" inclusive: Boolean! - # The value at one end of our range. + \\"\\"\\"The value at one end of our range.\\"\\"\\" value: Float! } -# A range of \`Float\`. +\\"\\"\\"A range of \`Float\`.\\"\\"\\" input FloatRangeInput { - # The ending bound of our range. + \\"\\"\\"The ending bound of our range.\\"\\"\\" end: FloatRangeBoundInput - # The starting bound of our range. + \\"\\"\\"The starting bound of our range.\\"\\"\\" start: FloatRangeBoundInput } -# All input for the \`intSetMutation\` mutation. +\\"\\"\\"All input for the \`intSetMutation\` mutation.\\"\\"\\" input IntSetMutationInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String x: Int y: Int z: Int } -# The output of our \`intSetMutation\` mutation. +\\"\\"\\"The output of our \`intSetMutation\` mutation.\\"\\"\\" type IntSetMutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String integers: [Int] - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# A connection to a list of \`Int\` values. +\\"\\"\\"A connection to a list of \`Int\` values.\\"\\"\\" type IntSetQueryConnection { - # A list of edges which contains the \`Int\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`Int\` and cursor to aid in pagination. + \\"\\"\\" edges: [IntSetQueryEdge!]! - # A list of \`Int\` objects. + \\"\\"\\"A list of \`Int\` objects.\\"\\"\\" nodes: [Int]! } -# A \`Int\` edge in the connection. +\\"\\"\\"A \`Int\` edge in the connection.\\"\\"\\" type IntSetQueryEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`Int\` at the end of the edge. + \\"\\"\\"The \`Int\` at the end of the edge.\\"\\"\\" node: Int } -# A JavaScript object encoded in the JSON format as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). +\\"\\"\\" +A JavaScript object encoded in the JSON format as specified by [ECMA-404](http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-404.pdf). +\\"\\"\\" scalar JSON -# All input for the \`jsonbIdentityMutation\` mutation. +\\"\\"\\"All input for the \`jsonbIdentityMutation\` mutation.\\"\\"\\" input JsonbIdentityMutationInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String json: JSON } -# The output of our \`jsonbIdentityMutation\` mutation. +\\"\\"\\"The output of our \`jsonbIdentityMutation\` mutation.\\"\\"\\" type JsonbIdentityMutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String json: JSON - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`jsonbIdentityMutationPlpgsql\` mutation. +\\"\\"\\"All input for the \`jsonbIdentityMutationPlpgsql\` mutation.\\"\\"\\" input JsonbIdentityMutationPlpgsqlInput { _theJson: JSON! - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`jsonbIdentityMutationPlpgsql\` mutation. +\\"\\"\\"The output of our \`jsonbIdentityMutationPlpgsql\` mutation.\\"\\"\\" type JsonbIdentityMutationPlpgsqlPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String json: JSON - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`jsonbIdentityMutationPlpgsqlWithDefault\` mutation. +\\"\\"\\"All input for the \`jsonbIdentityMutationPlpgsqlWithDefault\` mutation.\\"\\"\\" input JsonbIdentityMutationPlpgsqlWithDefaultInput { _theJson: JSON - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`jsonbIdentityMutationPlpgsqlWithDefault\` mutation. +\\"\\"\\"The output of our \`jsonbIdentityMutationPlpgsqlWithDefault\` mutation.\\"\\"\\" type JsonbIdentityMutationPlpgsqlWithDefaultPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String json: JSON - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`jsonIdentityMutation\` mutation. +\\"\\"\\"All input for the \`jsonIdentityMutation\` mutation.\\"\\"\\" input JsonIdentityMutationInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String json: JSON } -# The output of our \`jsonIdentityMutation\` mutation. +\\"\\"\\"The output of our \`jsonIdentityMutation\` mutation.\\"\\"\\" type JsonIdentityMutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String json: JSON - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# The root mutation type which contains root level fields which mutate data. +\\"\\"\\" +The root mutation type which contains root level fields which mutate data. +\\"\\"\\" type Mutation { - # Creates a single \`CompoundKey\`. + \\"\\"\\"Creates a single \`CompoundKey\`.\\"\\"\\" createCompoundKey( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreateCompoundKeyInput! ): CreateCompoundKeyPayload - # Creates a single \`EdgeCase\`. + \\"\\"\\"Creates a single \`EdgeCase\`.\\"\\"\\" createEdgeCase( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreateEdgeCaseInput! ): CreateEdgeCasePayload - # Creates a single \`Person\`. + \\"\\"\\"Creates a single \`Person\`.\\"\\"\\" createPerson( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreatePersonInput! ): CreatePersonPayload - # Deletes a single \`CompoundKey\` using its globally unique id. + \\"\\"\\"Deletes a single \`CompoundKey\` using its globally unique id.\\"\\"\\" deleteCompoundKey( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteCompoundKeyInput! ): DeleteCompoundKeyPayload - # Deletes a single \`CompoundKey\` using a unique key. + \\"\\"\\"Deletes a single \`CompoundKey\` using a unique key.\\"\\"\\" deleteCompoundKeyByPersonId1AndPersonId2( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteCompoundKeyByPersonId1AndPersonId2Input! ): DeleteCompoundKeyPayload - # Deletes a single \`Person\` using its globally unique id. + \\"\\"\\"Deletes a single \`Person\` using its globally unique id.\\"\\"\\" deletePerson( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeletePersonInput! ): DeletePersonPayload - # Deletes a single \`Person\` using a unique key. + \\"\\"\\"Deletes a single \`Person\` using a unique key.\\"\\"\\" deletePersonByEmail( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeletePersonByEmailInput! ): DeletePersonPayload - # Deletes a single \`Person\` using a unique key. + \\"\\"\\"Deletes a single \`Person\` using a unique key.\\"\\"\\" deletePersonById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeletePersonByIdInput! ): DeletePersonPayload intSetMutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: IntSetMutationInput! ): IntSetMutationPayload jsonIdentityMutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: JsonIdentityMutationInput! ): JsonIdentityMutationPayload jsonbIdentityMutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: JsonbIdentityMutationInput! ): JsonbIdentityMutationPayload jsonbIdentityMutationPlpgsql( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: JsonbIdentityMutationPlpgsqlInput! ): JsonbIdentityMutationPlpgsqlPayload jsonbIdentityMutationPlpgsqlWithDefault( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: JsonbIdentityMutationPlpgsqlWithDefaultInput! ): JsonbIdentityMutationPlpgsqlWithDefaultPayload noArgsMutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: NoArgsMutationInput! ): NoArgsMutationPayload tableMutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: TableMutationInput! ): TableMutationPayload - # Reads and enables pagination through a set of \`Person\`. + \\"\\"\\"Reads and enables pagination through a set of \`Person\`.\\"\\"\\" tableSetMutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: TableSetMutationInput! ): TableSetMutationPayload typesMutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: TypesMutationInput! ): TypesMutationPayload - # Updates a single \`CompoundKey\` using its globally unique id and a patch. + \\"\\"\\" + Updates a single \`CompoundKey\` using its globally unique id and a patch. + \\"\\"\\" updateCompoundKey( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateCompoundKeyInput! ): UpdateCompoundKeyPayload - # Updates a single \`CompoundKey\` using a unique key and a patch. + \\"\\"\\"Updates a single \`CompoundKey\` using a unique key and a patch.\\"\\"\\" updateCompoundKeyByPersonId1AndPersonId2( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateCompoundKeyByPersonId1AndPersonId2Input! ): UpdateCompoundKeyPayload - # Updates a single \`Person\` using its globally unique id and a patch. + \\"\\"\\"Updates a single \`Person\` using its globally unique id and a patch.\\"\\"\\" updatePerson( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdatePersonInput! ): UpdatePersonPayload - # Updates a single \`Person\` using a unique key and a patch. + \\"\\"\\"Updates a single \`Person\` using a unique key and a patch.\\"\\"\\" updatePersonByEmail( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdatePersonByEmailInput! ): UpdatePersonPayload - # Updates a single \`Person\` using a unique key and a patch. + \\"\\"\\"Updates a single \`Person\` using a unique key and a patch.\\"\\"\\" updatePersonById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdatePersonByIdInput! ): UpdatePersonPayload } -# All input for the \`noArgsMutation\` mutation. +\\"\\"\\"All input for the \`noArgsMutation\` mutation.\\"\\"\\" input NoArgsMutationInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`noArgsMutation\` mutation. +\\"\\"\\"The output of our \`noArgsMutation\` mutation.\\"\\"\\" type NoArgsMutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String integer: Int - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# An object with a globally unique \`ID\`. +\\"\\"\\"An object with a globally unique \`ID\`.\\"\\"\\" interface Node { - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" nodeId: ID! } scalar NotNullUrl -# Information about pagination in a connection. +\\"\\"\\"Information about pagination in a connection.\\"\\"\\" type PageInfo { - # When paginating forwards, the cursor to continue. + \\"\\"\\"When paginating forwards, the cursor to continue.\\"\\"\\" endCursor: Cursor - # When paginating forwards, are there more items? + \\"\\"\\"When paginating forwards, are there more items?\\"\\"\\" hasNextPage: Boolean! - # When paginating backwards, are there more items? + \\"\\"\\"When paginating backwards, are there more items?\\"\\"\\" hasPreviousPage: Boolean! - # When paginating backwards, the cursor to continue. + \\"\\"\\"When paginating backwards, the cursor to continue.\\"\\"\\" startCursor: Cursor } -# A connection to a list of \`Person\` values. +\\"\\"\\"A connection to a list of \`Person\` values.\\"\\"\\" type PeopleConnection { - # A list of edges which contains the \`Person\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`Person\` and cursor to aid in pagination. + \\"\\"\\" edges: [PeopleEdge!]! - # A list of \`Person\` objects. + \\"\\"\\"A list of \`Person\` objects.\\"\\"\\" nodes: [Person]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`Person\` you could get from the connection. + \\"\\"\\"The count of *all* \`Person\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`Person\` edge in the connection. +\\"\\"\\"A \`Person\` edge in the connection.\\"\\"\\" type PeopleEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`Person\` at the end of the edge. + \\"\\"\\"The \`Person\` at the end of the edge.\\"\\"\\" node: Person! } -# Methods to use when ordering \`Person\`. +\\"\\"\\"Methods to use when ordering \`Person\`.\\"\\"\\" enum PeopleOrderBy { ABOUT_ASC ABOUT_DESC @@ -9575,58 +11419,66 @@ enum PeopleOrderBy { SITE_DESC } -# Person test comment +\\"\\"\\"Person test comment\\"\\"\\" type Person implements Node { about: String aliases: [String]! - # Reads and enables pagination through a set of \`CompoundKey\`. + \\"\\"\\"Reads and enables pagination through a set of \`CompoundKey\`.\\"\\"\\" compoundKeysByPersonId1( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: CompoundKeyCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`CompoundKey\`. + \\"\\"\\"The method to use when ordering \`CompoundKey\`.\\"\\"\\" orderBy: [CompoundKeysOrderBy!] = [PRIMARY_KEY_ASC] ): CompoundKeysConnection! - # Reads and enables pagination through a set of \`CompoundKey\`. + \\"\\"\\"Reads and enables pagination through a set of \`CompoundKey\`.\\"\\"\\" compoundKeysByPersonId2( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: CompoundKeyCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`CompoundKey\`. + \\"\\"\\"The method to use when ordering \`CompoundKey\`.\\"\\"\\" orderBy: [CompoundKeysOrderBy!] = [PRIMARY_KEY_ASC] ): CompoundKeysConnection! createdAt: Datetime @@ -9635,61 +11487,67 @@ type Person implements Node { firstName: String firstPost: Post - # Reads and enables pagination through a set of \`Person\`. + \\"\\"\\"Reads and enables pagination through a set of \`Person\`.\\"\\"\\" friends( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int ): PeopleConnection! id: Int! - # The person’s name + \\"\\"\\"The person’s name\\"\\"\\" name: String! - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" nodeId: ID! - # @deprecated Don’t use me + \\"\\"\\"@deprecated Don’t use me\\"\\"\\" site: WrappedUrl } -# A condition to be used against \`Person\` object types. All fields are tested for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`Person\` object types. All fields are tested for equality and combined with a logical ‘and.’ +\\"\\"\\" input PersonCondition { - # Checks for equality with the object’s \`about\` field. + \\"\\"\\"Checks for equality with the object’s \`about\` field.\\"\\"\\" about: String - # Checks for equality with the object’s \`aliases\` field. + \\"\\"\\"Checks for equality with the object’s \`aliases\` field.\\"\\"\\" aliases: [String] - # Checks for equality with the object’s \`createdAt\` field. + \\"\\"\\"Checks for equality with the object’s \`createdAt\` field.\\"\\"\\" createdAt: Datetime - # Checks for equality with the object’s \`email\` field. + \\"\\"\\"Checks for equality with the object’s \`email\` field.\\"\\"\\" email: Email - # Checks for equality with the object’s \`id\` field. + \\"\\"\\"Checks for equality with the object’s \`id\` field.\\"\\"\\" id: Int - # Checks for equality with the object’s \`name\` field. + \\"\\"\\"Checks for equality with the object’s \`name\` field.\\"\\"\\" name: String - # Checks for equality with the object’s \`site\` field. + \\"\\"\\"Checks for equality with the object’s \`site\` field.\\"\\"\\" site: WrappedUrlInput } -# An input for mutations affecting \`Person\` +\\"\\"\\"An input for mutations affecting \`Person\`\\"\\"\\" input PersonInput { about: String aliases: [String] @@ -9697,14 +11555,16 @@ input PersonInput { email: Email! id: Int - # The person’s name + \\"\\"\\"The person’s name\\"\\"\\" name: String! - # @deprecated Don’t use me + \\"\\"\\"@deprecated Don’t use me\\"\\"\\" site: WrappedUrlInput } -# Represents an update to a \`Person\`. Fields that are set will be updated. +\\"\\"\\" +Represents an update to a \`Person\`. Fields that are set will be updated. +\\"\\"\\" input PersonPatch { about: String aliases: [String] @@ -9712,10 +11572,10 @@ input PersonPatch { email: Email id: Int - # The person’s name + \\"\\"\\"The person’s name\\"\\"\\" name: String - # @deprecated Don’t use me + \\"\\"\\"@deprecated Don’t use me\\"\\"\\" site: WrappedUrlInput } @@ -9728,123 +11588,141 @@ type Post { id: Int! } -# The root query type which gives access points into the data universe. +\\"\\"\\"The root query type which gives access points into the data universe.\\"\\"\\" type Query implements Node { - # Reads and enables pagination through a set of \`CompoundKey\`. + \\"\\"\\"Reads and enables pagination through a set of \`CompoundKey\`.\\"\\"\\" allCompoundKeys( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: CompoundKeyCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`CompoundKey\`. + \\"\\"\\"The method to use when ordering \`CompoundKey\`.\\"\\"\\" orderBy: [CompoundKeysOrderBy!] = [PRIMARY_KEY_ASC] ): CompoundKeysConnection - # Reads and enables pagination through a set of \`EdgeCase\`. + \\"\\"\\"Reads and enables pagination through a set of \`EdgeCase\`.\\"\\"\\" allEdgeCases( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: EdgeCaseCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`EdgeCase\`. + \\"\\"\\"The method to use when ordering \`EdgeCase\`.\\"\\"\\" orderBy: [EdgeCasesOrderBy!] = [NATURAL] ): EdgeCasesConnection - # Reads and enables pagination through a set of \`Person\`. + \\"\\"\\"Reads and enables pagination through a set of \`Person\`.\\"\\"\\" allPeople( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: PersonCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`Person\`. + \\"\\"\\"The method to use when ordering \`Person\`.\\"\\"\\" orderBy: [PeopleOrderBy!] = [PRIMARY_KEY_ASC] ): PeopleConnection - # Reads a single \`CompoundKey\` using its globally unique \`ID\`. + \\"\\"\\"Reads a single \`CompoundKey\` using its globally unique \`ID\`.\\"\\"\\" compoundKey( - # The globally unique \`ID\` to be used in selecting a single \`CompoundKey\`. + \\"\\"\\" + The globally unique \`ID\` to be used in selecting a single \`CompoundKey\`. + \\"\\"\\" nodeId: ID! ): CompoundKey compoundKeyByPersonId1AndPersonId2(personId1: Int!, personId2: Int!): CompoundKey - # Reads and enables pagination through a set of \`CompoundType\`. + \\"\\"\\"Reads and enables pagination through a set of \`CompoundType\`.\\"\\"\\" compoundTypeSetQuery( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int ): CompoundTypesConnection! intSetQuery( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int x: Int y: Int @@ -9854,230 +11732,290 @@ type Query implements Node { jsonbIdentity(json: JSON): JSON noArgsQuery: Int - # Fetches an object given its globally unique \`ID\`. + \\"\\"\\"Fetches an object given its globally unique \`ID\`.\\"\\"\\" node( - # The globally unique \`ID\`. + \\"\\"\\"The globally unique \`ID\`.\\"\\"\\" nodeId: ID! ): Node - # The root query type must be a \`Node\` to work well with Relay 1 mutations. This just resolves to \`query\`. + \\"\\"\\" + The root query type must be a \`Node\` to work well with Relay 1 mutations. This just resolves to \`query\`. + \\"\\"\\" nodeId: ID! - # Reads a single \`Person\` using its globally unique \`ID\`. + \\"\\"\\"Reads a single \`Person\` using its globally unique \`ID\`.\\"\\"\\" person( - # The globally unique \`ID\` to be used in selecting a single \`Person\`. + \\"\\"\\"The globally unique \`ID\` to be used in selecting a single \`Person\`.\\"\\"\\" nodeId: ID! ): Person personByEmail(email: Email!): Person personById(id: Int!): Person - # Exposes the root query type nested one level down. This is helpful for Relay 1 - # which can only query top level fields if they are in a particular form. + \\"\\"\\" + Exposes the root query type nested one level down. This is helpful for Relay 1 + which can only query top level fields if they are in a particular form. + \\"\\"\\" query: Query! tableQuery(id: Int): Post - # Reads and enables pagination through a set of \`Person\`. + \\"\\"\\"Reads and enables pagination through a set of \`Person\`.\\"\\"\\" tableSetQuery( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int ): PeopleConnection! typesQuery(a: BigInt!, b: Boolean!, c: String!, d: [Int]!, e: JSON!, f: FloatRangeInput!): Boolean } -# All input for the \`tableMutation\` mutation. +\\"\\"\\"All input for the \`tableMutation\` mutation.\\"\\"\\" input TableMutationInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int } -# The output of our \`tableMutation\` mutation. +\\"\\"\\"The output of our \`tableMutation\` mutation.\\"\\"\\" type TableMutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String post: Post - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`tableSetMutation\` mutation. +\\"\\"\\"All input for the \`tableSetMutation\` mutation.\\"\\"\\" input TableSetMutationInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`tableSetMutation\` mutation. +\\"\\"\\"The output of our \`tableSetMutation\` mutation.\\"\\"\\" type TableSetMutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String people: [Person] - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" personEdge( - # The method to use when ordering \`Person\`. + \\"\\"\\"The method to use when ordering \`Person\`.\\"\\"\\" orderBy: [PeopleOrderBy!] = [PRIMARY_KEY_ASC] ): PeopleEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`typesMutation\` mutation. +\\"\\"\\"All input for the \`typesMutation\` mutation.\\"\\"\\" input TypesMutationInput { a: BigInt! b: Boolean! c: String! - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String d: [Int]! e: JSON! f: FloatRangeInput! } -# The output of our \`typesMutation\` mutation. +\\"\\"\\"The output of our \`typesMutation\` mutation.\\"\\"\\" type TypesMutationPayload { boolean: Boolean - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`updateCompoundKeyByPersonId1AndPersonId2\` mutation. +\\"\\"\\" +All input for the \`updateCompoundKeyByPersonId1AndPersonId2\` mutation. +\\"\\"\\" input UpdateCompoundKeyByPersonId1AndPersonId2Input { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # An object where the defined keys will be set on the \`CompoundKey\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`CompoundKey\` being updated. + \\"\\"\\" compoundKeyPatch: CompoundKeyPatch! personId1: Int! personId2: Int! } -# All input for the \`updateCompoundKey\` mutation. +\\"\\"\\"All input for the \`updateCompoundKey\` mutation.\\"\\"\\" input UpdateCompoundKeyInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # An object where the defined keys will be set on the \`CompoundKey\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`CompoundKey\` being updated. + \\"\\"\\" compoundKeyPatch: CompoundKeyPatch! - # The globally unique \`ID\` which will identify a single \`CompoundKey\` to be updated. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`CompoundKey\` to be updated. + \\"\\"\\" nodeId: ID! } -# The output of our update \`CompoundKey\` mutation. +\\"\\"\\"The output of our update \`CompoundKey\` mutation.\\"\\"\\" type UpdateCompoundKeyPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`CompoundKey\` that was updated by this mutation. + \\"\\"\\"The \`CompoundKey\` that was updated by this mutation.\\"\\"\\" compoundKey: CompoundKey - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" compoundKeyEdge( - # The method to use when ordering \`CompoundKey\`. + \\"\\"\\"The method to use when ordering \`CompoundKey\`.\\"\\"\\" orderBy: [CompoundKeysOrderBy!] = [PRIMARY_KEY_ASC] ): CompoundKeysEdge - # Reads a single \`Person\` that is related to this \`CompoundKey\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`CompoundKey\`.\\"\\"\\" personByPersonId1: Person - # Reads a single \`Person\` that is related to this \`CompoundKey\`. + \\"\\"\\"Reads a single \`Person\` that is related to this \`CompoundKey\`.\\"\\"\\" personByPersonId2: Person - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`updatePersonByEmail\` mutation. +\\"\\"\\"All input for the \`updatePersonByEmail\` mutation.\\"\\"\\" input UpdatePersonByEmailInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String email: Email! - # An object where the defined keys will be set on the \`Person\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`Person\` being updated. + \\"\\"\\" personPatch: PersonPatch! } -# All input for the \`updatePersonById\` mutation. +\\"\\"\\"All input for the \`updatePersonById\` mutation.\\"\\"\\" input UpdatePersonByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! - # An object where the defined keys will be set on the \`Person\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`Person\` being updated. + \\"\\"\\" personPatch: PersonPatch! } -# All input for the \`updatePerson\` mutation. +\\"\\"\\"All input for the \`updatePerson\` mutation.\\"\\"\\" input UpdatePersonInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`Person\` to be updated. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`Person\` to be updated. + \\"\\"\\" nodeId: ID! - # An object where the defined keys will be set on the \`Person\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`Person\` being updated. + \\"\\"\\" personPatch: PersonPatch! } -# The output of our update \`Person\` mutation. +\\"\\"\\"The output of our update \`Person\` mutation.\\"\\"\\" type UpdatePersonPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`Person\` that was updated by this mutation. + \\"\\"\\"The \`Person\` that was updated by this mutation.\\"\\"\\" person: Person - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" personEdge( - # The method to use when ordering \`Person\`. + \\"\\"\\"The method to use when ordering \`Person\`.\\"\\"\\" orderBy: [PeopleOrderBy!] = [PRIMARY_KEY_ASC] ): PeopleEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# A universally unique identifier as defined by [RFC 4122](https://tools.ietf.org/html/rfc4122). +\\"\\"\\" +A universally unique identifier as defined by [RFC 4122](https://tools.ietf.org/html/rfc4122). +\\"\\"\\" scalar UUID type WrappedUrl { url: NotNullUrl! } -# An input for mutations affecting \`WrappedUrl\` +\\"\\"\\"An input for mutations affecting \`WrappedUrl\`\\"\\"\\" input WrappedUrlInput { url: NotNullUrl! } @@ -10085,108 +12023,138 @@ input WrappedUrlInput { `; exports[`prints a schema without posts headlines 1`] = ` -"# All input for the \`add1Mutation\` mutation. +"\\"\\"\\"All input for the \`add1Mutation\` mutation.\\"\\"\\" input Add1MutationInput { arg0: Int! arg1: Int! - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`add1Mutation\` mutation. +\\"\\"\\"The output of our \`add1Mutation\` mutation.\\"\\"\\" type Add1MutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String integer: Int - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`add2Mutation\` mutation. +\\"\\"\\"All input for the \`add2Mutation\` mutation.\\"\\"\\" input Add2MutationInput { a: Int! b: Int - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`add2Mutation\` mutation. +\\"\\"\\"The output of our \`add2Mutation\` mutation.\\"\\"\\" type Add2MutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String integer: Int - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`add3Mutation\` mutation. +\\"\\"\\"All input for the \`add3Mutation\` mutation.\\"\\"\\" input Add3MutationInput { a: Int arg1: Int - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`add3Mutation\` mutation. +\\"\\"\\"The output of our \`add3Mutation\` mutation.\\"\\"\\" type Add3MutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String integer: Int - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`add4MutationError\` mutation. +\\"\\"\\"All input for the \`add4MutationError\` mutation.\\"\\"\\" input Add4MutationErrorInput { arg0: Int b: Int - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`add4MutationError\` mutation. +\\"\\"\\"The output of our \`add4MutationError\` mutation.\\"\\"\\" type Add4MutationErrorPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String integer: Int - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`add4Mutation\` mutation. +\\"\\"\\"All input for the \`add4Mutation\` mutation.\\"\\"\\" input Add4MutationInput { arg0: Int b: Int - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`add4Mutation\` mutation. +\\"\\"\\"The output of our \`add4Mutation\` mutation.\\"\\"\\" type Add4MutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String integer: Int - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } @@ -10211,9 +12179,11 @@ enum AnEnum { REJECTED } -# A signed eight-byte integer. The upper big integer values are greater then the -# max value for a JavaScript number. Therefore all big integers will be output as -# strings and not numbers. +\\"\\"\\" +A signed eight-byte integer. The upper big integer values are greater then the +max value for a JavaScript number. Therefore all big integers will be output as +strings and not numbers. +\\"\\"\\" scalar BigInt type Comptype { @@ -10221,422 +12191,504 @@ type Comptype { schedule: Datetime } -# An input for mutations affecting \`Comptype\` +\\"\\"\\"An input for mutations affecting \`Comptype\`\\"\\"\\" input ComptypeInput { isOptimised: Boolean schedule: Datetime } -# All input for the create \`DefaultValue\` mutation. +\\"\\"\\"All input for the create \`DefaultValue\` mutation.\\"\\"\\" input CreateDefaultValueInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`DefaultValue\` to be created by this mutation. + \\"\\"\\"The \`DefaultValue\` to be created by this mutation.\\"\\"\\" defaultValue: DefaultValueInput! } -# The output of our create \`DefaultValue\` mutation. +\\"\\"\\"The output of our create \`DefaultValue\` mutation.\\"\\"\\" type CreateDefaultValuePayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`DefaultValue\` that was created by this mutation. + \\"\\"\\"The \`DefaultValue\` that was created by this mutation.\\"\\"\\" defaultValue: DefaultValue - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" defaultValueEdge( - # The method to use when ordering \`DefaultValue\`. + \\"\\"\\"The method to use when ordering \`DefaultValue\`.\\"\\"\\" orderBy: [DefaultValuesOrderBy!] = [PRIMARY_KEY_ASC] ): DefaultValuesEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the create \`ForeignKey\` mutation. +\\"\\"\\"All input for the create \`ForeignKey\` mutation.\\"\\"\\" input CreateForeignKeyInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`ForeignKey\` to be created by this mutation. + \\"\\"\\"The \`ForeignKey\` to be created by this mutation.\\"\\"\\" foreignKey: ForeignKeyInput! } -# The output of our create \`ForeignKey\` mutation. +\\"\\"\\"The output of our create \`ForeignKey\` mutation.\\"\\"\\" type CreateForeignKeyPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`ForeignKey\` that was created by this mutation. + \\"\\"\\"The \`ForeignKey\` that was created by this mutation.\\"\\"\\" foreignKey: ForeignKey - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" foreignKeyEdge( - # The method to use when ordering \`ForeignKey\`. + \\"\\"\\"The method to use when ordering \`ForeignKey\`.\\"\\"\\" orderBy: [ForeignKeysOrderBy!] = [NATURAL] ): ForeignKeysEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the create \`Input\` mutation. +\\"\\"\\"All input for the create \`Input\` mutation.\\"\\"\\" input CreateInputInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`Input\` to be created by this mutation. + \\"\\"\\"The \`Input\` to be created by this mutation.\\"\\"\\" input: InputInput! } -# The output of our create \`Input\` mutation. +\\"\\"\\"The output of our create \`Input\` mutation.\\"\\"\\" type CreateInputPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`Input\` that was created by this mutation. + \\"\\"\\"The \`Input\` that was created by this mutation.\\"\\"\\" input: Input - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" inputEdge( - # The method to use when ordering \`Input\`. + \\"\\"\\"The method to use when ordering \`Input\`.\\"\\"\\" orderBy: [InputsOrderBy!] = [PRIMARY_KEY_ASC] ): InputsEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the create \`Patch\` mutation. +\\"\\"\\"All input for the create \`Patch\` mutation.\\"\\"\\" input CreatePatchInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`Patch\` to be created by this mutation. + \\"\\"\\"The \`Patch\` to be created by this mutation.\\"\\"\\" patch: PatchInput! } -# The output of our create \`Patch\` mutation. +\\"\\"\\"The output of our create \`Patch\` mutation.\\"\\"\\" type CreatePatchPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`Patch\` that was created by this mutation. + \\"\\"\\"The \`Patch\` that was created by this mutation.\\"\\"\\" patch: Patch - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" patchEdge( - # The method to use when ordering \`Patch\`. + \\"\\"\\"The method to use when ordering \`Patch\`.\\"\\"\\" orderBy: [PatchesOrderBy!] = [PRIMARY_KEY_ASC] ): PatchesEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the create \`Post\` mutation. +\\"\\"\\"All input for the create \`Post\` mutation.\\"\\"\\" input CreatePostInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`Post\` to be created by this mutation. + \\"\\"\\"The \`Post\` to be created by this mutation.\\"\\"\\" post: PostInput! } -# The output of our create \`Post\` mutation. +\\"\\"\\"The output of our create \`Post\` mutation.\\"\\"\\" type CreatePostPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`Post\` that was created by this mutation. + \\"\\"\\"The \`Post\` that was created by this mutation.\\"\\"\\" post: Post - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" postEdge( - # The method to use when ordering \`Post\`. + \\"\\"\\"The method to use when ordering \`Post\`.\\"\\"\\" orderBy: [PostsOrderBy!] = [PRIMARY_KEY_ASC] ): PostsEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the create \`Reserved\` mutation. +\\"\\"\\"All input for the create \`Reserved\` mutation.\\"\\"\\" input CreateReservedInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`Reserved\` to be created by this mutation. + \\"\\"\\"The \`Reserved\` to be created by this mutation.\\"\\"\\" reserved: ReservedInput! } -# All input for the create \`ReservedInputRecord\` mutation. +\\"\\"\\"All input for the create \`ReservedInputRecord\` mutation.\\"\\"\\" input CreateReservedInputRecordInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`ReservedInputRecord\` to be created by this mutation. + \\"\\"\\"The \`ReservedInputRecord\` to be created by this mutation.\\"\\"\\" reservedInputRecord: ReservedInputRecordInput! } -# The output of our create \`ReservedInputRecord\` mutation. +\\"\\"\\"The output of our create \`ReservedInputRecord\` mutation.\\"\\"\\" type CreateReservedInputRecordPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`ReservedInputRecord\` that was created by this mutation. + \\"\\"\\"The \`ReservedInputRecord\` that was created by this mutation.\\"\\"\\" reservedInputRecord: ReservedInputRecord - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" reservedInputRecordEdge( - # The method to use when ordering \`ReservedInputRecord\`. + \\"\\"\\"The method to use when ordering \`ReservedInputRecord\`.\\"\\"\\" orderBy: [ReservedInputRecordsOrderBy!] = [PRIMARY_KEY_ASC] ): ReservedInputRecordsEdge } -# All input for the create \`ReservedPatchRecord\` mutation. +\\"\\"\\"All input for the create \`ReservedPatchRecord\` mutation.\\"\\"\\" input CreateReservedPatchRecordInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`ReservedPatchRecord\` to be created by this mutation. + \\"\\"\\"The \`ReservedPatchRecord\` to be created by this mutation.\\"\\"\\" reservedPatchRecord: ReservedPatchRecordInput! } -# The output of our create \`ReservedPatchRecord\` mutation. +\\"\\"\\"The output of our create \`ReservedPatchRecord\` mutation.\\"\\"\\" type CreateReservedPatchRecordPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`ReservedPatchRecord\` that was created by this mutation. + \\"\\"\\"The \`ReservedPatchRecord\` that was created by this mutation.\\"\\"\\" reservedPatchRecord: ReservedPatchRecord - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" reservedPatchRecordEdge( - # The method to use when ordering \`ReservedPatchRecord\`. + \\"\\"\\"The method to use when ordering \`ReservedPatchRecord\`.\\"\\"\\" orderBy: [ReservedPatchRecordsOrderBy!] = [PRIMARY_KEY_ASC] ): ReservedPatchRecordsEdge } -# The output of our create \`Reserved\` mutation. +\\"\\"\\"The output of our create \`Reserved\` mutation.\\"\\"\\" type CreateReservedPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`Reserved\` that was created by this mutation. + \\"\\"\\"The \`Reserved\` that was created by this mutation.\\"\\"\\" reserved: Reserved - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" reservedEdge( - # The method to use when ordering \`Reserved\`. + \\"\\"\\"The method to use when ordering \`Reserved\`.\\"\\"\\" orderBy: [ReservedsOrderBy!] = [PRIMARY_KEY_ASC] ): ReservedsEdge } -# All input for the create \`SimilarTable1\` mutation. +\\"\\"\\"All input for the create \`SimilarTable1\` mutation.\\"\\"\\" input CreateSimilarTable1Input { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`SimilarTable1\` to be created by this mutation. + \\"\\"\\"The \`SimilarTable1\` to be created by this mutation.\\"\\"\\" similarTable1: SimilarTable1Input! } -# The output of our create \`SimilarTable1\` mutation. +\\"\\"\\"The output of our create \`SimilarTable1\` mutation.\\"\\"\\" type CreateSimilarTable1Payload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`SimilarTable1\` that was created by this mutation. + \\"\\"\\"The \`SimilarTable1\` that was created by this mutation.\\"\\"\\" similarTable1: SimilarTable1 - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" similarTable1Edge( - # The method to use when ordering \`SimilarTable1\`. + \\"\\"\\"The method to use when ordering \`SimilarTable1\`.\\"\\"\\" orderBy: [SimilarTable1SOrderBy!] = [PRIMARY_KEY_ASC] ): SimilarTable1SEdge } -# All input for the create \`SimilarTable2\` mutation. +\\"\\"\\"All input for the create \`SimilarTable2\` mutation.\\"\\"\\" input CreateSimilarTable2Input { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`SimilarTable2\` to be created by this mutation. + \\"\\"\\"The \`SimilarTable2\` to be created by this mutation.\\"\\"\\" similarTable2: SimilarTable2Input! } -# The output of our create \`SimilarTable2\` mutation. +\\"\\"\\"The output of our create \`SimilarTable2\` mutation.\\"\\"\\" type CreateSimilarTable2Payload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`SimilarTable2\` that was created by this mutation. + \\"\\"\\"The \`SimilarTable2\` that was created by this mutation.\\"\\"\\" similarTable2: SimilarTable2 - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" similarTable2Edge( - # The method to use when ordering \`SimilarTable2\`. + \\"\\"\\"The method to use when ordering \`SimilarTable2\`.\\"\\"\\" orderBy: [SimilarTable2SOrderBy!] = [PRIMARY_KEY_ASC] ): SimilarTable2SEdge } -# All input for the create \`Testview\` mutation. +\\"\\"\\"All input for the create \`Testview\` mutation.\\"\\"\\" input CreateTestviewInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`Testview\` to be created by this mutation. + \\"\\"\\"The \`Testview\` to be created by this mutation.\\"\\"\\" testview: TestviewInput! } -# The output of our create \`Testview\` mutation. +\\"\\"\\"The output of our create \`Testview\` mutation.\\"\\"\\" type CreateTestviewPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`Testview\` that was created by this mutation. + \\"\\"\\"The \`Testview\` that was created by this mutation.\\"\\"\\" testview: Testview - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" testviewEdge( - # The method to use when ordering \`Testview\`. + \\"\\"\\"The method to use when ordering \`Testview\`.\\"\\"\\" orderBy: [TestviewsOrderBy!] = [NATURAL] ): TestviewsEdge } -# All input for the create \`ViewTable\` mutation. +\\"\\"\\"All input for the create \`ViewTable\` mutation.\\"\\"\\" input CreateViewTableInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The \`ViewTable\` to be created by this mutation. + \\"\\"\\"The \`ViewTable\` to be created by this mutation.\\"\\"\\" viewTable: ViewTableInput! } -# The output of our create \`ViewTable\` mutation. +\\"\\"\\"The output of our create \`ViewTable\` mutation.\\"\\"\\" type CreateViewTablePayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`ViewTable\` that was created by this mutation. + \\"\\"\\"The \`ViewTable\` that was created by this mutation.\\"\\"\\" viewTable: ViewTable - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" viewTableEdge( - # The method to use when ordering \`ViewTable\`. + \\"\\"\\"The method to use when ordering \`ViewTable\`.\\"\\"\\" orderBy: [ViewTablesOrderBy!] = [PRIMARY_KEY_ASC] ): ViewTablesEdge } -# A location in a connection that can be used for resuming pagination. +\\"\\"\\"A location in a connection that can be used for resuming pagination.\\"\\"\\" scalar Cursor -# A point in time as described by the [ISO -# 8601](https://en.wikipedia.org/wiki/ISO_8601) standard. May or may not include a timezone. +\\"\\"\\" +A point in time as described by the [ISO +8601](https://en.wikipedia.org/wiki/ISO_8601) standard. May or may not include a timezone. +\\"\\"\\" scalar Datetime type DefaultValue implements Node { id: Int! - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" nodeId: ID! nullValue: String } -# A condition to be used against \`DefaultValue\` object types. All fields are -# tested for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`DefaultValue\` object types. All fields are +tested for equality and combined with a logical ‘and.’ +\\"\\"\\" input DefaultValueCondition { - # Checks for equality with the object’s \`id\` field. + \\"\\"\\"Checks for equality with the object’s \`id\` field.\\"\\"\\" id: Int - # Checks for equality with the object’s \`nullValue\` field. + \\"\\"\\"Checks for equality with the object’s \`nullValue\` field.\\"\\"\\" nullValue: String } -# An input for mutations affecting \`DefaultValue\` +\\"\\"\\"An input for mutations affecting \`DefaultValue\`\\"\\"\\" input DefaultValueInput { id: Int nullValue: String } -# Represents an update to a \`DefaultValue\`. Fields that are set will be updated. +\\"\\"\\" +Represents an update to a \`DefaultValue\`. Fields that are set will be updated. +\\"\\"\\" input DefaultValuePatch { id: Int nullValue: String } -# A connection to a list of \`DefaultValue\` values. +\\"\\"\\"A connection to a list of \`DefaultValue\` values.\\"\\"\\" type DefaultValuesConnection { - # A list of edges which contains the \`DefaultValue\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`DefaultValue\` and cursor to aid in pagination. + \\"\\"\\" edges: [DefaultValuesEdge!]! - # A list of \`DefaultValue\` objects. + \\"\\"\\"A list of \`DefaultValue\` objects.\\"\\"\\" nodes: [DefaultValue]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`DefaultValue\` you could get from the connection. + \\"\\"\\"The count of *all* \`DefaultValue\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`DefaultValue\` edge in the connection. +\\"\\"\\"A \`DefaultValue\` edge in the connection.\\"\\"\\" type DefaultValuesEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`DefaultValue\` at the end of the edge. + \\"\\"\\"The \`DefaultValue\` at the end of the edge.\\"\\"\\" node: DefaultValue! } -# Methods to use when ordering \`DefaultValue\`. +\\"\\"\\"Methods to use when ordering \`DefaultValue\`.\\"\\"\\" enum DefaultValuesOrderBy { ID_ASC ID_DESC @@ -10647,382 +12699,482 @@ enum DefaultValuesOrderBy { PRIMARY_KEY_DESC } -# All input for the \`deleteDefaultValueById\` mutation. +\\"\\"\\"All input for the \`deleteDefaultValueById\` mutation.\\"\\"\\" input DeleteDefaultValueByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! } -# All input for the \`deleteDefaultValue\` mutation. +\\"\\"\\"All input for the \`deleteDefaultValue\` mutation.\\"\\"\\" input DeleteDefaultValueInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`DefaultValue\` to be deleted. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`DefaultValue\` to be deleted. + \\"\\"\\" nodeId: ID! } -# The output of our delete \`DefaultValue\` mutation. +\\"\\"\\"The output of our delete \`DefaultValue\` mutation.\\"\\"\\" type DeleteDefaultValuePayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`DefaultValue\` that was deleted by this mutation. + \\"\\"\\"The \`DefaultValue\` that was deleted by this mutation.\\"\\"\\" defaultValue: DefaultValue - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" defaultValueEdge( - # The method to use when ordering \`DefaultValue\`. + \\"\\"\\"The method to use when ordering \`DefaultValue\`.\\"\\"\\" orderBy: [DefaultValuesOrderBy!] = [PRIMARY_KEY_ASC] ): DefaultValuesEdge deletedDefaultValueId: ID - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`deleteInputById\` mutation. +\\"\\"\\"All input for the \`deleteInputById\` mutation.\\"\\"\\" input DeleteInputByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! } -# All input for the \`deleteInput\` mutation. +\\"\\"\\"All input for the \`deleteInput\` mutation.\\"\\"\\" input DeleteInputInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`Input\` to be deleted. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`Input\` to be deleted. + \\"\\"\\" nodeId: ID! } -# The output of our delete \`Input\` mutation. +\\"\\"\\"The output of our delete \`Input\` mutation.\\"\\"\\" type DeleteInputPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String deletedInputId: ID - # The \`Input\` that was deleted by this mutation. + \\"\\"\\"The \`Input\` that was deleted by this mutation.\\"\\"\\" input: Input - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" inputEdge( - # The method to use when ordering \`Input\`. + \\"\\"\\"The method to use when ordering \`Input\`.\\"\\"\\" orderBy: [InputsOrderBy!] = [PRIMARY_KEY_ASC] ): InputsEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`deletePatchById\` mutation. +\\"\\"\\"All input for the \`deletePatchById\` mutation.\\"\\"\\" input DeletePatchByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! } -# All input for the \`deletePatch\` mutation. +\\"\\"\\"All input for the \`deletePatch\` mutation.\\"\\"\\" input DeletePatchInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`Patch\` to be deleted. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`Patch\` to be deleted. + \\"\\"\\" nodeId: ID! } -# The output of our delete \`Patch\` mutation. +\\"\\"\\"The output of our delete \`Patch\` mutation.\\"\\"\\" type DeletePatchPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String deletedPatchId: ID - # The \`Patch\` that was deleted by this mutation. + \\"\\"\\"The \`Patch\` that was deleted by this mutation.\\"\\"\\" patch: Patch - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" patchEdge( - # The method to use when ordering \`Patch\`. + \\"\\"\\"The method to use when ordering \`Patch\`.\\"\\"\\" orderBy: [PatchesOrderBy!] = [PRIMARY_KEY_ASC] ): PatchesEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`deletePostById\` mutation. +\\"\\"\\"All input for the \`deletePostById\` mutation.\\"\\"\\" input DeletePostByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! } -# All input for the \`deletePost\` mutation. +\\"\\"\\"All input for the \`deletePost\` mutation.\\"\\"\\" input DeletePostInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`Post\` to be deleted. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`Post\` to be deleted. + \\"\\"\\" nodeId: ID! } -# The output of our delete \`Post\` mutation. +\\"\\"\\"The output of our delete \`Post\` mutation.\\"\\"\\" type DeletePostPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String deletedPostId: ID - # The \`Post\` that was deleted by this mutation. + \\"\\"\\"The \`Post\` that was deleted by this mutation.\\"\\"\\" post: Post - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" postEdge( - # The method to use when ordering \`Post\`. + \\"\\"\\"The method to use when ordering \`Post\`.\\"\\"\\" orderBy: [PostsOrderBy!] = [PRIMARY_KEY_ASC] ): PostsEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`deleteReservedById\` mutation. +\\"\\"\\"All input for the \`deleteReservedById\` mutation.\\"\\"\\" input DeleteReservedByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! } -# All input for the \`deleteReserved\` mutation. +\\"\\"\\"All input for the \`deleteReserved\` mutation.\\"\\"\\" input DeleteReservedInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`Reserved\` to be deleted. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`Reserved\` to be deleted. + \\"\\"\\" nodeId: ID! } -# All input for the \`deleteReservedInputRecordById\` mutation. +\\"\\"\\"All input for the \`deleteReservedInputRecordById\` mutation.\\"\\"\\" input DeleteReservedInputRecordByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! } -# All input for the \`deleteReservedInputRecord\` mutation. +\\"\\"\\"All input for the \`deleteReservedInputRecord\` mutation.\\"\\"\\" input DeleteReservedInputRecordInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`ReservedInputRecord\` to be deleted. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`ReservedInputRecord\` to be deleted. + \\"\\"\\" nodeId: ID! } -# The output of our delete \`ReservedInputRecord\` mutation. +\\"\\"\\"The output of our delete \`ReservedInputRecord\` mutation.\\"\\"\\" type DeleteReservedInputRecordPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String deletedReservedInputId: ID - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`ReservedInputRecord\` that was deleted by this mutation. + \\"\\"\\"The \`ReservedInputRecord\` that was deleted by this mutation.\\"\\"\\" reservedInputRecord: ReservedInputRecord - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" reservedInputRecordEdge( - # The method to use when ordering \`ReservedInputRecord\`. + \\"\\"\\"The method to use when ordering \`ReservedInputRecord\`.\\"\\"\\" orderBy: [ReservedInputRecordsOrderBy!] = [PRIMARY_KEY_ASC] ): ReservedInputRecordsEdge } -# All input for the \`deleteReservedPatchRecordById\` mutation. +\\"\\"\\"All input for the \`deleteReservedPatchRecordById\` mutation.\\"\\"\\" input DeleteReservedPatchRecordByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! } -# All input for the \`deleteReservedPatchRecord\` mutation. +\\"\\"\\"All input for the \`deleteReservedPatchRecord\` mutation.\\"\\"\\" input DeleteReservedPatchRecordInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`ReservedPatchRecord\` to be deleted. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`ReservedPatchRecord\` to be deleted. + \\"\\"\\" nodeId: ID! } -# The output of our delete \`ReservedPatchRecord\` mutation. +\\"\\"\\"The output of our delete \`ReservedPatchRecord\` mutation.\\"\\"\\" type DeleteReservedPatchRecordPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String deletedReservedPatchId: ID - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`ReservedPatchRecord\` that was deleted by this mutation. + \\"\\"\\"The \`ReservedPatchRecord\` that was deleted by this mutation.\\"\\"\\" reservedPatchRecord: ReservedPatchRecord - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" reservedPatchRecordEdge( - # The method to use when ordering \`ReservedPatchRecord\`. + \\"\\"\\"The method to use when ordering \`ReservedPatchRecord\`.\\"\\"\\" orderBy: [ReservedPatchRecordsOrderBy!] = [PRIMARY_KEY_ASC] ): ReservedPatchRecordsEdge } -# The output of our delete \`Reserved\` mutation. +\\"\\"\\"The output of our delete \`Reserved\` mutation.\\"\\"\\" type DeleteReservedPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String deletedReservedId: ID - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`Reserved\` that was deleted by this mutation. + \\"\\"\\"The \`Reserved\` that was deleted by this mutation.\\"\\"\\" reserved: Reserved - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" reservedEdge( - # The method to use when ordering \`Reserved\`. + \\"\\"\\"The method to use when ordering \`Reserved\`.\\"\\"\\" orderBy: [ReservedsOrderBy!] = [PRIMARY_KEY_ASC] ): ReservedsEdge } -# All input for the \`deleteSimilarTable1ById\` mutation. +\\"\\"\\"All input for the \`deleteSimilarTable1ById\` mutation.\\"\\"\\" input DeleteSimilarTable1ByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! } -# All input for the \`deleteSimilarTable1\` mutation. +\\"\\"\\"All input for the \`deleteSimilarTable1\` mutation.\\"\\"\\" input DeleteSimilarTable1Input { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`SimilarTable1\` to be deleted. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`SimilarTable1\` to be deleted. + \\"\\"\\" nodeId: ID! } -# The output of our delete \`SimilarTable1\` mutation. +\\"\\"\\"The output of our delete \`SimilarTable1\` mutation.\\"\\"\\" type DeleteSimilarTable1Payload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String deletedSimilarTable1Id: ID - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`SimilarTable1\` that was deleted by this mutation. + \\"\\"\\"The \`SimilarTable1\` that was deleted by this mutation.\\"\\"\\" similarTable1: SimilarTable1 - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" similarTable1Edge( - # The method to use when ordering \`SimilarTable1\`. + \\"\\"\\"The method to use when ordering \`SimilarTable1\`.\\"\\"\\" orderBy: [SimilarTable1SOrderBy!] = [PRIMARY_KEY_ASC] ): SimilarTable1SEdge } -# All input for the \`deleteSimilarTable2ById\` mutation. +\\"\\"\\"All input for the \`deleteSimilarTable2ById\` mutation.\\"\\"\\" input DeleteSimilarTable2ByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! } -# All input for the \`deleteSimilarTable2\` mutation. +\\"\\"\\"All input for the \`deleteSimilarTable2\` mutation.\\"\\"\\" input DeleteSimilarTable2Input { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`SimilarTable2\` to be deleted. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`SimilarTable2\` to be deleted. + \\"\\"\\" nodeId: ID! } -# The output of our delete \`SimilarTable2\` mutation. +\\"\\"\\"The output of our delete \`SimilarTable2\` mutation.\\"\\"\\" type DeleteSimilarTable2Payload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String deletedSimilarTable2Id: ID - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`SimilarTable2\` that was deleted by this mutation. + \\"\\"\\"The \`SimilarTable2\` that was deleted by this mutation.\\"\\"\\" similarTable2: SimilarTable2 - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" similarTable2Edge( - # The method to use when ordering \`SimilarTable2\`. + \\"\\"\\"The method to use when ordering \`SimilarTable2\`.\\"\\"\\" orderBy: [SimilarTable2SOrderBy!] = [PRIMARY_KEY_ASC] ): SimilarTable2SEdge } -# All input for the \`deleteViewTableById\` mutation. +\\"\\"\\"All input for the \`deleteViewTableById\` mutation.\\"\\"\\" input DeleteViewTableByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! } -# All input for the \`deleteViewTable\` mutation. +\\"\\"\\"All input for the \`deleteViewTable\` mutation.\\"\\"\\" input DeleteViewTableInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`ViewTable\` to be deleted. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`ViewTable\` to be deleted. + \\"\\"\\" nodeId: ID! } -# The output of our delete \`ViewTable\` mutation. +\\"\\"\\"The output of our delete \`ViewTable\` mutation.\\"\\"\\" type DeleteViewTablePayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String deletedViewTableId: ID - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`ViewTable\` that was deleted by this mutation. + \\"\\"\\"The \`ViewTable\` that was deleted by this mutation.\\"\\"\\" viewTable: ViewTable - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" viewTableEdge( - # The method to use when ordering \`ViewTable\`. + \\"\\"\\"The method to use when ordering \`ViewTable\`.\\"\\"\\" orderBy: [ViewTablesOrderBy!] = [PRIMARY_KEY_ASC] ): ViewTablesEdge } @@ -11033,51 +13185,55 @@ type ForeignKey { personId: Int } -# A condition to be used against \`ForeignKey\` object types. All fields are tested -# for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`ForeignKey\` object types. All fields are tested +for equality and combined with a logical ‘and.’ +\\"\\"\\" input ForeignKeyCondition { - # Checks for equality with the object’s \`compoundKey1\` field. + \\"\\"\\"Checks for equality with the object’s \`compoundKey1\` field.\\"\\"\\" compoundKey1: Int - # Checks for equality with the object’s \`compoundKey2\` field. + \\"\\"\\"Checks for equality with the object’s \`compoundKey2\` field.\\"\\"\\" compoundKey2: Int - # Checks for equality with the object’s \`personId\` field. + \\"\\"\\"Checks for equality with the object’s \`personId\` field.\\"\\"\\" personId: Int } -# An input for mutations affecting \`ForeignKey\` +\\"\\"\\"An input for mutations affecting \`ForeignKey\`\\"\\"\\" input ForeignKeyInput { compoundKey1: Int compoundKey2: Int personId: Int } -# A connection to a list of \`ForeignKey\` values. +\\"\\"\\"A connection to a list of \`ForeignKey\` values.\\"\\"\\" type ForeignKeysConnection { - # A list of edges which contains the \`ForeignKey\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`ForeignKey\` and cursor to aid in pagination. + \\"\\"\\" edges: [ForeignKeysEdge!]! - # A list of \`ForeignKey\` objects. + \\"\\"\\"A list of \`ForeignKey\` objects.\\"\\"\\" nodes: [ForeignKey]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`ForeignKey\` you could get from the connection. + \\"\\"\\"The count of *all* \`ForeignKey\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`ForeignKey\` edge in the connection. +\\"\\"\\"A \`ForeignKey\` edge in the connection.\\"\\"\\" type ForeignKeysEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`ForeignKey\` at the end of the edge. + \\"\\"\\"The \`ForeignKey\` at the end of the edge.\\"\\"\\" node: ForeignKey! } -# Methods to use when ordering \`ForeignKey\`. +\\"\\"\\"Methods to use when ordering \`ForeignKey\`.\\"\\"\\" enum ForeignKeysOrderBy { COMPOUND_KEY_1_ASC COMPOUND_KEY_1_DESC @@ -11088,55 +13244,63 @@ enum ForeignKeysOrderBy { PERSON_ID_DESC } -# Should output as Input +\\"\\"\\"Should output as Input\\"\\"\\" type Input implements Node { id: Int! - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" nodeId: ID! } -# A condition to be used against \`Input\` object types. All fields are tested for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`Input\` object types. All fields are tested for equality and combined with a logical ‘and.’ +\\"\\"\\" input InputCondition { - # Checks for equality with the object’s \`id\` field. + \\"\\"\\"Checks for equality with the object’s \`id\` field.\\"\\"\\" id: Int } -# An input for mutations affecting \`Input\` +\\"\\"\\"An input for mutations affecting \`Input\`\\"\\"\\" input InputInput { id: Int } -# Represents an update to a \`Input\`. Fields that are set will be updated. +\\"\\"\\" +Represents an update to a \`Input\`. Fields that are set will be updated. +\\"\\"\\" input InputPatch { id: Int } -# A connection to a list of \`Input\` values. +\\"\\"\\"A connection to a list of \`Input\` values.\\"\\"\\" type InputsConnection { - # A list of edges which contains the \`Input\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`Input\` and cursor to aid in pagination. + \\"\\"\\" edges: [InputsEdge!]! - # A list of \`Input\` objects. + \\"\\"\\"A list of \`Input\` objects.\\"\\"\\" nodes: [Input]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`Input\` you could get from the connection. + \\"\\"\\"The count of *all* \`Input\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`Input\` edge in the connection. +\\"\\"\\"A \`Input\` edge in the connection.\\"\\"\\" type InputsEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`Input\` at the end of the edge. + \\"\\"\\"The \`Input\` at the end of the edge.\\"\\"\\" node: Input! } -# Methods to use when ordering \`Input\`. +\\"\\"\\"Methods to use when ordering \`Input\`.\\"\\"\\" enum InputsOrderBy { ID_ASC ID_DESC @@ -11145,370 +13309,512 @@ enum InputsOrderBy { PRIMARY_KEY_DESC } -# The root mutation type which contains root level fields which mutate data. +\\"\\"\\" +The root mutation type which contains root level fields which mutate data. +\\"\\"\\" type Mutation { - # lol, add some stuff 1 mutation + \\"\\"\\"lol, add some stuff 1 mutation\\"\\"\\" add1Mutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: Add1MutationInput! ): Add1MutationPayload - # lol, add some stuff 2 mutation + \\"\\"\\"lol, add some stuff 2 mutation\\"\\"\\" add2Mutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: Add2MutationInput! ): Add2MutationPayload - # lol, add some stuff 3 mutation + \\"\\"\\"lol, add some stuff 3 mutation\\"\\"\\" add3Mutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: Add3MutationInput! ): Add3MutationPayload - # lol, add some stuff 4 mutation + \\"\\"\\"lol, add some stuff 4 mutation\\"\\"\\" add4Mutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: Add4MutationInput! ): Add4MutationPayload add4MutationError( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: Add4MutationErrorInput! ): Add4MutationErrorPayload - # Creates a single \`DefaultValue\`. + \\"\\"\\"Creates a single \`DefaultValue\`.\\"\\"\\" createDefaultValue( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreateDefaultValueInput! ): CreateDefaultValuePayload - # Creates a single \`ForeignKey\`. + \\"\\"\\"Creates a single \`ForeignKey\`.\\"\\"\\" createForeignKey( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreateForeignKeyInput! ): CreateForeignKeyPayload - # Creates a single \`Input\`. + \\"\\"\\"Creates a single \`Input\`.\\"\\"\\" createInput( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreateInputInput! ): CreateInputPayload - # Creates a single \`Patch\`. + \\"\\"\\"Creates a single \`Patch\`.\\"\\"\\" createPatch( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreatePatchInput! ): CreatePatchPayload - # Creates a single \`Post\`. + \\"\\"\\"Creates a single \`Post\`.\\"\\"\\" createPost( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreatePostInput! ): CreatePostPayload - # Creates a single \`Reserved\`. + \\"\\"\\"Creates a single \`Reserved\`.\\"\\"\\" createReserved( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreateReservedInput! ): CreateReservedPayload - # Creates a single \`ReservedInputRecord\`. + \\"\\"\\"Creates a single \`ReservedInputRecord\`.\\"\\"\\" createReservedInputRecord( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreateReservedInputRecordInput! ): CreateReservedInputRecordPayload - # Creates a single \`ReservedPatchRecord\`. + \\"\\"\\"Creates a single \`ReservedPatchRecord\`.\\"\\"\\" createReservedPatchRecord( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreateReservedPatchRecordInput! ): CreateReservedPatchRecordPayload - # Creates a single \`SimilarTable1\`. + \\"\\"\\"Creates a single \`SimilarTable1\`.\\"\\"\\" createSimilarTable1( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreateSimilarTable1Input! ): CreateSimilarTable1Payload - # Creates a single \`SimilarTable2\`. + \\"\\"\\"Creates a single \`SimilarTable2\`.\\"\\"\\" createSimilarTable2( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreateSimilarTable2Input! ): CreateSimilarTable2Payload - # Creates a single \`Testview\`. + \\"\\"\\"Creates a single \`Testview\`.\\"\\"\\" createTestview( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreateTestviewInput! ): CreateTestviewPayload - # Creates a single \`ViewTable\`. + \\"\\"\\"Creates a single \`ViewTable\`.\\"\\"\\" createViewTable( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: CreateViewTableInput! ): CreateViewTablePayload - # Deletes a single \`DefaultValue\` using its globally unique id. + \\"\\"\\"Deletes a single \`DefaultValue\` using its globally unique id.\\"\\"\\" deleteDefaultValue( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteDefaultValueInput! ): DeleteDefaultValuePayload - # Deletes a single \`DefaultValue\` using a unique key. + \\"\\"\\"Deletes a single \`DefaultValue\` using a unique key.\\"\\"\\" deleteDefaultValueById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteDefaultValueByIdInput! ): DeleteDefaultValuePayload - # Deletes a single \`Input\` using its globally unique id. + \\"\\"\\"Deletes a single \`Input\` using its globally unique id.\\"\\"\\" deleteInput( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteInputInput! ): DeleteInputPayload - # Deletes a single \`Input\` using a unique key. + \\"\\"\\"Deletes a single \`Input\` using a unique key.\\"\\"\\" deleteInputById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteInputByIdInput! ): DeleteInputPayload - # Deletes a single \`Patch\` using its globally unique id. + \\"\\"\\"Deletes a single \`Patch\` using its globally unique id.\\"\\"\\" deletePatch( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeletePatchInput! ): DeletePatchPayload - # Deletes a single \`Patch\` using a unique key. + \\"\\"\\"Deletes a single \`Patch\` using a unique key.\\"\\"\\" deletePatchById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeletePatchByIdInput! ): DeletePatchPayload - # Deletes a single \`Post\` using its globally unique id. + \\"\\"\\"Deletes a single \`Post\` using its globally unique id.\\"\\"\\" deletePost( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeletePostInput! ): DeletePostPayload - # Deletes a single \`Post\` using a unique key. + \\"\\"\\"Deletes a single \`Post\` using a unique key.\\"\\"\\" deletePostById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeletePostByIdInput! ): DeletePostPayload - # Deletes a single \`Reserved\` using its globally unique id. + \\"\\"\\"Deletes a single \`Reserved\` using its globally unique id.\\"\\"\\" deleteReserved( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteReservedInput! ): DeleteReservedPayload - # Deletes a single \`Reserved\` using a unique key. + \\"\\"\\"Deletes a single \`Reserved\` using a unique key.\\"\\"\\" deleteReservedById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteReservedByIdInput! ): DeleteReservedPayload - # Deletes a single \`ReservedInputRecord\` using its globally unique id. + \\"\\"\\"Deletes a single \`ReservedInputRecord\` using its globally unique id.\\"\\"\\" deleteReservedInputRecord( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteReservedInputRecordInput! ): DeleteReservedInputRecordPayload - # Deletes a single \`ReservedInputRecord\` using a unique key. + \\"\\"\\"Deletes a single \`ReservedInputRecord\` using a unique key.\\"\\"\\" deleteReservedInputRecordById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteReservedInputRecordByIdInput! ): DeleteReservedInputRecordPayload - # Deletes a single \`ReservedPatchRecord\` using its globally unique id. + \\"\\"\\"Deletes a single \`ReservedPatchRecord\` using its globally unique id.\\"\\"\\" deleteReservedPatchRecord( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteReservedPatchRecordInput! ): DeleteReservedPatchRecordPayload - # Deletes a single \`ReservedPatchRecord\` using a unique key. + \\"\\"\\"Deletes a single \`ReservedPatchRecord\` using a unique key.\\"\\"\\" deleteReservedPatchRecordById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteReservedPatchRecordByIdInput! ): DeleteReservedPatchRecordPayload - # Deletes a single \`SimilarTable1\` using its globally unique id. + \\"\\"\\"Deletes a single \`SimilarTable1\` using its globally unique id.\\"\\"\\" deleteSimilarTable1( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteSimilarTable1Input! ): DeleteSimilarTable1Payload - # Deletes a single \`SimilarTable1\` using a unique key. + \\"\\"\\"Deletes a single \`SimilarTable1\` using a unique key.\\"\\"\\" deleteSimilarTable1ById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteSimilarTable1ByIdInput! ): DeleteSimilarTable1Payload - # Deletes a single \`SimilarTable2\` using its globally unique id. + \\"\\"\\"Deletes a single \`SimilarTable2\` using its globally unique id.\\"\\"\\" deleteSimilarTable2( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteSimilarTable2Input! ): DeleteSimilarTable2Payload - # Deletes a single \`SimilarTable2\` using a unique key. + \\"\\"\\"Deletes a single \`SimilarTable2\` using a unique key.\\"\\"\\" deleteSimilarTable2ById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteSimilarTable2ByIdInput! ): DeleteSimilarTable2Payload - # Deletes a single \`ViewTable\` using its globally unique id. + \\"\\"\\"Deletes a single \`ViewTable\` using its globally unique id.\\"\\"\\" deleteViewTable( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteViewTableInput! ): DeleteViewTablePayload - # Deletes a single \`ViewTable\` using a unique key. + \\"\\"\\"Deletes a single \`ViewTable\` using a unique key.\\"\\"\\" deleteViewTableById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: DeleteViewTableByIdInput! ): DeleteViewTablePayload normalRand( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: NormalRandInput! ): NormalRandPayload - # Reads and enables pagination through a set of \`Post\`. + \\"\\"\\"Reads and enables pagination through a set of \`Post\`.\\"\\"\\" postMany( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: PostManyInput! ): PostManyPayload postWithSuffix( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: PostWithSuffixInput! ): PostWithSuffixPayload returnVoidMutation( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: ReturnVoidMutationInput! ): ReturnVoidMutationPayload - # Updates a single \`DefaultValue\` using its globally unique id and a patch. + \\"\\"\\" + Updates a single \`DefaultValue\` using its globally unique id and a patch. + \\"\\"\\" updateDefaultValue( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateDefaultValueInput! ): UpdateDefaultValuePayload - # Updates a single \`DefaultValue\` using a unique key and a patch. + \\"\\"\\"Updates a single \`DefaultValue\` using a unique key and a patch.\\"\\"\\" updateDefaultValueById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateDefaultValueByIdInput! ): UpdateDefaultValuePayload - # Updates a single \`Input\` using its globally unique id and a patch. + \\"\\"\\"Updates a single \`Input\` using its globally unique id and a patch.\\"\\"\\" updateInput( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateInputInput! ): UpdateInputPayload - # Updates a single \`Input\` using a unique key and a patch. + \\"\\"\\"Updates a single \`Input\` using a unique key and a patch.\\"\\"\\" updateInputById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateInputByIdInput! ): UpdateInputPayload - # Updates a single \`Patch\` using its globally unique id and a patch. + \\"\\"\\"Updates a single \`Patch\` using its globally unique id and a patch.\\"\\"\\" updatePatch( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdatePatchInput! ): UpdatePatchPayload - # Updates a single \`Patch\` using a unique key and a patch. + \\"\\"\\"Updates a single \`Patch\` using a unique key and a patch.\\"\\"\\" updatePatchById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdatePatchByIdInput! ): UpdatePatchPayload - # Updates a single \`Post\` using its globally unique id and a patch. + \\"\\"\\"Updates a single \`Post\` using its globally unique id and a patch.\\"\\"\\" updatePost( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdatePostInput! ): UpdatePostPayload - # Updates a single \`Post\` using a unique key and a patch. + \\"\\"\\"Updates a single \`Post\` using a unique key and a patch.\\"\\"\\" updatePostById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdatePostByIdInput! ): UpdatePostPayload - # Updates a single \`Reserved\` using its globally unique id and a patch. + \\"\\"\\"Updates a single \`Reserved\` using its globally unique id and a patch.\\"\\"\\" updateReserved( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateReservedInput! ): UpdateReservedPayload - # Updates a single \`Reserved\` using a unique key and a patch. + \\"\\"\\"Updates a single \`Reserved\` using a unique key and a patch.\\"\\"\\" updateReservedById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateReservedByIdInput! ): UpdateReservedPayload - # Updates a single \`ReservedInputRecord\` using its globally unique id and a patch. + \\"\\"\\" + Updates a single \`ReservedInputRecord\` using its globally unique id and a patch. + \\"\\"\\" updateReservedInputRecord( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateReservedInputRecordInput! ): UpdateReservedInputRecordPayload - # Updates a single \`ReservedInputRecord\` using a unique key and a patch. + \\"\\"\\" + Updates a single \`ReservedInputRecord\` using a unique key and a patch. + \\"\\"\\" updateReservedInputRecordById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateReservedInputRecordByIdInput! ): UpdateReservedInputRecordPayload - # Updates a single \`ReservedPatchRecord\` using its globally unique id and a patch. + \\"\\"\\" + Updates a single \`ReservedPatchRecord\` using its globally unique id and a patch. + \\"\\"\\" updateReservedPatchRecord( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateReservedPatchRecordInput! ): UpdateReservedPatchRecordPayload - # Updates a single \`ReservedPatchRecord\` using a unique key and a patch. + \\"\\"\\" + Updates a single \`ReservedPatchRecord\` using a unique key and a patch. + \\"\\"\\" updateReservedPatchRecordById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateReservedPatchRecordByIdInput! ): UpdateReservedPatchRecordPayload - # Updates a single \`SimilarTable1\` using its globally unique id and a patch. + \\"\\"\\" + Updates a single \`SimilarTable1\` using its globally unique id and a patch. + \\"\\"\\" updateSimilarTable1( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateSimilarTable1Input! ): UpdateSimilarTable1Payload - # Updates a single \`SimilarTable1\` using a unique key and a patch. + \\"\\"\\"Updates a single \`SimilarTable1\` using a unique key and a patch.\\"\\"\\" updateSimilarTable1ById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateSimilarTable1ByIdInput! ): UpdateSimilarTable1Payload - # Updates a single \`SimilarTable2\` using its globally unique id and a patch. + \\"\\"\\" + Updates a single \`SimilarTable2\` using its globally unique id and a patch. + \\"\\"\\" updateSimilarTable2( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateSimilarTable2Input! ): UpdateSimilarTable2Payload - # Updates a single \`SimilarTable2\` using a unique key and a patch. + \\"\\"\\"Updates a single \`SimilarTable2\` using a unique key and a patch.\\"\\"\\" updateSimilarTable2ById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateSimilarTable2ByIdInput! ): UpdateSimilarTable2Payload - # Updates a single \`ViewTable\` using its globally unique id and a patch. + \\"\\"\\" + Updates a single \`ViewTable\` using its globally unique id and a patch. + \\"\\"\\" updateViewTable( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateViewTableInput! ): UpdateViewTablePayload - # Updates a single \`ViewTable\` using a unique key and a patch. + \\"\\"\\"Updates a single \`ViewTable\` using a unique key and a patch.\\"\\"\\" updateViewTableById( - # The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" + The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields. + \\"\\"\\" input: UpdateViewTableByIdInput! ): UpdateViewTablePayload } -# An object with a globally unique \`ID\`. +\\"\\"\\"An object with a globally unique \`ID\`.\\"\\"\\" interface Node { - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" nodeId: ID! } @@ -11516,120 +13822,138 @@ type NonUpdatableView { column: Int } -# A condition to be used against \`NonUpdatableView\` object types. All fields are -# tested for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`NonUpdatableView\` object types. All fields are +tested for equality and combined with a logical ‘and.’ +\\"\\"\\" input NonUpdatableViewCondition { - # Checks for equality with the object’s \`column\` field. + \\"\\"\\"Checks for equality with the object’s \`column\` field.\\"\\"\\" column: Int } -# A connection to a list of \`NonUpdatableView\` values. +\\"\\"\\"A connection to a list of \`NonUpdatableView\` values.\\"\\"\\" type NonUpdatableViewsConnection { - # A list of edges which contains the \`NonUpdatableView\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`NonUpdatableView\` and cursor to aid in pagination. + \\"\\"\\" edges: [NonUpdatableViewsEdge!]! - # A list of \`NonUpdatableView\` objects. + \\"\\"\\"A list of \`NonUpdatableView\` objects.\\"\\"\\" nodes: [NonUpdatableView]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`NonUpdatableView\` you could get from the connection. + \\"\\"\\" + The count of *all* \`NonUpdatableView\` you could get from the connection. + \\"\\"\\" totalCount: Int } -# A \`NonUpdatableView\` edge in the connection. +\\"\\"\\"A \`NonUpdatableView\` edge in the connection.\\"\\"\\" type NonUpdatableViewsEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`NonUpdatableView\` at the end of the edge. + \\"\\"\\"The \`NonUpdatableView\` at the end of the edge.\\"\\"\\" node: NonUpdatableView! } -# Methods to use when ordering \`NonUpdatableView\`. +\\"\\"\\"Methods to use when ordering \`NonUpdatableView\`.\\"\\"\\" enum NonUpdatableViewsOrderBy { COLUMN_ASC COLUMN_DESC NATURAL } -# All input for the \`normalRand\` mutation. +\\"\\"\\"All input for the \`normalRand\` mutation.\\"\\"\\" input NormalRandInput { arg0: Int! arg1: Float! arg2: Float! - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`normalRand\` mutation. +\\"\\"\\"The output of our \`normalRand\` mutation.\\"\\"\\" type NormalRandPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String floats: [Float] - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# Information about pagination in a connection. +\\"\\"\\"Information about pagination in a connection.\\"\\"\\" type PageInfo { - # When paginating forwards, the cursor to continue. + \\"\\"\\"When paginating forwards, the cursor to continue.\\"\\"\\" endCursor: Cursor - # When paginating forwards, are there more items? + \\"\\"\\"When paginating forwards, are there more items?\\"\\"\\" hasNextPage: Boolean! - # When paginating backwards, are there more items? + \\"\\"\\"When paginating backwards, are there more items?\\"\\"\\" hasPreviousPage: Boolean! - # When paginating backwards, the cursor to continue. + \\"\\"\\"When paginating backwards, the cursor to continue.\\"\\"\\" startCursor: Cursor } -# Should output as Patch +\\"\\"\\"Should output as Patch\\"\\"\\" type Patch implements Node { id: Int! - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" nodeId: ID! } -# A condition to be used against \`Patch\` object types. All fields are tested for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`Patch\` object types. All fields are tested for equality and combined with a logical ‘and.’ +\\"\\"\\" input PatchCondition { - # Checks for equality with the object’s \`id\` field. + \\"\\"\\"Checks for equality with the object’s \`id\` field.\\"\\"\\" id: Int } -# A connection to a list of \`Patch\` values. +\\"\\"\\"A connection to a list of \`Patch\` values.\\"\\"\\" type PatchesConnection { - # A list of edges which contains the \`Patch\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`Patch\` and cursor to aid in pagination. + \\"\\"\\" edges: [PatchesEdge!]! - # A list of \`Patch\` objects. + \\"\\"\\"A list of \`Patch\` objects.\\"\\"\\" nodes: [Patch]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`Patch\` you could get from the connection. + \\"\\"\\"The count of *all* \`Patch\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`Patch\` edge in the connection. +\\"\\"\\"A \`Patch\` edge in the connection.\\"\\"\\" type PatchesEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`Patch\` at the end of the edge. + \\"\\"\\"The \`Patch\` at the end of the edge.\\"\\"\\" node: Patch! } -# Methods to use when ordering \`Patch\`. +\\"\\"\\"Methods to use when ordering \`Patch\`.\\"\\"\\" enum PatchesOrderBy { ID_ASC ID_DESC @@ -11638,12 +13962,14 @@ enum PatchesOrderBy { PRIMARY_KEY_DESC } -# An input for mutations affecting \`Patch\` +\\"\\"\\"An input for mutations affecting \`Patch\`\\"\\"\\" input PatchInput { id: Int } -# Represents an update to a \`Patch\`. Fields that are set will be updated. +\\"\\"\\" +Represents an update to a \`Patch\`. Fields that are set will be updated. +\\"\\"\\" input PatchPatch { id: Int } @@ -11658,29 +13984,33 @@ type Post implements Node { headlineTrimmedStrict(length: Int, omission: String): String id: Int! - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" nodeId: ID! } -# A condition to be used against \`Post\` object types. All fields are tested for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`Post\` object types. All fields are tested for equality and combined with a logical ‘and.’ +\\"\\"\\" input PostCondition { - # Checks for equality with the object’s \`authorId\` field. + \\"\\"\\"Checks for equality with the object’s \`authorId\` field.\\"\\"\\" authorId: Int - # Checks for equality with the object’s \`body\` field. + \\"\\"\\"Checks for equality with the object’s \`body\` field.\\"\\"\\" body: String - # Checks for equality with the object’s \`comptypes\` field. + \\"\\"\\"Checks for equality with the object’s \`comptypes\` field.\\"\\"\\" comptypes: [ComptypeInput] - # Checks for equality with the object’s \`enums\` field. + \\"\\"\\"Checks for equality with the object’s \`enums\` field.\\"\\"\\" enums: [AnEnum] - # Checks for equality with the object’s \`id\` field. + \\"\\"\\"Checks for equality with the object’s \`id\` field.\\"\\"\\" id: Int } -# An input for mutations affecting \`Post\` +\\"\\"\\"An input for mutations affecting \`Post\`\\"\\"\\" input PostInput { authorId: Int body: String @@ -11689,32 +14019,40 @@ input PostInput { id: Int } -# All input for the \`postMany\` mutation. +\\"\\"\\"All input for the \`postMany\` mutation.\\"\\"\\" input PostManyInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String posts: [PostInput] } -# The output of our \`postMany\` mutation. +\\"\\"\\"The output of our \`postMany\` mutation.\\"\\"\\" type PostManyPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" postEdge( - # The method to use when ordering \`Post\`. + \\"\\"\\"The method to use when ordering \`Post\`.\\"\\"\\" orderBy: [PostsOrderBy!] = [PRIMARY_KEY_ASC] ): PostsEdge posts: [Post] - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# Represents an update to a \`Post\`. Fields that are set will be updated. +\\"\\"\\" +Represents an update to a \`Post\`. Fields that are set will be updated. +\\"\\"\\" input PostPatch { authorId: Int body: String @@ -11723,31 +14061,33 @@ input PostPatch { id: Int } -# A connection to a list of \`Post\` values. +\\"\\"\\"A connection to a list of \`Post\` values.\\"\\"\\" type PostsConnection { - # A list of edges which contains the \`Post\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`Post\` and cursor to aid in pagination. + \\"\\"\\" edges: [PostsEdge!]! - # A list of \`Post\` objects. + \\"\\"\\"A list of \`Post\` objects.\\"\\"\\" nodes: [Post]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`Post\` you could get from the connection. + \\"\\"\\"The count of *all* \`Post\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`Post\` edge in the connection. +\\"\\"\\"A \`Post\` edge in the connection.\\"\\"\\" type PostsEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`Post\` at the end of the edge. + \\"\\"\\"The \`Post\` at the end of the edge.\\"\\"\\" node: Post! } -# Methods to use when ordering \`Post\`. +\\"\\"\\"Methods to use when ordering \`Post\`.\\"\\"\\" enum PostsOrderBy { AUTHOR_ID_ASC AUTHOR_ID_DESC @@ -11764,452 +14104,520 @@ enum PostsOrderBy { PRIMARY_KEY_DESC } -# All input for the \`postWithSuffix\` mutation. +\\"\\"\\"All input for the \`postWithSuffix\` mutation.\\"\\"\\" input PostWithSuffixInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String post: PostInput suffix: String } -# The output of our \`postWithSuffix\` mutation. +\\"\\"\\"The output of our \`postWithSuffix\` mutation.\\"\\"\\" type PostWithSuffixPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String post: Post - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" postEdge( - # The method to use when ordering \`Post\`. + \\"\\"\\"The method to use when ordering \`Post\`.\\"\\"\\" orderBy: [PostsOrderBy!] = [PRIMARY_KEY_ASC] ): PostsEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# The root query type which gives access points into the data universe. +\\"\\"\\"The root query type which gives access points into the data universe.\\"\\"\\" type Query implements Node { - # lol, add some stuff 1 query + \\"\\"\\"lol, add some stuff 1 query\\"\\"\\" add1Query(arg0: Int!, arg1: Int!): Int - # lol, add some stuff 2 query + \\"\\"\\"lol, add some stuff 2 query\\"\\"\\" add2Query(a: Int!, b: Int): Int - # lol, add some stuff 3 query + \\"\\"\\"lol, add some stuff 3 query\\"\\"\\" add3Query(a: Int, arg1: Int): Int - # lol, add some stuff 4 query + \\"\\"\\"lol, add some stuff 4 query\\"\\"\\" add4Query(arg0: Int, b: Int): Int - # Reads and enables pagination through a set of \`DefaultValue\`. + \\"\\"\\"Reads and enables pagination through a set of \`DefaultValue\`.\\"\\"\\" allDefaultValues( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: DefaultValueCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`DefaultValue\`. + \\"\\"\\"The method to use when ordering \`DefaultValue\`.\\"\\"\\" orderBy: [DefaultValuesOrderBy!] = [PRIMARY_KEY_ASC] ): DefaultValuesConnection - # Reads and enables pagination through a set of \`ForeignKey\`. + \\"\\"\\"Reads and enables pagination through a set of \`ForeignKey\`.\\"\\"\\" allForeignKeys( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: ForeignKeyCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`ForeignKey\`. + \\"\\"\\"The method to use when ordering \`ForeignKey\`.\\"\\"\\" orderBy: [ForeignKeysOrderBy!] = [NATURAL] ): ForeignKeysConnection - # Reads and enables pagination through a set of \`Input\`. + \\"\\"\\"Reads and enables pagination through a set of \`Input\`.\\"\\"\\" allInputs( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: InputCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`Input\`. + \\"\\"\\"The method to use when ordering \`Input\`.\\"\\"\\" orderBy: [InputsOrderBy!] = [PRIMARY_KEY_ASC] ): InputsConnection - # Reads and enables pagination through a set of \`NonUpdatableView\`. + \\"\\"\\"Reads and enables pagination through a set of \`NonUpdatableView\`.\\"\\"\\" allNonUpdatableViews( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: NonUpdatableViewCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`NonUpdatableView\`. + \\"\\"\\"The method to use when ordering \`NonUpdatableView\`.\\"\\"\\" orderBy: [NonUpdatableViewsOrderBy!] = [NATURAL] ): NonUpdatableViewsConnection - # Reads and enables pagination through a set of \`Patch\`. + \\"\\"\\"Reads and enables pagination through a set of \`Patch\`.\\"\\"\\" allPatches( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: PatchCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`Patch\`. + \\"\\"\\"The method to use when ordering \`Patch\`.\\"\\"\\" orderBy: [PatchesOrderBy!] = [PRIMARY_KEY_ASC] ): PatchesConnection - # Reads and enables pagination through a set of \`Post\`. + \\"\\"\\"Reads and enables pagination through a set of \`Post\`.\\"\\"\\" allPosts( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: PostCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`Post\`. + \\"\\"\\"The method to use when ordering \`Post\`.\\"\\"\\" orderBy: [PostsOrderBy!] = [PRIMARY_KEY_ASC] ): PostsConnection - # Reads and enables pagination through a set of \`ReservedInputRecord\`. + \\"\\"\\"Reads and enables pagination through a set of \`ReservedInputRecord\`.\\"\\"\\" allReservedInputRecords( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: ReservedInputRecordCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`ReservedInputRecord\`. + \\"\\"\\"The method to use when ordering \`ReservedInputRecord\`.\\"\\"\\" orderBy: [ReservedInputRecordsOrderBy!] = [PRIMARY_KEY_ASC] ): ReservedInputRecordsConnection - # Reads and enables pagination through a set of \`ReservedPatchRecord\`. + \\"\\"\\"Reads and enables pagination through a set of \`ReservedPatchRecord\`.\\"\\"\\" allReservedPatchRecords( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: ReservedPatchRecordCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`ReservedPatchRecord\`. + \\"\\"\\"The method to use when ordering \`ReservedPatchRecord\`.\\"\\"\\" orderBy: [ReservedPatchRecordsOrderBy!] = [PRIMARY_KEY_ASC] ): ReservedPatchRecordsConnection - # Reads and enables pagination through a set of \`Reserved\`. + \\"\\"\\"Reads and enables pagination through a set of \`Reserved\`.\\"\\"\\" allReserveds( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: ReservedCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`Reserved\`. + \\"\\"\\"The method to use when ordering \`Reserved\`.\\"\\"\\" orderBy: [ReservedsOrderBy!] = [PRIMARY_KEY_ASC] ): ReservedsConnection - # Reads and enables pagination through a set of \`SimilarTable1\`. + \\"\\"\\"Reads and enables pagination through a set of \`SimilarTable1\`.\\"\\"\\" allSimilarTable1S( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: SimilarTable1Condition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`SimilarTable1\`. + \\"\\"\\"The method to use when ordering \`SimilarTable1\`.\\"\\"\\" orderBy: [SimilarTable1SOrderBy!] = [PRIMARY_KEY_ASC] ): SimilarTable1SConnection - # Reads and enables pagination through a set of \`SimilarTable2\`. + \\"\\"\\"Reads and enables pagination through a set of \`SimilarTable2\`.\\"\\"\\" allSimilarTable2S( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: SimilarTable2Condition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`SimilarTable2\`. + \\"\\"\\"The method to use when ordering \`SimilarTable2\`.\\"\\"\\" orderBy: [SimilarTable2SOrderBy!] = [PRIMARY_KEY_ASC] ): SimilarTable2SConnection - # Reads and enables pagination through a set of \`Testview\`. + \\"\\"\\"Reads and enables pagination through a set of \`Testview\`.\\"\\"\\" allTestviews( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: TestviewCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`Testview\`. + \\"\\"\\"The method to use when ordering \`Testview\`.\\"\\"\\" orderBy: [TestviewsOrderBy!] = [NATURAL] ): TestviewsConnection - # Reads and enables pagination through a set of \`ViewTable\`. + \\"\\"\\"Reads and enables pagination through a set of \`ViewTable\`.\\"\\"\\" allViewTables( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" + A condition to be used in determining which values should be returned by the collection. + \\"\\"\\" condition: ViewTableCondition - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int - # The method to use when ordering \`ViewTable\`. + \\"\\"\\"The method to use when ordering \`ViewTable\`.\\"\\"\\" orderBy: [ViewTablesOrderBy!] = [PRIMARY_KEY_ASC] ): ViewTablesConnection - # Reads and enables pagination through a set of \`TablefuncCrosstab2\`. + \\"\\"\\"Reads and enables pagination through a set of \`TablefuncCrosstab2\`.\\"\\"\\" crosstab2( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor arg0: String! - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int ): TablefuncCrosstab2SConnection! - # Reads and enables pagination through a set of \`TablefuncCrosstab3\`. + \\"\\"\\"Reads and enables pagination through a set of \`TablefuncCrosstab3\`.\\"\\"\\" crosstab3( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor arg0: String! - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int ): TablefuncCrosstab3SConnection! - # Reads and enables pagination through a set of \`TablefuncCrosstab4\`. + \\"\\"\\"Reads and enables pagination through a set of \`TablefuncCrosstab4\`.\\"\\"\\" crosstab4( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor arg0: String! - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int ): TablefuncCrosstab4SConnection! - # Reads a single \`DefaultValue\` using its globally unique \`ID\`. + \\"\\"\\"Reads a single \`DefaultValue\` using its globally unique \`ID\`.\\"\\"\\" defaultValue( - # The globally unique \`ID\` to be used in selecting a single \`DefaultValue\`. + \\"\\"\\" + The globally unique \`ID\` to be used in selecting a single \`DefaultValue\`. + \\"\\"\\" nodeId: ID! ): DefaultValue defaultValueById(id: Int!): DefaultValue - # Reads a single \`Input\` using its globally unique \`ID\`. + \\"\\"\\"Reads a single \`Input\` using its globally unique \`ID\`.\\"\\"\\" input( - # The globally unique \`ID\` to be used in selecting a single \`Input\`. + \\"\\"\\"The globally unique \`ID\` to be used in selecting a single \`Input\`.\\"\\"\\" nodeId: ID! ): Input inputById(id: Int!): Input - # Fetches an object given its globally unique \`ID\`. + \\"\\"\\"Fetches an object given its globally unique \`ID\`.\\"\\"\\" node( - # The globally unique \`ID\`. + \\"\\"\\"The globally unique \`ID\`.\\"\\"\\" nodeId: ID! ): Node - # The root query type must be a \`Node\` to work well with Relay 1 mutations. This just resolves to \`query\`. + \\"\\"\\" + The root query type must be a \`Node\` to work well with Relay 1 mutations. This just resolves to \`query\`. + \\"\\"\\" nodeId: ID! optionalMissingMiddle1(arg0: Int!, b: Int, c: Int): Int optionalMissingMiddle2(a: Int!, b: Int, c: Int): Int @@ -12217,79 +14625,93 @@ type Query implements Node { optionalMissingMiddle4(arg0: Int!, arg2: Int, b: Int): Int optionalMissingMiddle5(a: Int!, arg1: Int, arg2: Int): Int - # Reads a single \`Patch\` using its globally unique \`ID\`. + \\"\\"\\"Reads a single \`Patch\` using its globally unique \`ID\`.\\"\\"\\" patch( - # The globally unique \`ID\` to be used in selecting a single \`Patch\`. + \\"\\"\\"The globally unique \`ID\` to be used in selecting a single \`Patch\`.\\"\\"\\" nodeId: ID! ): Patch patchById(id: Int!): Patch - # Reads a single \`Post\` using its globally unique \`ID\`. + \\"\\"\\"Reads a single \`Post\` using its globally unique \`ID\`.\\"\\"\\" post( - # The globally unique \`ID\` to be used in selecting a single \`Post\`. + \\"\\"\\"The globally unique \`ID\` to be used in selecting a single \`Post\`.\\"\\"\\" nodeId: ID! ): Post postById(id: Int!): Post - # Exposes the root query type nested one level down. This is helpful for Relay 1 - # which can only query top level fields if they are in a particular form. + \\"\\"\\" + Exposes the root query type nested one level down. This is helpful for Relay 1 + which can only query top level fields if they are in a particular form. + \\"\\"\\" query: Query! - # Reads a single \`Reserved\` using its globally unique \`ID\`. + \\"\\"\\"Reads a single \`Reserved\` using its globally unique \`ID\`.\\"\\"\\" reserved( - # The globally unique \`ID\` to be used in selecting a single \`Reserved\`. + \\"\\"\\"The globally unique \`ID\` to be used in selecting a single \`Reserved\`.\\"\\"\\" nodeId: ID! ): Reserved reservedById(id: Int!): Reserved - # Reads a single \`ReservedInputRecord\` using its globally unique \`ID\`. + \\"\\"\\"Reads a single \`ReservedInputRecord\` using its globally unique \`ID\`.\\"\\"\\" reservedInputRecord( - # The globally unique \`ID\` to be used in selecting a single \`ReservedInputRecord\`. + \\"\\"\\" + The globally unique \`ID\` to be used in selecting a single \`ReservedInputRecord\`. + \\"\\"\\" nodeId: ID! ): ReservedInputRecord reservedInputRecordById(id: Int!): ReservedInputRecord - # Reads a single \`ReservedPatchRecord\` using its globally unique \`ID\`. + \\"\\"\\"Reads a single \`ReservedPatchRecord\` using its globally unique \`ID\`.\\"\\"\\" reservedPatchRecord( - # The globally unique \`ID\` to be used in selecting a single \`ReservedPatchRecord\`. + \\"\\"\\" + The globally unique \`ID\` to be used in selecting a single \`ReservedPatchRecord\`. + \\"\\"\\" nodeId: ID! ): ReservedPatchRecord reservedPatchRecordById(id: Int!): ReservedPatchRecord - # Reads a single \`SimilarTable1\` using its globally unique \`ID\`. + \\"\\"\\"Reads a single \`SimilarTable1\` using its globally unique \`ID\`.\\"\\"\\" similarTable1( - # The globally unique \`ID\` to be used in selecting a single \`SimilarTable1\`. + \\"\\"\\" + The globally unique \`ID\` to be used in selecting a single \`SimilarTable1\`. + \\"\\"\\" nodeId: ID! ): SimilarTable1 similarTable1ById(id: Int!): SimilarTable1 - # Reads a single \`SimilarTable2\` using its globally unique \`ID\`. + \\"\\"\\"Reads a single \`SimilarTable2\` using its globally unique \`ID\`.\\"\\"\\" similarTable2( - # The globally unique \`ID\` to be used in selecting a single \`SimilarTable2\`. + \\"\\"\\" + The globally unique \`ID\` to be used in selecting a single \`SimilarTable2\`. + \\"\\"\\" nodeId: ID! ): SimilarTable2 similarTable2ById(id: Int!): SimilarTable2 staticBigInteger( - # Read all values in the set after (below) this cursor. + \\"\\"\\"Read all values in the set after (below) this cursor.\\"\\"\\" after: Cursor - # Read all values in the set before (above) this cursor. + \\"\\"\\"Read all values in the set before (above) this cursor.\\"\\"\\" before: Cursor - # Only read the first \`n\` values of the set. + \\"\\"\\"Only read the first \`n\` values of the set.\\"\\"\\" first: Int - # Only read the last \`n\` values of the set. + \\"\\"\\"Only read the last \`n\` values of the set.\\"\\"\\" last: Int - # Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor - # based pagination. May not be used with \`last\`. + \\"\\"\\" + Skip the first \`n\` values from our \`after\` cursor, an alternative to cursor + based pagination. May not be used with \`last\`. + \\"\\"\\" offset: Int ): StaticBigIntegerConnection! - # Reads a single \`ViewTable\` using its globally unique \`ID\`. + \\"\\"\\"Reads a single \`ViewTable\` using its globally unique \`ID\`.\\"\\"\\" viewTable( - # The globally unique \`ID\` to be used in selecting a single \`ViewTable\`. + \\"\\"\\" + The globally unique \`ID\` to be used in selecting a single \`ViewTable\`. + \\"\\"\\" nodeId: ID! ): ViewTable viewTableById(id: Int!): ViewTable @@ -12298,72 +14720,88 @@ type Query implements Node { type Reserved implements Node { id: Int! - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" nodeId: ID! } -# A condition to be used against \`Reserved\` object types. All fields are tested -# for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`Reserved\` object types. All fields are tested +for equality and combined with a logical ‘and.’ +\\"\\"\\" input ReservedCondition { - # Checks for equality with the object’s \`id\` field. + \\"\\"\\"Checks for equality with the object’s \`id\` field.\\"\\"\\" id: Int } -# An input for mutations affecting \`Reserved\` +\\"\\"\\"An input for mutations affecting \`Reserved\`\\"\\"\\" input ReservedInput { id: Int } -# \`reserved_input\` table should get renamed to ReservedInputRecord to prevent clashes with ReservedInput from \`reserved\` table +\\"\\"\\" +\`reserved_input\` table should get renamed to ReservedInputRecord to prevent clashes with ReservedInput from \`reserved\` table +\\"\\"\\" type ReservedInputRecord implements Node { id: Int! - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" nodeId: ID! } -# A condition to be used against \`ReservedInputRecord\` object types. All fields -# are tested for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`ReservedInputRecord\` object types. All fields +are tested for equality and combined with a logical ‘and.’ +\\"\\"\\" input ReservedInputRecordCondition { - # Checks for equality with the object’s \`id\` field. + \\"\\"\\"Checks for equality with the object’s \`id\` field.\\"\\"\\" id: Int } -# An input for mutations affecting \`ReservedInputRecord\` +\\"\\"\\"An input for mutations affecting \`ReservedInputRecord\`\\"\\"\\" input ReservedInputRecordInput { id: Int } -# Represents an update to a \`ReservedInputRecord\`. Fields that are set will be updated. +\\"\\"\\" +Represents an update to a \`ReservedInputRecord\`. Fields that are set will be updated. +\\"\\"\\" input ReservedInputRecordPatch { id: Int } -# A connection to a list of \`ReservedInputRecord\` values. +\\"\\"\\"A connection to a list of \`ReservedInputRecord\` values.\\"\\"\\" type ReservedInputRecordsConnection { - # A list of edges which contains the \`ReservedInputRecord\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`ReservedInputRecord\` and cursor to aid in pagination. + \\"\\"\\" edges: [ReservedInputRecordsEdge!]! - # A list of \`ReservedInputRecord\` objects. + \\"\\"\\"A list of \`ReservedInputRecord\` objects.\\"\\"\\" nodes: [ReservedInputRecord]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`ReservedInputRecord\` you could get from the connection. + \\"\\"\\" + The count of *all* \`ReservedInputRecord\` you could get from the connection. + \\"\\"\\" totalCount: Int } -# A \`ReservedInputRecord\` edge in the connection. +\\"\\"\\"A \`ReservedInputRecord\` edge in the connection.\\"\\"\\" type ReservedInputRecordsEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`ReservedInputRecord\` at the end of the edge. + \\"\\"\\"The \`ReservedInputRecord\` at the end of the edge.\\"\\"\\" node: ReservedInputRecord! } -# Methods to use when ordering \`ReservedInputRecord\`. +\\"\\"\\"Methods to use when ordering \`ReservedInputRecord\`.\\"\\"\\" enum ReservedInputRecordsOrderBy { ID_ASC ID_DESC @@ -12372,61 +14810,75 @@ enum ReservedInputRecordsOrderBy { PRIMARY_KEY_DESC } -# Represents an update to a \`Reserved\`. Fields that are set will be updated. +\\"\\"\\" +Represents an update to a \`Reserved\`. Fields that are set will be updated. +\\"\\"\\" input ReservedPatch { id: Int } -# \`reservedPatchs\` table should get renamed to ReservedPatchRecord to prevent clashes with ReservedPatch from \`reserved\` table +\\"\\"\\" +\`reservedPatchs\` table should get renamed to ReservedPatchRecord to prevent clashes with ReservedPatch from \`reserved\` table +\\"\\"\\" type ReservedPatchRecord implements Node { id: Int! - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" nodeId: ID! } -# A condition to be used against \`ReservedPatchRecord\` object types. All fields -# are tested for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`ReservedPatchRecord\` object types. All fields +are tested for equality and combined with a logical ‘and.’ +\\"\\"\\" input ReservedPatchRecordCondition { - # Checks for equality with the object’s \`id\` field. + \\"\\"\\"Checks for equality with the object’s \`id\` field.\\"\\"\\" id: Int } -# An input for mutations affecting \`ReservedPatchRecord\` +\\"\\"\\"An input for mutations affecting \`ReservedPatchRecord\`\\"\\"\\" input ReservedPatchRecordInput { id: Int } -# Represents an update to a \`ReservedPatchRecord\`. Fields that are set will be updated. +\\"\\"\\" +Represents an update to a \`ReservedPatchRecord\`. Fields that are set will be updated. +\\"\\"\\" input ReservedPatchRecordPatch { id: Int } -# A connection to a list of \`ReservedPatchRecord\` values. +\\"\\"\\"A connection to a list of \`ReservedPatchRecord\` values.\\"\\"\\" type ReservedPatchRecordsConnection { - # A list of edges which contains the \`ReservedPatchRecord\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`ReservedPatchRecord\` and cursor to aid in pagination. + \\"\\"\\" edges: [ReservedPatchRecordsEdge!]! - # A list of \`ReservedPatchRecord\` objects. + \\"\\"\\"A list of \`ReservedPatchRecord\` objects.\\"\\"\\" nodes: [ReservedPatchRecord]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`ReservedPatchRecord\` you could get from the connection. + \\"\\"\\" + The count of *all* \`ReservedPatchRecord\` you could get from the connection. + \\"\\"\\" totalCount: Int } -# A \`ReservedPatchRecord\` edge in the connection. +\\"\\"\\"A \`ReservedPatchRecord\` edge in the connection.\\"\\"\\" type ReservedPatchRecordsEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`ReservedPatchRecord\` at the end of the edge. + \\"\\"\\"The \`ReservedPatchRecord\` at the end of the edge.\\"\\"\\" node: ReservedPatchRecord! } -# Methods to use when ordering \`ReservedPatchRecord\`. +\\"\\"\\"Methods to use when ordering \`ReservedPatchRecord\`.\\"\\"\\" enum ReservedPatchRecordsOrderBy { ID_ASC ID_DESC @@ -12435,31 +14887,33 @@ enum ReservedPatchRecordsOrderBy { PRIMARY_KEY_DESC } -# A connection to a list of \`Reserved\` values. +\\"\\"\\"A connection to a list of \`Reserved\` values.\\"\\"\\" type ReservedsConnection { - # A list of edges which contains the \`Reserved\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`Reserved\` and cursor to aid in pagination. + \\"\\"\\" edges: [ReservedsEdge!]! - # A list of \`Reserved\` objects. + \\"\\"\\"A list of \`Reserved\` objects.\\"\\"\\" nodes: [Reserved]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`Reserved\` you could get from the connection. + \\"\\"\\"The count of *all* \`Reserved\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`Reserved\` edge in the connection. +\\"\\"\\"A \`Reserved\` edge in the connection.\\"\\"\\" type ReservedsEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`Reserved\` at the end of the edge. + \\"\\"\\"The \`Reserved\` at the end of the edge.\\"\\"\\" node: Reserved! } -# Methods to use when ordering \`Reserved\`. +\\"\\"\\"Methods to use when ordering \`Reserved\`.\\"\\"\\" enum ReservedsOrderBy { ID_ASC ID_DESC @@ -12468,20 +14922,26 @@ enum ReservedsOrderBy { PRIMARY_KEY_DESC } -# All input for the \`returnVoidMutation\` mutation. +\\"\\"\\"All input for the \`returnVoidMutation\` mutation.\\"\\"\\" input ReturnVoidMutationInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String } -# The output of our \`returnVoidMutation\` mutation. +\\"\\"\\"The output of our \`returnVoidMutation\` mutation.\\"\\"\\" type ReturnVoidMutationPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } @@ -12491,27 +14951,31 @@ type SimilarTable1 implements Node { col3: Int! id: Int! - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" nodeId: ID! } -# A condition to be used against \`SimilarTable1\` object types. All fields are -# tested for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`SimilarTable1\` object types. All fields are +tested for equality and combined with a logical ‘and.’ +\\"\\"\\" input SimilarTable1Condition { - # Checks for equality with the object’s \`col1\` field. + \\"\\"\\"Checks for equality with the object’s \`col1\` field.\\"\\"\\" col1: Int - # Checks for equality with the object’s \`col2\` field. + \\"\\"\\"Checks for equality with the object’s \`col2\` field.\\"\\"\\" col2: Int - # Checks for equality with the object’s \`col3\` field. + \\"\\"\\"Checks for equality with the object’s \`col3\` field.\\"\\"\\" col3: Int - # Checks for equality with the object’s \`id\` field. + \\"\\"\\"Checks for equality with the object’s \`id\` field.\\"\\"\\" id: Int } -# An input for mutations affecting \`SimilarTable1\` +\\"\\"\\"An input for mutations affecting \`SimilarTable1\`\\"\\"\\" input SimilarTable1Input { col1: Int col2: Int @@ -12519,7 +14983,9 @@ input SimilarTable1Input { id: Int } -# Represents an update to a \`SimilarTable1\`. Fields that are set will be updated. +\\"\\"\\" +Represents an update to a \`SimilarTable1\`. Fields that are set will be updated. +\\"\\"\\" input SimilarTable1Patch { col1: Int col2: Int @@ -12527,31 +14993,33 @@ input SimilarTable1Patch { id: Int } -# A connection to a list of \`SimilarTable1\` values. +\\"\\"\\"A connection to a list of \`SimilarTable1\` values.\\"\\"\\" type SimilarTable1SConnection { - # A list of edges which contains the \`SimilarTable1\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`SimilarTable1\` and cursor to aid in pagination. + \\"\\"\\" edges: [SimilarTable1SEdge!]! - # A list of \`SimilarTable1\` objects. + \\"\\"\\"A list of \`SimilarTable1\` objects.\\"\\"\\" nodes: [SimilarTable1]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`SimilarTable1\` you could get from the connection. + \\"\\"\\"The count of *all* \`SimilarTable1\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`SimilarTable1\` edge in the connection. +\\"\\"\\"A \`SimilarTable1\` edge in the connection.\\"\\"\\" type SimilarTable1SEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`SimilarTable1\` at the end of the edge. + \\"\\"\\"The \`SimilarTable1\` at the end of the edge.\\"\\"\\" node: SimilarTable1! } -# Methods to use when ordering \`SimilarTable1\`. +\\"\\"\\"Methods to use when ordering \`SimilarTable1\`.\\"\\"\\" enum SimilarTable1SOrderBy { COL1_ASC COL1_DESC @@ -12572,27 +15040,31 @@ type SimilarTable2 implements Node { col5: Int id: Int! - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" nodeId: ID! } -# A condition to be used against \`SimilarTable2\` object types. All fields are -# tested for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`SimilarTable2\` object types. All fields are +tested for equality and combined with a logical ‘and.’ +\\"\\"\\" input SimilarTable2Condition { - # Checks for equality with the object’s \`col3\` field. + \\"\\"\\"Checks for equality with the object’s \`col3\` field.\\"\\"\\" col3: Int - # Checks for equality with the object’s \`col4\` field. + \\"\\"\\"Checks for equality with the object’s \`col4\` field.\\"\\"\\" col4: Int - # Checks for equality with the object’s \`col5\` field. + \\"\\"\\"Checks for equality with the object’s \`col5\` field.\\"\\"\\" col5: Int - # Checks for equality with the object’s \`id\` field. + \\"\\"\\"Checks for equality with the object’s \`id\` field.\\"\\"\\" id: Int } -# An input for mutations affecting \`SimilarTable2\` +\\"\\"\\"An input for mutations affecting \`SimilarTable2\`\\"\\"\\" input SimilarTable2Input { col3: Int! col4: Int @@ -12600,7 +15072,9 @@ input SimilarTable2Input { id: Int } -# Represents an update to a \`SimilarTable2\`. Fields that are set will be updated. +\\"\\"\\" +Represents an update to a \`SimilarTable2\`. Fields that are set will be updated. +\\"\\"\\" input SimilarTable2Patch { col3: Int col4: Int @@ -12608,31 +15082,33 @@ input SimilarTable2Patch { id: Int } -# A connection to a list of \`SimilarTable2\` values. +\\"\\"\\"A connection to a list of \`SimilarTable2\` values.\\"\\"\\" type SimilarTable2SConnection { - # A list of edges which contains the \`SimilarTable2\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`SimilarTable2\` and cursor to aid in pagination. + \\"\\"\\" edges: [SimilarTable2SEdge!]! - # A list of \`SimilarTable2\` objects. + \\"\\"\\"A list of \`SimilarTable2\` objects.\\"\\"\\" nodes: [SimilarTable2]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`SimilarTable2\` you could get from the connection. + \\"\\"\\"The count of *all* \`SimilarTable2\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`SimilarTable2\` edge in the connection. +\\"\\"\\"A \`SimilarTable2\` edge in the connection.\\"\\"\\" type SimilarTable2SEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`SimilarTable2\` at the end of the edge. + \\"\\"\\"The \`SimilarTable2\` at the end of the edge.\\"\\"\\" node: SimilarTable2! } -# Methods to use when ordering \`SimilarTable2\`. +\\"\\"\\"Methods to use when ordering \`SimilarTable2\`.\\"\\"\\" enum SimilarTable2SOrderBy { COL3_ASC COL3_DESC @@ -12647,21 +15123,23 @@ enum SimilarTable2SOrderBy { PRIMARY_KEY_DESC } -# A connection to a list of \`BigInt\` values. +\\"\\"\\"A connection to a list of \`BigInt\` values.\\"\\"\\" type StaticBigIntegerConnection { - # A list of edges which contains the \`BigInt\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`BigInt\` and cursor to aid in pagination. + \\"\\"\\" edges: [StaticBigIntegerEdge!]! - # A list of \`BigInt\` objects. + \\"\\"\\"A list of \`BigInt\` objects.\\"\\"\\" nodes: [BigInt]! } -# A \`BigInt\` edge in the connection. +\\"\\"\\"A \`BigInt\` edge in the connection.\\"\\"\\" type StaticBigIntegerEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`BigInt\` at the end of the edge. + \\"\\"\\"The \`BigInt\` at the end of the edge.\\"\\"\\" node: BigInt } @@ -12671,27 +15149,31 @@ type TablefuncCrosstab2 { rowName: String } -# A connection to a list of \`TablefuncCrosstab2\` values. +\\"\\"\\"A connection to a list of \`TablefuncCrosstab2\` values.\\"\\"\\" type TablefuncCrosstab2SConnection { - # A list of edges which contains the \`TablefuncCrosstab2\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`TablefuncCrosstab2\` and cursor to aid in pagination. + \\"\\"\\" edges: [TablefuncCrosstab2SEdge!]! - # A list of \`TablefuncCrosstab2\` objects. + \\"\\"\\"A list of \`TablefuncCrosstab2\` objects.\\"\\"\\" nodes: [TablefuncCrosstab2]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`TablefuncCrosstab2\` you could get from the connection. + \\"\\"\\" + The count of *all* \`TablefuncCrosstab2\` you could get from the connection. + \\"\\"\\" totalCount: Int } -# A \`TablefuncCrosstab2\` edge in the connection. +\\"\\"\\"A \`TablefuncCrosstab2\` edge in the connection.\\"\\"\\" type TablefuncCrosstab2SEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`TablefuncCrosstab2\` at the end of the edge. + \\"\\"\\"The \`TablefuncCrosstab2\` at the end of the edge.\\"\\"\\" node: TablefuncCrosstab2! } @@ -12702,27 +15184,31 @@ type TablefuncCrosstab3 { rowName: String } -# A connection to a list of \`TablefuncCrosstab3\` values. +\\"\\"\\"A connection to a list of \`TablefuncCrosstab3\` values.\\"\\"\\" type TablefuncCrosstab3SConnection { - # A list of edges which contains the \`TablefuncCrosstab3\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`TablefuncCrosstab3\` and cursor to aid in pagination. + \\"\\"\\" edges: [TablefuncCrosstab3SEdge!]! - # A list of \`TablefuncCrosstab3\` objects. + \\"\\"\\"A list of \`TablefuncCrosstab3\` objects.\\"\\"\\" nodes: [TablefuncCrosstab3]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`TablefuncCrosstab3\` you could get from the connection. + \\"\\"\\" + The count of *all* \`TablefuncCrosstab3\` you could get from the connection. + \\"\\"\\" totalCount: Int } -# A \`TablefuncCrosstab3\` edge in the connection. +\\"\\"\\"A \`TablefuncCrosstab3\` edge in the connection.\\"\\"\\" type TablefuncCrosstab3SEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`TablefuncCrosstab3\` at the end of the edge. + \\"\\"\\"The \`TablefuncCrosstab3\` at the end of the edge.\\"\\"\\" node: TablefuncCrosstab3! } @@ -12734,27 +15220,31 @@ type TablefuncCrosstab4 { rowName: String } -# A connection to a list of \`TablefuncCrosstab4\` values. +\\"\\"\\"A connection to a list of \`TablefuncCrosstab4\` values.\\"\\"\\" type TablefuncCrosstab4SConnection { - # A list of edges which contains the \`TablefuncCrosstab4\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`TablefuncCrosstab4\` and cursor to aid in pagination. + \\"\\"\\" edges: [TablefuncCrosstab4SEdge!]! - # A list of \`TablefuncCrosstab4\` objects. + \\"\\"\\"A list of \`TablefuncCrosstab4\` objects.\\"\\"\\" nodes: [TablefuncCrosstab4]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`TablefuncCrosstab4\` you could get from the connection. + \\"\\"\\" + The count of *all* \`TablefuncCrosstab4\` you could get from the connection. + \\"\\"\\" totalCount: Int } -# A \`TablefuncCrosstab4\` edge in the connection. +\\"\\"\\"A \`TablefuncCrosstab4\` edge in the connection.\\"\\"\\" type TablefuncCrosstab4SEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`TablefuncCrosstab4\` at the end of the edge. + \\"\\"\\"The \`TablefuncCrosstab4\` at the end of the edge.\\"\\"\\" node: TablefuncCrosstab4! } @@ -12764,51 +15254,55 @@ type Testview { testviewid: Int } -# A condition to be used against \`Testview\` object types. All fields are tested -# for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`Testview\` object types. All fields are tested +for equality and combined with a logical ‘and.’ +\\"\\"\\" input TestviewCondition { - # Checks for equality with the object’s \`col1\` field. + \\"\\"\\"Checks for equality with the object’s \`col1\` field.\\"\\"\\" col1: Int - # Checks for equality with the object’s \`col2\` field. + \\"\\"\\"Checks for equality with the object’s \`col2\` field.\\"\\"\\" col2: Int - # Checks for equality with the object’s \`testviewid\` field. + \\"\\"\\"Checks for equality with the object’s \`testviewid\` field.\\"\\"\\" testviewid: Int } -# An input for mutations affecting \`Testview\` +\\"\\"\\"An input for mutations affecting \`Testview\`\\"\\"\\" input TestviewInput { col1: Int col2: Int testviewid: Int } -# A connection to a list of \`Testview\` values. +\\"\\"\\"A connection to a list of \`Testview\` values.\\"\\"\\" type TestviewsConnection { - # A list of edges which contains the \`Testview\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`Testview\` and cursor to aid in pagination. + \\"\\"\\" edges: [TestviewsEdge!]! - # A list of \`Testview\` objects. + \\"\\"\\"A list of \`Testview\` objects.\\"\\"\\" nodes: [Testview]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`Testview\` you could get from the connection. + \\"\\"\\"The count of *all* \`Testview\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`Testview\` edge in the connection. +\\"\\"\\"A \`Testview\` edge in the connection.\\"\\"\\" type TestviewsEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`Testview\` at the end of the edge. + \\"\\"\\"The \`Testview\` at the end of the edge.\\"\\"\\" node: Testview! } -# Methods to use when ordering \`Testview\`. +\\"\\"\\"Methods to use when ordering \`Testview\`.\\"\\"\\" enum TestviewsOrderBy { COL1_ASC COL1_DESC @@ -12819,432 +15313,572 @@ enum TestviewsOrderBy { TESTVIEWID_DESC } -# All input for the \`updateDefaultValueById\` mutation. +\\"\\"\\"All input for the \`updateDefaultValueById\` mutation.\\"\\"\\" input UpdateDefaultValueByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # An object where the defined keys will be set on the \`DefaultValue\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`DefaultValue\` being updated. + \\"\\"\\" defaultValuePatch: DefaultValuePatch! id: Int! } -# All input for the \`updateDefaultValue\` mutation. +\\"\\"\\"All input for the \`updateDefaultValue\` mutation.\\"\\"\\" input UpdateDefaultValueInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # An object where the defined keys will be set on the \`DefaultValue\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`DefaultValue\` being updated. + \\"\\"\\" defaultValuePatch: DefaultValuePatch! - # The globally unique \`ID\` which will identify a single \`DefaultValue\` to be updated. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`DefaultValue\` to be updated. + \\"\\"\\" nodeId: ID! } -# The output of our update \`DefaultValue\` mutation. +\\"\\"\\"The output of our update \`DefaultValue\` mutation.\\"\\"\\" type UpdateDefaultValuePayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`DefaultValue\` that was updated by this mutation. + \\"\\"\\"The \`DefaultValue\` that was updated by this mutation.\\"\\"\\" defaultValue: DefaultValue - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" defaultValueEdge( - # The method to use when ordering \`DefaultValue\`. + \\"\\"\\"The method to use when ordering \`DefaultValue\`.\\"\\"\\" orderBy: [DefaultValuesOrderBy!] = [PRIMARY_KEY_ASC] ): DefaultValuesEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`updateInputById\` mutation. +\\"\\"\\"All input for the \`updateInputById\` mutation.\\"\\"\\" input UpdateInputByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! - # An object where the defined keys will be set on the \`Input\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`Input\` being updated. + \\"\\"\\" inputPatch: InputPatch! } -# All input for the \`updateInput\` mutation. +\\"\\"\\"All input for the \`updateInput\` mutation.\\"\\"\\" input UpdateInputInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # An object where the defined keys will be set on the \`Input\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`Input\` being updated. + \\"\\"\\" inputPatch: InputPatch! - # The globally unique \`ID\` which will identify a single \`Input\` to be updated. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`Input\` to be updated. + \\"\\"\\" nodeId: ID! } -# The output of our update \`Input\` mutation. +\\"\\"\\"The output of our update \`Input\` mutation.\\"\\"\\" type UpdateInputPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`Input\` that was updated by this mutation. + \\"\\"\\"The \`Input\` that was updated by this mutation.\\"\\"\\" input: Input - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" inputEdge( - # The method to use when ordering \`Input\`. + \\"\\"\\"The method to use when ordering \`Input\`.\\"\\"\\" orderBy: [InputsOrderBy!] = [PRIMARY_KEY_ASC] ): InputsEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`updatePatchById\` mutation. +\\"\\"\\"All input for the \`updatePatchById\` mutation.\\"\\"\\" input UpdatePatchByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! - # An object where the defined keys will be set on the \`Patch\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`Patch\` being updated. + \\"\\"\\" patchPatch: PatchPatch! } -# All input for the \`updatePatch\` mutation. +\\"\\"\\"All input for the \`updatePatch\` mutation.\\"\\"\\" input UpdatePatchInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`Patch\` to be updated. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`Patch\` to be updated. + \\"\\"\\" nodeId: ID! - # An object where the defined keys will be set on the \`Patch\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`Patch\` being updated. + \\"\\"\\" patchPatch: PatchPatch! } -# The output of our update \`Patch\` mutation. +\\"\\"\\"The output of our update \`Patch\` mutation.\\"\\"\\" type UpdatePatchPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`Patch\` that was updated by this mutation. + \\"\\"\\"The \`Patch\` that was updated by this mutation.\\"\\"\\" patch: Patch - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" patchEdge( - # The method to use when ordering \`Patch\`. + \\"\\"\\"The method to use when ordering \`Patch\`.\\"\\"\\" orderBy: [PatchesOrderBy!] = [PRIMARY_KEY_ASC] ): PatchesEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`updatePostById\` mutation. +\\"\\"\\"All input for the \`updatePostById\` mutation.\\"\\"\\" input UpdatePostByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! - # An object where the defined keys will be set on the \`Post\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`Post\` being updated. + \\"\\"\\" postPatch: PostPatch! } -# All input for the \`updatePost\` mutation. +\\"\\"\\"All input for the \`updatePost\` mutation.\\"\\"\\" input UpdatePostInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`Post\` to be updated. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`Post\` to be updated. + \\"\\"\\" nodeId: ID! - # An object where the defined keys will be set on the \`Post\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`Post\` being updated. + \\"\\"\\" postPatch: PostPatch! } -# The output of our update \`Post\` mutation. +\\"\\"\\"The output of our update \`Post\` mutation.\\"\\"\\" type UpdatePostPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # The \`Post\` that was updated by this mutation. + \\"\\"\\"The \`Post\` that was updated by this mutation.\\"\\"\\" post: Post - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" postEdge( - # The method to use when ordering \`Post\`. + \\"\\"\\"The method to use when ordering \`Post\`.\\"\\"\\" orderBy: [PostsOrderBy!] = [PRIMARY_KEY_ASC] ): PostsEdge - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query } -# All input for the \`updateReservedById\` mutation. +\\"\\"\\"All input for the \`updateReservedById\` mutation.\\"\\"\\" input UpdateReservedByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! - # An object where the defined keys will be set on the \`Reserved\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`Reserved\` being updated. + \\"\\"\\" reservedPatch: ReservedPatch! } -# All input for the \`updateReserved\` mutation. +\\"\\"\\"All input for the \`updateReserved\` mutation.\\"\\"\\" input UpdateReservedInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`Reserved\` to be updated. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`Reserved\` to be updated. + \\"\\"\\" nodeId: ID! - # An object where the defined keys will be set on the \`Reserved\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`Reserved\` being updated. + \\"\\"\\" reservedPatch: ReservedPatch! } -# All input for the \`updateReservedInputRecordById\` mutation. +\\"\\"\\"All input for the \`updateReservedInputRecordById\` mutation.\\"\\"\\" input UpdateReservedInputRecordByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! - # An object where the defined keys will be set on the \`ReservedInputRecord\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`ReservedInputRecord\` being updated. + \\"\\"\\" reservedInputRecordPatch: ReservedInputRecordPatch! } -# All input for the \`updateReservedInputRecord\` mutation. +\\"\\"\\"All input for the \`updateReservedInputRecord\` mutation.\\"\\"\\" input UpdateReservedInputRecordInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`ReservedInputRecord\` to be updated. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`ReservedInputRecord\` to be updated. + \\"\\"\\" nodeId: ID! - # An object where the defined keys will be set on the \`ReservedInputRecord\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`ReservedInputRecord\` being updated. + \\"\\"\\" reservedInputRecordPatch: ReservedInputRecordPatch! } -# The output of our update \`ReservedInputRecord\` mutation. +\\"\\"\\"The output of our update \`ReservedInputRecord\` mutation.\\"\\"\\" type UpdateReservedInputRecordPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`ReservedInputRecord\` that was updated by this mutation. + \\"\\"\\"The \`ReservedInputRecord\` that was updated by this mutation.\\"\\"\\" reservedInputRecord: ReservedInputRecord - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" reservedInputRecordEdge( - # The method to use when ordering \`ReservedInputRecord\`. + \\"\\"\\"The method to use when ordering \`ReservedInputRecord\`.\\"\\"\\" orderBy: [ReservedInputRecordsOrderBy!] = [PRIMARY_KEY_ASC] ): ReservedInputRecordsEdge } -# All input for the \`updateReservedPatchRecordById\` mutation. +\\"\\"\\"All input for the \`updateReservedPatchRecordById\` mutation.\\"\\"\\" input UpdateReservedPatchRecordByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! - # An object where the defined keys will be set on the \`ReservedPatchRecord\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`ReservedPatchRecord\` being updated. + \\"\\"\\" reservedPatchRecordPatch: ReservedPatchRecordPatch! } -# All input for the \`updateReservedPatchRecord\` mutation. +\\"\\"\\"All input for the \`updateReservedPatchRecord\` mutation.\\"\\"\\" input UpdateReservedPatchRecordInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`ReservedPatchRecord\` to be updated. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`ReservedPatchRecord\` to be updated. + \\"\\"\\" nodeId: ID! - # An object where the defined keys will be set on the \`ReservedPatchRecord\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`ReservedPatchRecord\` being updated. + \\"\\"\\" reservedPatchRecordPatch: ReservedPatchRecordPatch! } -# The output of our update \`ReservedPatchRecord\` mutation. +\\"\\"\\"The output of our update \`ReservedPatchRecord\` mutation.\\"\\"\\" type UpdateReservedPatchRecordPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`ReservedPatchRecord\` that was updated by this mutation. + \\"\\"\\"The \`ReservedPatchRecord\` that was updated by this mutation.\\"\\"\\" reservedPatchRecord: ReservedPatchRecord - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" reservedPatchRecordEdge( - # The method to use when ordering \`ReservedPatchRecord\`. + \\"\\"\\"The method to use when ordering \`ReservedPatchRecord\`.\\"\\"\\" orderBy: [ReservedPatchRecordsOrderBy!] = [PRIMARY_KEY_ASC] ): ReservedPatchRecordsEdge } -# The output of our update \`Reserved\` mutation. +\\"\\"\\"The output of our update \`Reserved\` mutation.\\"\\"\\" type UpdateReservedPayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`Reserved\` that was updated by this mutation. + \\"\\"\\"The \`Reserved\` that was updated by this mutation.\\"\\"\\" reserved: Reserved - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" reservedEdge( - # The method to use when ordering \`Reserved\`. + \\"\\"\\"The method to use when ordering \`Reserved\`.\\"\\"\\" orderBy: [ReservedsOrderBy!] = [PRIMARY_KEY_ASC] ): ReservedsEdge } -# All input for the \`updateSimilarTable1ById\` mutation. +\\"\\"\\"All input for the \`updateSimilarTable1ById\` mutation.\\"\\"\\" input UpdateSimilarTable1ByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! - # An object where the defined keys will be set on the \`SimilarTable1\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`SimilarTable1\` being updated. + \\"\\"\\" similarTable1Patch: SimilarTable1Patch! } -# All input for the \`updateSimilarTable1\` mutation. +\\"\\"\\"All input for the \`updateSimilarTable1\` mutation.\\"\\"\\" input UpdateSimilarTable1Input { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`SimilarTable1\` to be updated. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`SimilarTable1\` to be updated. + \\"\\"\\" nodeId: ID! - # An object where the defined keys will be set on the \`SimilarTable1\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`SimilarTable1\` being updated. + \\"\\"\\" similarTable1Patch: SimilarTable1Patch! } -# The output of our update \`SimilarTable1\` mutation. +\\"\\"\\"The output of our update \`SimilarTable1\` mutation.\\"\\"\\" type UpdateSimilarTable1Payload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`SimilarTable1\` that was updated by this mutation. + \\"\\"\\"The \`SimilarTable1\` that was updated by this mutation.\\"\\"\\" similarTable1: SimilarTable1 - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" similarTable1Edge( - # The method to use when ordering \`SimilarTable1\`. + \\"\\"\\"The method to use when ordering \`SimilarTable1\`.\\"\\"\\" orderBy: [SimilarTable1SOrderBy!] = [PRIMARY_KEY_ASC] ): SimilarTable1SEdge } -# All input for the \`updateSimilarTable2ById\` mutation. +\\"\\"\\"All input for the \`updateSimilarTable2ById\` mutation.\\"\\"\\" input UpdateSimilarTable2ByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! - # An object where the defined keys will be set on the \`SimilarTable2\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`SimilarTable2\` being updated. + \\"\\"\\" similarTable2Patch: SimilarTable2Patch! } -# All input for the \`updateSimilarTable2\` mutation. +\\"\\"\\"All input for the \`updateSimilarTable2\` mutation.\\"\\"\\" input UpdateSimilarTable2Input { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`SimilarTable2\` to be updated. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`SimilarTable2\` to be updated. + \\"\\"\\" nodeId: ID! - # An object where the defined keys will be set on the \`SimilarTable2\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`SimilarTable2\` being updated. + \\"\\"\\" similarTable2Patch: SimilarTable2Patch! } -# The output of our update \`SimilarTable2\` mutation. +\\"\\"\\"The output of our update \`SimilarTable2\` mutation.\\"\\"\\" type UpdateSimilarTable2Payload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`SimilarTable2\` that was updated by this mutation. + \\"\\"\\"The \`SimilarTable2\` that was updated by this mutation.\\"\\"\\" similarTable2: SimilarTable2 - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" similarTable2Edge( - # The method to use when ordering \`SimilarTable2\`. + \\"\\"\\"The method to use when ordering \`SimilarTable2\`.\\"\\"\\" orderBy: [SimilarTable2SOrderBy!] = [PRIMARY_KEY_ASC] ): SimilarTable2SEdge } -# All input for the \`updateViewTableById\` mutation. +\\"\\"\\"All input for the \`updateViewTableById\` mutation.\\"\\"\\" input UpdateViewTableByIdInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String id: Int! - # An object where the defined keys will be set on the \`ViewTable\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`ViewTable\` being updated. + \\"\\"\\" viewTablePatch: ViewTablePatch! } -# All input for the \`updateViewTable\` mutation. +\\"\\"\\"All input for the \`updateViewTable\` mutation.\\"\\"\\" input UpdateViewTableInput { - # An arbitrary string value with no semantic meaning. Will be included in the - # payload verbatim. May be used to track mutations by the client. + \\"\\"\\" + An arbitrary string value with no semantic meaning. Will be included in the + payload verbatim. May be used to track mutations by the client. + \\"\\"\\" clientMutationId: String - # The globally unique \`ID\` which will identify a single \`ViewTable\` to be updated. + \\"\\"\\" + The globally unique \`ID\` which will identify a single \`ViewTable\` to be updated. + \\"\\"\\" nodeId: ID! - # An object where the defined keys will be set on the \`ViewTable\` being updated. + \\"\\"\\" + An object where the defined keys will be set on the \`ViewTable\` being updated. + \\"\\"\\" viewTablePatch: ViewTablePatch! } -# The output of our update \`ViewTable\` mutation. +\\"\\"\\"The output of our update \`ViewTable\` mutation.\\"\\"\\" type UpdateViewTablePayload { - # The exact same \`clientMutationId\` that was provided in the mutation input, - # unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" + The exact same \`clientMutationId\` that was provided in the mutation input, + unchanged and unused. May be used by a client to track mutations. + \\"\\"\\" clientMutationId: String - # Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" + Our root query field type. Allows us to run any query from our mutation payload. + \\"\\"\\" query: Query - # The \`ViewTable\` that was updated by this mutation. + \\"\\"\\"The \`ViewTable\` that was updated by this mutation.\\"\\"\\" viewTable: ViewTable - # An edge for the type. May be used by Relay 1. + \\"\\"\\"An edge for the type. May be used by Relay 1.\\"\\"\\" viewTableEdge( - # The method to use when ordering \`ViewTable\`. + \\"\\"\\"The method to use when ordering \`ViewTable\`.\\"\\"\\" orderBy: [ViewTablesOrderBy!] = [PRIMARY_KEY_ASC] ): ViewTablesEdge } @@ -13254,62 +15888,70 @@ type ViewTable implements Node { col2: Int id: Int! - # A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" + A globally unique identifier. Can be used in various places throughout the system to identify this single value. + \\"\\"\\" nodeId: ID! } -# A condition to be used against \`ViewTable\` object types. All fields are tested -# for equality and combined with a logical ‘and.’ +\\"\\"\\" +A condition to be used against \`ViewTable\` object types. All fields are tested +for equality and combined with a logical ‘and.’ +\\"\\"\\" input ViewTableCondition { - # Checks for equality with the object’s \`col1\` field. + \\"\\"\\"Checks for equality with the object’s \`col1\` field.\\"\\"\\" col1: Int - # Checks for equality with the object’s \`col2\` field. + \\"\\"\\"Checks for equality with the object’s \`col2\` field.\\"\\"\\" col2: Int - # Checks for equality with the object’s \`id\` field. + \\"\\"\\"Checks for equality with the object’s \`id\` field.\\"\\"\\" id: Int } -# An input for mutations affecting \`ViewTable\` +\\"\\"\\"An input for mutations affecting \`ViewTable\`\\"\\"\\" input ViewTableInput { col1: Int col2: Int id: Int } -# Represents an update to a \`ViewTable\`. Fields that are set will be updated. +\\"\\"\\" +Represents an update to a \`ViewTable\`. Fields that are set will be updated. +\\"\\"\\" input ViewTablePatch { col1: Int col2: Int id: Int } -# A connection to a list of \`ViewTable\` values. +\\"\\"\\"A connection to a list of \`ViewTable\` values.\\"\\"\\" type ViewTablesConnection { - # A list of edges which contains the \`ViewTable\` and cursor to aid in pagination. + \\"\\"\\" + A list of edges which contains the \`ViewTable\` and cursor to aid in pagination. + \\"\\"\\" edges: [ViewTablesEdge!]! - # A list of \`ViewTable\` objects. + \\"\\"\\"A list of \`ViewTable\` objects.\\"\\"\\" nodes: [ViewTable]! - # Information to aid in pagination. + \\"\\"\\"Information to aid in pagination.\\"\\"\\" pageInfo: PageInfo! - # The count of *all* \`ViewTable\` you could get from the connection. + \\"\\"\\"The count of *all* \`ViewTable\` you could get from the connection.\\"\\"\\" totalCount: Int } -# A \`ViewTable\` edge in the connection. +\\"\\"\\"A \`ViewTable\` edge in the connection.\\"\\"\\" type ViewTablesEdge { - # A cursor for use in pagination. + \\"\\"\\"A cursor for use in pagination.\\"\\"\\" cursor: Cursor - # The \`ViewTable\` at the end of the edge. + \\"\\"\\"The \`ViewTable\` at the end of the edge.\\"\\"\\" node: ViewTable! } -# Methods to use when ordering \`ViewTable\`. +\\"\\"\\"Methods to use when ordering \`ViewTable\`.\\"\\"\\" enum ViewTablesOrderBy { COL1_ASC COL1_DESC diff --git a/packages/postgraphile-core/index.js b/packages/postgraphile-core/index.js index 05e54a015..cc27daf63 100644 --- a/packages/postgraphile-core/index.js +++ b/packages/postgraphile-core/index.js @@ -1,13 +1,5 @@ -// @flow - // This script detects if you're running on Node v8 or above; if so it runs the // code directly, otherwise it falls back to the babel-compiled version -/*:: -// Trick flow into exporting the types -export type * from './node8plus'; -*/ - const isNode8Plus = process.versions.node.match(/^([89]|[1-9][0-9]+)\./); -// $FlowFixMe: ignore module.exports = isNode8Plus ? require("./node8plus") : require("./node7minus"); diff --git a/yarn.lock b/yarn.lock index 1ea215e70..bc36a1252 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2042,9 +2042,9 @@ flat-cache@^1.2.1: graceful-fs "^4.1.2" write "^0.2.1" -flow-bin@^0.52.0: - version "0.52.0" - resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.52.0.tgz#b6d9abe8bcd1ee5c62df386451a4e2553cadc3a3" +flow-bin@0.66.0: + version "0.66.0" + resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.66.0.tgz#a96dde7015dc3343fd552a7b4963c02be705ca26" flow-copy-source@^1.2.0: version "1.3.0" @@ -2311,11 +2311,11 @@ graphql-type-json@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/graphql-type-json/-/graphql-type-json-0.1.4.tgz#89f13f5d32ce08c9a76c79fdf9c1968384d81a4e" -graphql@^0.10.5: - version "0.10.5" - resolved "https://registry.yarnpkg.com/graphql/-/graphql-0.10.5.tgz#c9be17ca2bdfdbd134077ffd9bbaa48b8becd298" +"graphql@>=0.9 <0.14": + version "0.13.1" + resolved "https://registry.yarnpkg.com/graphql/-/graphql-0.13.1.tgz#9b3db3d8e40d1827e4172404bfdd2e4e17a58b55" dependencies: - iterall "^1.1.0" + iterall "^1.2.0" growly@^1.3.0: version "1.3.0" @@ -2814,9 +2814,9 @@ istanbul-reports@^1.1.1: dependencies: handlebars "^4.0.3" -iterall@^1.1.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.1.1.tgz#f7f0af11e9a04ec6426260f5019d9fcca4d50214" +iterall@^1.2.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/iterall/-/iterall-1.2.1.tgz#59a347ae8001d2d4bc546b8487ca755d61849965" jest-changed-files@^20.0.3: version "20.0.3"