diff --git a/Readme.md b/Readme.md index d23cff0a..0a3b7a55 100644 --- a/Readme.md +++ b/Readme.md @@ -21,7 +21,7 @@ npm i @prisma/client > Be aware that `typegraphql-prisma` is designed to work with a selected versions of `prisma`. > -> Please make sure you use `@prisma/cli` and `@prisma/client` of version matching `~2.11.0`. +> Please make sure you use `@prisma/cli` and `@prisma/client` of version matching `~2.12.1`. > Otherwise, the runtime check will report an error when you run the generator. You also need to install the GraphQL JSON scalar library (to support the Prisma `Json` scalar): @@ -140,7 +140,7 @@ CRUD resolvers supports this following methods with args that are 1:1 matching w - create - update - delete -- findOne +- findUnique - findFirst - findMany - updateMany @@ -255,7 +255,7 @@ You can also add custom queries and mutations to the schema as always, using the export class CustomUserResolver { @Query(returns => User, { nullable: true }) async bestUser(@Ctx() { prisma }: Context): Promise { - return await prisma.user.findOne({ + return await prisma.user.findUnique({ where: { email: "bob@prisma.io" }, }); } @@ -329,7 +329,7 @@ export class CustomUserResolver { @Ctx() { prisma }: Context, ): Promise { const [favoritePost] = await prisma.user - .findOne({ where: { id: user.id } }) + .findUnique({ where: { id: user.id } }) .posts({ first: 1 }); return favoritePost; diff --git a/experiments/package-lock.json b/experiments/package-lock.json index a15d2dbe..1433c658 100644 --- a/experiments/package-lock.json +++ b/experiments/package-lock.json @@ -5,7 +5,7 @@ "packages": { "": { "dependencies": { - "@prisma/client": "2.12.0-dev.38", + "@prisma/client": "2.12.1", "@types/graphql-fields": "^1.3.3", "apollo-server": "^2.19.0", "graphql": "^15.4.0", @@ -15,11 +15,11 @@ "type-graphql": "1.1.1" }, "devDependencies": { - "@prisma/cli": "2.12.0-dev.38", + "@prisma/cli": "2.12.1", "@types/graphql-type-json": "^0.3.2", - "@types/node": "^14.14.8", + "@types/node": "^14.14.10", "ts-node": "^9.0.0", - "typescript": "~4.0.5" + "typescript": "~4.1.2" } }, "node_modules/@apollo/protobufjs": { @@ -79,15 +79,14 @@ "devOptional": true }, "node_modules/@prisma/cli": { - "version": "2.12.0-dev.38", - "resolved": "https://registry.npmjs.org/@prisma/cli/-/cli-2.12.0-dev.38.tgz", - "integrity": "sha512-te2rK3xZGObMyqzpfVLOcRTHv3UlFuoFWgLHIGIXc+umaXIfW7IK5VUnQPVQJt9U1TjliZK12veAUwfNkMujMw==", + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/@prisma/cli/-/cli-2.12.1.tgz", + "integrity": "sha512-obkwK95dEeifCdVehG0rS0BlPQGLsOtc9U1MgbrjNX3MnhXQdwROnvymfPB3DBlNyoLoHGklPgi9UlwBokNXcQ==", "devOptional": true, "hasInstallScript": true, - "license": "Apache-2.0", "dependencies": { "@prisma/bar": "^0.0.1", - "@prisma/engines": "2.12.0-10.a4ef806349a7b17c41f45735ce4a36322e01c250" + "@prisma/engines": "2.12.0-18.cf0680a1bfe8d5e743dc659cc7f08009f9587d58" }, "bin": { "prisma": "build/index.js", @@ -98,12 +97,12 @@ } }, "node_modules/@prisma/client": { - "version": "2.12.0-dev.38", - "resolved": "https://registry.npmjs.org/@prisma/client/-/client-2.12.0-dev.38.tgz", - "integrity": "sha512-lXASoc1ffP0wtiAxVjltdNn3CiQ535ZrUOYTqbmbLHX8gKVlPv07a+lOtx+vHWrHOKd/12UFxE/5J9Ygo/SZtg==", + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/@prisma/client/-/client-2.12.1.tgz", + "integrity": "sha512-HP4/E9sRdxw/FB7XP4EeRa5ri8Lp1U/L7G4VAA95aM8C+8ARioQHMNDpEjC83NrOrOr4EcaZV5pXDDQL1H+F0g==", "hasInstallScript": true, "dependencies": { - "@prisma/engines-version": "2.12.0-10.a4ef806349a7b17c41f45735ce4a36322e01c250" + "@prisma/engines-version": "2.12.0-18.cf0680a1bfe8d5e743dc659cc7f08009f9587d58" }, "engines": { "node": ">=10.4" @@ -118,16 +117,16 @@ } }, "node_modules/@prisma/engines": { - "version": "2.12.0-10.a4ef806349a7b17c41f45735ce4a36322e01c250", - "resolved": "https://registry.npmjs.org/@prisma/engines/-/engines-2.12.0-10.a4ef806349a7b17c41f45735ce4a36322e01c250.tgz", - "integrity": "sha512-K7T2YjR5BHGrzx0snFU4PYCOz2MsZG39NI5sQukBNomrpUU6E9//Y9cAaOKFs4U96tmdy7D/fUmsFh20tVJoHQ==", + "version": "2.12.0-18.cf0680a1bfe8d5e743dc659cc7f08009f9587d58", + "resolved": "https://registry.npmjs.org/@prisma/engines/-/engines-2.12.0-18.cf0680a1bfe8d5e743dc659cc7f08009f9587d58.tgz", + "integrity": "sha512-F6RmUZ5JpPWxmGvVDji8c4gepHIGkvYbtuFi0IoDDJVaCVo8yS656stciKFyswI6/BLWXa0X47/MIMbz6nzw7g==", "devOptional": true, "hasInstallScript": true }, "node_modules/@prisma/engines-version": { - "version": "2.12.0-10.a4ef806349a7b17c41f45735ce4a36322e01c250", - "resolved": "https://registry.npmjs.org/@prisma/engines-version/-/engines-version-2.12.0-10.a4ef806349a7b17c41f45735ce4a36322e01c250.tgz", - "integrity": "sha512-8t42GcPEQpDJzz+KyaB/VrH3VkiBngn9JmN5LXCljlPyOddV7mU10pEL8JcIq08l97wgxMRwLHTem7gMzWb5hA==" + "version": "2.12.0-18.cf0680a1bfe8d5e743dc659cc7f08009f9587d58", + "resolved": "https://registry.npmjs.org/@prisma/engines-version/-/engines-version-2.12.0-18.cf0680a1bfe8d5e743dc659cc7f08009f9587d58.tgz", + "integrity": "sha512-IHb/Jag1Wmoq5tLZhOHP5zqLHEXqQEfrHb6l0drIBSvh2AF7yWQ3yyuD0ZEb1Nq37SvbBgop5wrWMOU8YWFTGQ==" }, "node_modules/@protobufjs/aspromise": { "version": "1.1.2", @@ -364,9 +363,9 @@ "integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==" }, "node_modules/@types/node": { - "version": "14.14.8", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.8.tgz", - "integrity": "sha512-z/5Yd59dCKI5kbxauAJgw6dLPzW+TNOItNE00PkpzNwUIEwdj/Lsqwq94H5DdYBX7C13aRA0CY32BK76+neEUA==" + "version": "14.14.10", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.10.tgz", + "integrity": "sha512-J32dgx2hw8vXrSbu4ZlVhn1Nm3GbeCFNw2FWL8S5QKucHGY0cyNwjdQdO+KMBZ4wpmC7KhLCiNsdk1RFRIYUQQ==" }, "node_modules/@types/node-fetch": { "version": "2.5.7", @@ -2058,9 +2057,9 @@ } }, "node_modules/typescript": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.0.5.tgz", - "integrity": "sha512-ywmr/VrTVCmNTJ6iV2LwIrfG1P+lv6luD8sUJs+2eI9NLGigaN+nUQc13iHqisq7bra9lnmUSYqbJvegraBOPQ==", + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.1.2.tgz", + "integrity": "sha512-thGloWsGH3SOxv1SoY7QojKi0tc+8FnOmiarEGMbd/lar7QOEd3hvlx3Fp5y6FlDUGl9L+pd4n2e+oToGMmhRQ==", "dev": true, "bin": { "tsc": "bin/tsc", @@ -2238,33 +2237,33 @@ "devOptional": true }, "@prisma/cli": { - "version": "2.12.0-dev.38", - "resolved": "https://registry.npmjs.org/@prisma/cli/-/cli-2.12.0-dev.38.tgz", - "integrity": "sha512-te2rK3xZGObMyqzpfVLOcRTHv3UlFuoFWgLHIGIXc+umaXIfW7IK5VUnQPVQJt9U1TjliZK12veAUwfNkMujMw==", + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/@prisma/cli/-/cli-2.12.1.tgz", + "integrity": "sha512-obkwK95dEeifCdVehG0rS0BlPQGLsOtc9U1MgbrjNX3MnhXQdwROnvymfPB3DBlNyoLoHGklPgi9UlwBokNXcQ==", "devOptional": true, "requires": { "@prisma/bar": "^0.0.1", - "@prisma/engines": "2.12.0-10.a4ef806349a7b17c41f45735ce4a36322e01c250" + "@prisma/engines": "2.12.0-18.cf0680a1bfe8d5e743dc659cc7f08009f9587d58" } }, "@prisma/client": { - "version": "2.12.0-dev.38", - "resolved": "https://registry.npmjs.org/@prisma/client/-/client-2.12.0-dev.38.tgz", - "integrity": "sha512-lXASoc1ffP0wtiAxVjltdNn3CiQ535ZrUOYTqbmbLHX8gKVlPv07a+lOtx+vHWrHOKd/12UFxE/5J9Ygo/SZtg==", + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/@prisma/client/-/client-2.12.1.tgz", + "integrity": "sha512-HP4/E9sRdxw/FB7XP4EeRa5ri8Lp1U/L7G4VAA95aM8C+8ARioQHMNDpEjC83NrOrOr4EcaZV5pXDDQL1H+F0g==", "requires": { - "@prisma/engines-version": "2.12.0-10.a4ef806349a7b17c41f45735ce4a36322e01c250" + "@prisma/engines-version": "2.12.0-18.cf0680a1bfe8d5e743dc659cc7f08009f9587d58" } }, "@prisma/engines": { - "version": "2.12.0-10.a4ef806349a7b17c41f45735ce4a36322e01c250", - "resolved": "https://registry.npmjs.org/@prisma/engines/-/engines-2.12.0-10.a4ef806349a7b17c41f45735ce4a36322e01c250.tgz", - "integrity": "sha512-K7T2YjR5BHGrzx0snFU4PYCOz2MsZG39NI5sQukBNomrpUU6E9//Y9cAaOKFs4U96tmdy7D/fUmsFh20tVJoHQ==", + "version": "2.12.0-18.cf0680a1bfe8d5e743dc659cc7f08009f9587d58", + "resolved": "https://registry.npmjs.org/@prisma/engines/-/engines-2.12.0-18.cf0680a1bfe8d5e743dc659cc7f08009f9587d58.tgz", + "integrity": "sha512-F6RmUZ5JpPWxmGvVDji8c4gepHIGkvYbtuFi0IoDDJVaCVo8yS656stciKFyswI6/BLWXa0X47/MIMbz6nzw7g==", "devOptional": true }, "@prisma/engines-version": { - "version": "2.12.0-10.a4ef806349a7b17c41f45735ce4a36322e01c250", - "resolved": "https://registry.npmjs.org/@prisma/engines-version/-/engines-version-2.12.0-10.a4ef806349a7b17c41f45735ce4a36322e01c250.tgz", - "integrity": "sha512-8t42GcPEQpDJzz+KyaB/VrH3VkiBngn9JmN5LXCljlPyOddV7mU10pEL8JcIq08l97wgxMRwLHTem7gMzWb5hA==" + "version": "2.12.0-18.cf0680a1bfe8d5e743dc659cc7f08009f9587d58", + "resolved": "https://registry.npmjs.org/@prisma/engines-version/-/engines-version-2.12.0-18.cf0680a1bfe8d5e743dc659cc7f08009f9587d58.tgz", + "integrity": "sha512-IHb/Jag1Wmoq5tLZhOHP5zqLHEXqQEfrHb6l0drIBSvh2AF7yWQ3yyuD0ZEb1Nq37SvbBgop5wrWMOU8YWFTGQ==" }, "@protobufjs/aspromise": { "version": "1.1.2", @@ -2500,9 +2499,9 @@ "integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==" }, "@types/node": { - "version": "14.14.8", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.8.tgz", - "integrity": "sha512-z/5Yd59dCKI5kbxauAJgw6dLPzW+TNOItNE00PkpzNwUIEwdj/Lsqwq94H5DdYBX7C13aRA0CY32BK76+neEUA==" + "version": "14.14.10", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.10.tgz", + "integrity": "sha512-J32dgx2hw8vXrSbu4ZlVhn1Nm3GbeCFNw2FWL8S5QKucHGY0cyNwjdQdO+KMBZ4wpmC7KhLCiNsdk1RFRIYUQQ==" }, "@types/node-fetch": { "version": "2.5.7", @@ -3811,9 +3810,9 @@ } }, "typescript": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.0.5.tgz", - "integrity": "sha512-ywmr/VrTVCmNTJ6iV2LwIrfG1P+lv6luD8sUJs+2eI9NLGigaN+nUQc13iHqisq7bra9lnmUSYqbJvegraBOPQ==", + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.1.2.tgz", + "integrity": "sha512-thGloWsGH3SOxv1SoY7QojKi0tc+8FnOmiarEGMbd/lar7QOEd3hvlx3Fp5y6FlDUGl9L+pd4n2e+oToGMmhRQ==", "dev": true }, "unpipe": { diff --git a/experiments/package.json b/experiments/package.json index 755f5c16..c0046d77 100644 --- a/experiments/package.json +++ b/experiments/package.json @@ -6,7 +6,7 @@ "seed": "ts-node --transpile-only ./seed.ts" }, "dependencies": { - "@prisma/client": "2.12.0-dev.38", + "@prisma/client": "2.12.1", "@types/graphql-fields": "^1.3.3", "apollo-server": "^2.19.0", "graphql": "^15.4.0", @@ -16,10 +16,10 @@ "type-graphql": "1.1.1" }, "devDependencies": { - "@prisma/cli": "2.12.0-dev.38", + "@prisma/cli": "2.12.1", "@types/graphql-type-json": "^0.3.2", - "@types/node": "^14.14.8", + "@types/node": "^14.14.10", "ts-node": "^9.0.0", - "typescript": "~4.0.5" + "typescript": "~4.1.2" } } diff --git a/experiments/prisma/generated/client/index.d.ts b/experiments/prisma/generated/client/index.d.ts index c0d5f8df..8b3c2dcb 100644 --- a/experiments/prisma/generated/client/index.d.ts +++ b/experiments/prisma/generated/client/index.d.ts @@ -10,11 +10,11 @@ export import DMMF = runtime.DMMF /** * Prisma Errors */ -export type PrismaClientKnownRequestError = runtime.PrismaClientKnownRequestError -export type PrismaClientUnknownRequestError = runtime.PrismaClientUnknownRequestError -export type PrismaClientRustPanicError = runtime.PrismaClientRustPanicError -export type PrismaClientInitializationError = runtime.PrismaClientInitializationError -export type PrismaClientValidationError = runtime.PrismaClientValidationError +export import PrismaClientKnownRequestError = runtime.PrismaClientKnownRequestError +export import PrismaClientUnknownRequestError = runtime.PrismaClientUnknownRequestError +export import PrismaClientRustPanicError = runtime.PrismaClientRustPanicError +export import PrismaClientInitializationError = runtime.PrismaClientInitializationError +export import PrismaClientValidationError = runtime.PrismaClientValidationError /** * Re-export of sql-template-tag @@ -31,8 +31,8 @@ export import Sql = runtime.Sql export import Decimal = runtime.Decimal /** - * Prisma Client JS version: 2.12.0-dev.38 - * Query Engine version: a4ef806349a7b17c41f45735ce4a36322e01c250 + * Prisma Client JS version: 2.12.1 + * Query Engine version: cf0680a1bfe8d5e743dc659cc7f08009f9587d58 */ export type PrismaVersion = { client: string @@ -100,7 +100,7 @@ export type PromiseType> = T extends PromiseLike Promise> = PromiseType> -export type Enumerable = T | ReadonlyArray; +export type Enumerable = T | Array; export type RequiredKeys = { [K in keyof T]-?: {} extends Pick ? never : K @@ -450,11 +450,11 @@ export namespace Prisma { /** * Prisma Errors */ - export type PrismaClientKnownRequestError = runtime.PrismaClientKnownRequestError - export type PrismaClientUnknownRequestError = runtime.PrismaClientUnknownRequestError - export type PrismaClientRustPanicError = runtime.PrismaClientRustPanicError - export type PrismaClientInitializationError = runtime.PrismaClientInitializationError - export type PrismaClientValidationError = runtime.PrismaClientValidationError + export import PrismaClientKnownRequestError = runtime.PrismaClientKnownRequestError + export import PrismaClientUnknownRequestError = runtime.PrismaClientUnknownRequestError + export import PrismaClientRustPanicError = runtime.PrismaClientRustPanicError + export import PrismaClientInitializationError = runtime.PrismaClientInitializationError + export import PrismaClientValidationError = runtime.PrismaClientValidationError /** * Re-export of sql-template-tag @@ -471,8 +471,8 @@ export namespace Prisma { export import Decimal = runtime.Decimal /** - * Prisma Client JS version: 2.12.0-dev.38 - * Query Engine version: a4ef806349a7b17c41f45735ce4a36322e01c250 + * Prisma Client JS version: 2.12.1 + * Query Engine version: cf0680a1bfe8d5e743dc659cc7f08009f9587d58 */ export type PrismaVersion = { client: string @@ -540,7 +540,7 @@ export namespace Prisma { export type PromiseReturnType Promise> = PromiseType> - export type Enumerable = T | ReadonlyArray; + export type Enumerable = T | Array; export type RequiredKeys = { [K in keyof T]-?: {} extends Pick ? never : K @@ -742,33 +742,33 @@ export namespace Prisma { } - export type UserAvgAggregateInputType = Readonly<{ + export type UserAvgAggregateInputType = { id?: true age?: true balance?: true amount?: true - }> + } - export type UserSumAggregateInputType = Readonly<{ + export type UserSumAggregateInputType = { id?: true age?: true balance?: true amount?: true - }> + } - export type UserMinAggregateInputType = Readonly<{ + export type UserMinAggregateInputType = { id?: true age?: true balance?: true amount?: true - }> + } - export type UserMaxAggregateInputType = Readonly<{ + export type UserMaxAggregateInputType = { id?: true age?: true balance?: true amount?: true - }> + } export type AggregateUserArgs = { where?: UserWhereInput @@ -1298,25 +1298,25 @@ export namespace Prisma { } - export type PostAvgAggregateInputType = Readonly<{ + export type PostAvgAggregateInputType = { authorId?: true editorId?: true - }> + } - export type PostSumAggregateInputType = Readonly<{ + export type PostSumAggregateInputType = { authorId?: true editorId?: true - }> + } - export type PostMinAggregateInputType = Readonly<{ + export type PostMinAggregateInputType = { authorId?: true editorId?: true - }> + } - export type PostMaxAggregateInputType = Readonly<{ + export type PostMaxAggregateInputType = { authorId?: true editorId?: true - }> + } export type AggregatePostArgs = { where?: postWhereInput @@ -1846,21 +1846,21 @@ export namespace Prisma { } - export type CategoryAvgAggregateInputType = Readonly<{ + export type CategoryAvgAggregateInputType = { number?: true - }> + } - export type CategorySumAggregateInputType = Readonly<{ + export type CategorySumAggregateInputType = { number?: true - }> + } - export type CategoryMinAggregateInputType = Readonly<{ + export type CategoryMinAggregateInputType = { number?: true - }> + } - export type CategoryMaxAggregateInputType = Readonly<{ + export type CategoryMaxAggregateInputType = { number?: true - }> + } export type AggregateCategoryArgs = { where?: CategoryWhereInput @@ -3752,25 +3752,25 @@ export namespace Prisma { } - export type ProblemAvgAggregateInputType = Readonly<{ + export type ProblemAvgAggregateInputType = { id?: true creatorId?: true - }> + } - export type ProblemSumAggregateInputType = Readonly<{ + export type ProblemSumAggregateInputType = { id?: true creatorId?: true - }> + } - export type ProblemMinAggregateInputType = Readonly<{ + export type ProblemMinAggregateInputType = { id?: true creatorId?: true - }> + } - export type ProblemMaxAggregateInputType = Readonly<{ + export type ProblemMaxAggregateInputType = { id?: true creatorId?: true - }> + } export type AggregateProblemArgs = { where?: ProblemWhereInput @@ -4292,21 +4292,21 @@ export namespace Prisma { } - export type CreatorAvgAggregateInputType = Readonly<{ + export type CreatorAvgAggregateInputType = { id?: true - }> + } - export type CreatorSumAggregateInputType = Readonly<{ + export type CreatorSumAggregateInputType = { id?: true - }> + } - export type CreatorMinAggregateInputType = Readonly<{ + export type CreatorMinAggregateInputType = { id?: true - }> + } - export type CreatorMaxAggregateInputType = Readonly<{ + export type CreatorMaxAggregateInputType = { id?: true - }> + } export type AggregateCreatorArgs = { where?: CreatorWhereInput @@ -4907,7 +4907,7 @@ export namespace Prisma { */ - export type UserWhereInput = Readonly<{ + export type UserWhereInput = { AND?: XOR> OR?: XOR> NOT?: XOR> @@ -4920,9 +4920,9 @@ export namespace Prisma { posts?: PostListRelationFilter role?: XOR editorPosts?: PostListRelationFilter - }> + } - export type UserOrderByInput = Readonly<{ + export type UserOrderByInput = { id?: SortOrder email?: SortOrder name?: SortOrder @@ -4930,14 +4930,14 @@ export namespace Prisma { balance?: SortOrder amount?: SortOrder role?: SortOrder - }> + } - export type UserWhereUniqueInput = Readonly<{ + export type UserWhereUniqueInput = { id?: number email?: string - }> + } - export type postWhereInput = Readonly<{ + export type postWhereInput = { AND?: XOR> OR?: XOR> NOT?: XOR> @@ -4954,9 +4954,9 @@ export namespace Prisma { editorId?: IntNullableFilter | number | null kind?: EnumPostKindNullableFilter | PostKind | null metadata?: JsonFilter - }> + } - export type postOrderByInput = Readonly<{ + export type postOrderByInput = { uuid?: SortOrder createdAt?: SortOrder updatedAt?: SortOrder @@ -4968,51 +4968,51 @@ export namespace Prisma { editorId?: SortOrder kind?: SortOrder metadata?: SortOrder - }> + } - export type postWhereUniqueInput = Readonly<{ + export type postWhereUniqueInput = { uuid?: string - }> + } - export type CategoryWhereInput = Readonly<{ + export type CategoryWhereInput = { AND?: XOR> OR?: XOR> NOT?: XOR> name?: XOR slug?: XOR number?: XOR - }> + } - export type CategoryOrderByInput = Readonly<{ + export type CategoryOrderByInput = { name?: SortOrder slug?: SortOrder number?: SortOrder - }> + } - export type CategoryWhereUniqueInput = Readonly<{ + export type CategoryWhereUniqueInput = { slug_number?: SlugNumberCompoundUniqueInput - }> + } - export type PatientWhereInput = Readonly<{ + export type PatientWhereInput = { AND?: XOR> OR?: XOR> NOT?: XOR> firstName?: XOR lastName?: XOR email?: XOR - }> + } - export type PatientOrderByInput = Readonly<{ + export type PatientOrderByInput = { firstName?: SortOrder lastName?: SortOrder email?: SortOrder - }> + } - export type PatientWhereUniqueInput = Readonly<{ + export type PatientWhereUniqueInput = { firstName_lastName?: FirstNameLastNameCompoundUniqueInput - }> + } - export type MovieWhereInput = Readonly<{ + export type MovieWhereInput = { AND?: XOR> OR?: XOR> NOT?: XOR> @@ -5020,37 +5020,37 @@ export namespace Prisma { directorLastName?: XOR director?: XOR title?: XOR - }> + } - export type MovieOrderByInput = Readonly<{ + export type MovieOrderByInput = { directorFirstName?: SortOrder directorLastName?: SortOrder title?: SortOrder - }> + } - export type MovieWhereUniqueInput = Readonly<{ + export type MovieWhereUniqueInput = { directorFirstName_directorLastName_title?: DirectorFirstNameDirectorLastNameTitleCompoundUniqueInput - }> + } - export type DirectorWhereInput = Readonly<{ + export type DirectorWhereInput = { AND?: XOR> OR?: XOR> NOT?: XOR> firstName?: XOR lastName?: XOR movies?: MovieListRelationFilter - }> + } - export type DirectorOrderByInput = Readonly<{ + export type DirectorOrderByInput = { firstName?: SortOrder lastName?: SortOrder - }> + } - export type DirectorWhereUniqueInput = Readonly<{ + export type DirectorWhereUniqueInput = { firstName_lastName?: FirstNameLastNameCompoundUniqueInput - }> + } - export type ProblemWhereInput = Readonly<{ + export type ProblemWhereInput = { AND?: XOR> OR?: XOR> NOT?: XOR> @@ -5059,19 +5059,19 @@ export namespace Prisma { likedBy?: CreatorListRelationFilter creator?: CreatorRelationFilter | CreatorWhereInput | null creatorId?: IntNullableFilter | number | null - }> + } - export type ProblemOrderByInput = Readonly<{ + export type ProblemOrderByInput = { id?: SortOrder problemText?: SortOrder creatorId?: SortOrder - }> + } - export type ProblemWhereUniqueInput = Readonly<{ + export type ProblemWhereUniqueInput = { id?: number - }> + } - export type CreatorWhereInput = Readonly<{ + export type CreatorWhereInput = { AND?: XOR> OR?: XOR> NOT?: XOR> @@ -5079,18 +5079,18 @@ export namespace Prisma { name?: XOR likes?: ProblemListRelationFilter problems?: ProblemListRelationFilter - }> + } - export type CreatorOrderByInput = Readonly<{ + export type CreatorOrderByInput = { id?: SortOrder name?: SortOrder - }> + } - export type CreatorWhereUniqueInput = Readonly<{ + export type CreatorWhereUniqueInput = { id?: number - }> + } - export type UserCreateInput = Readonly<{ + export type UserCreateInput = { email: string name?: XOR age: number @@ -5099,9 +5099,9 @@ export namespace Prisma { role: Role posts?: postCreateManyWithoutAuthorInput editorPosts?: postCreateManyWithoutEditorInput - }> + } - export type UserUpdateInput = Readonly<{ + export type UserUpdateInput = { email?: XOR name?: string | NullableStringFieldUpdateOperationsInput | null age?: XOR @@ -5110,18 +5110,18 @@ export namespace Prisma { role?: XOR posts?: postUpdateManyWithoutAuthorInput editorPosts?: postUpdateManyWithoutEditorInput - }> + } - export type UserUpdateManyMutationInput = Readonly<{ + export type UserUpdateManyMutationInput = { email?: XOR name?: string | NullableStringFieldUpdateOperationsInput | null age?: XOR balance?: XOR amount?: XOR role?: XOR - }> + } - export type postCreateInput = Readonly<{ + export type postCreateInput = { uuid?: string createdAt?: Date | string updatedAt?: Date | string @@ -5133,9 +5133,9 @@ export namespace Prisma { metadata: InputJsonValue author: UserCreateOneWithoutPostsInput editor?: UserCreateOneWithoutEditorPostsInput - }> + } - export type postUpdateInput = Readonly<{ + export type postUpdateInput = { uuid?: XOR createdAt?: XOR updatedAt?: XOR @@ -5147,9 +5147,9 @@ export namespace Prisma { metadata?: InputJsonValue author?: UserUpdateOneRequiredWithoutPostsInput editor?: UserUpdateOneWithoutEditorPostsInput - }> + } - export type postUpdateManyMutationInput = Readonly<{ + export type postUpdateManyMutationInput = { uuid?: XOR createdAt?: XOR updatedAt?: XOR @@ -5159,108 +5159,108 @@ export namespace Prisma { content?: string | NullableStringFieldUpdateOperationsInput | null kind?: PostKind | NullableEnumPostKindFieldUpdateOperationsInput | null metadata?: InputJsonValue - }> + } - export type CategoryCreateInput = Readonly<{ + export type CategoryCreateInput = { name: string slug: string number: number - }> + } - export type CategoryUpdateInput = Readonly<{ + export type CategoryUpdateInput = { name?: XOR slug?: XOR number?: XOR - }> + } - export type CategoryUpdateManyMutationInput = Readonly<{ + export type CategoryUpdateManyMutationInput = { name?: XOR slug?: XOR number?: XOR - }> + } - export type PatientCreateInput = Readonly<{ + export type PatientCreateInput = { firstName: string lastName: string email: string - }> + } - export type PatientUpdateInput = Readonly<{ + export type PatientUpdateInput = { firstName?: XOR lastName?: XOR email?: XOR - }> + } - export type PatientUpdateManyMutationInput = Readonly<{ + export type PatientUpdateManyMutationInput = { firstName?: XOR lastName?: XOR email?: XOR - }> + } - export type MovieCreateInput = Readonly<{ + export type MovieCreateInput = { title: string director: DirectorCreateOneWithoutMoviesInput - }> + } - export type MovieUpdateInput = Readonly<{ + export type MovieUpdateInput = { title?: XOR director?: DirectorUpdateOneRequiredWithoutMoviesInput - }> + } - export type MovieUpdateManyMutationInput = Readonly<{ + export type MovieUpdateManyMutationInput = { title?: XOR - }> + } - export type DirectorCreateInput = Readonly<{ + export type DirectorCreateInput = { firstName: string lastName: string movies?: MovieCreateManyWithoutDirectorInput - }> + } - export type DirectorUpdateInput = Readonly<{ + export type DirectorUpdateInput = { firstName?: XOR lastName?: XOR movies?: MovieUpdateManyWithoutDirectorInput - }> + } - export type DirectorUpdateManyMutationInput = Readonly<{ + export type DirectorUpdateManyMutationInput = { firstName?: XOR lastName?: XOR - }> + } - export type ProblemCreateInput = Readonly<{ + export type ProblemCreateInput = { problemText: string likedBy?: CreatorCreateManyWithoutLikesInput creator?: CreatorCreateOneWithoutProblemsInput - }> + } - export type ProblemUpdateInput = Readonly<{ + export type ProblemUpdateInput = { problemText?: XOR likedBy?: CreatorUpdateManyWithoutLikesInput creator?: CreatorUpdateOneWithoutProblemsInput - }> + } - export type ProblemUpdateManyMutationInput = Readonly<{ + export type ProblemUpdateManyMutationInput = { problemText?: XOR - }> + } - export type CreatorCreateInput = Readonly<{ + export type CreatorCreateInput = { name: string likes?: ProblemCreateManyWithoutLikedByInput problems?: ProblemCreateManyWithoutCreatorInput - }> + } - export type CreatorUpdateInput = Readonly<{ + export type CreatorUpdateInput = { name?: XOR likes?: ProblemUpdateManyWithoutLikedByInput problems?: ProblemUpdateManyWithoutCreatorInput - }> + } - export type CreatorUpdateManyMutationInput = Readonly<{ + export type CreatorUpdateManyMutationInput = { name?: XOR - }> + } - export type IntFilter = Readonly<{ + export type IntFilter = { equals?: number in?: Enumerable notIn?: Enumerable @@ -5269,9 +5269,9 @@ export namespace Prisma { gt?: number gte?: number not?: XOR - }> + } - export type StringFilter = Readonly<{ + export type StringFilter = { equals?: string in?: Enumerable notIn?: Enumerable @@ -5284,9 +5284,9 @@ export namespace Prisma { endsWith?: string mode?: QueryMode not?: XOR - }> + } - export type StringNullableFilter = Readonly<{ + export type StringNullableFilter = { equals?: XOR in?: XOR, null> notIn?: XOR, null> @@ -5299,9 +5299,9 @@ export namespace Prisma { endsWith?: string mode?: QueryMode not?: string | NestedStringNullableFilter | null - }> + } - export type FloatFilter = Readonly<{ + export type FloatFilter = { equals?: number in?: Enumerable notIn?: Enumerable @@ -5310,22 +5310,22 @@ export namespace Prisma { gt?: number gte?: number not?: XOR - }> + } - export type PostListRelationFilter = Readonly<{ + export type PostListRelationFilter = { every?: postWhereInput some?: postWhereInput none?: postWhereInput - }> + } - export type EnumRoleFilter = Readonly<{ + export type EnumRoleFilter = { equals?: Role in?: Enumerable notIn?: Enumerable not?: XOR - }> + } - export type DateTimeFilter = Readonly<{ + export type DateTimeFilter = { equals?: Date | string in?: Enumerable | Enumerable notIn?: Enumerable | Enumerable @@ -5334,19 +5334,19 @@ export namespace Prisma { gt?: Date | string gte?: Date | string not?: XOR - }> + } - export type BoolFilter = Readonly<{ + export type BoolFilter = { equals?: boolean not?: XOR - }> + } - export type UserRelationFilter = Readonly<{ + export type UserRelationFilter = { is?: UserWhereInput isNot?: UserWhereInput - }> + } - export type IntNullableFilter = Readonly<{ + export type IntNullableFilter = { equals?: XOR in?: XOR, null> notIn?: XOR, null> @@ -5355,105 +5355,105 @@ export namespace Prisma { gt?: number gte?: number not?: number | NestedIntNullableFilter | null - }> + } - export type EnumPostKindNullableFilter = Readonly<{ + export type EnumPostKindNullableFilter = { equals?: XOR in?: XOR, null> notIn?: XOR, null> not?: PostKind | NestedEnumPostKindNullableFilter | null - }> + } - export type JsonFilter = Readonly<{ + export type JsonFilter = { equals?: InputJsonValue not?: InputJsonValue - }> + } - export type SlugNumberCompoundUniqueInput = Readonly<{ + export type SlugNumberCompoundUniqueInput = { slug: string number: number - }> + } - export type FirstNameLastNameCompoundUniqueInput = Readonly<{ + export type FirstNameLastNameCompoundUniqueInput = { firstName: string lastName: string - }> + } - export type DirectorRelationFilter = Readonly<{ + export type DirectorRelationFilter = { is?: DirectorWhereInput isNot?: DirectorWhereInput - }> + } - export type DirectorFirstNameDirectorLastNameTitleCompoundUniqueInput = Readonly<{ + export type DirectorFirstNameDirectorLastNameTitleCompoundUniqueInput = { directorFirstName: string directorLastName: string title: string - }> + } - export type MovieListRelationFilter = Readonly<{ + export type MovieListRelationFilter = { every?: MovieWhereInput some?: MovieWhereInput none?: MovieWhereInput - }> + } - export type CreatorListRelationFilter = Readonly<{ + export type CreatorListRelationFilter = { every?: CreatorWhereInput some?: CreatorWhereInput none?: CreatorWhereInput - }> + } - export type CreatorRelationFilter = Readonly<{ + export type CreatorRelationFilter = { is?: XOR isNot?: XOR - }> + } - export type ProblemListRelationFilter = Readonly<{ + export type ProblemListRelationFilter = { every?: ProblemWhereInput some?: ProblemWhereInput none?: ProblemWhereInput - }> + } - export type postCreateManyWithoutAuthorInput = Readonly<{ + export type postCreateManyWithoutAuthorInput = { create?: XOR> connect?: XOR> connectOrCreate?: XOR> - }> + } - export type postCreateManyWithoutEditorInput = Readonly<{ + export type postCreateManyWithoutEditorInput = { create?: XOR> connect?: XOR> connectOrCreate?: XOR> - }> + } - export type StringFieldUpdateOperationsInput = Readonly<{ + export type StringFieldUpdateOperationsInput = { set?: string - }> + } - export type NullableStringFieldUpdateOperationsInput = Readonly<{ + export type NullableStringFieldUpdateOperationsInput = { set?: XOR - }> + } - export type IntFieldUpdateOperationsInput = Readonly<{ + export type IntFieldUpdateOperationsInput = { set?: number increment?: number decrement?: number multiply?: number divide?: number - }> + } - export type FloatFieldUpdateOperationsInput = Readonly<{ + export type FloatFieldUpdateOperationsInput = { set?: number increment?: number decrement?: number multiply?: number divide?: number - }> + } - export type EnumRoleFieldUpdateOperationsInput = Readonly<{ + export type EnumRoleFieldUpdateOperationsInput = { set?: Role - }> + } - export type postUpdateManyWithoutAuthorInput = Readonly<{ + export type postUpdateManyWithoutAuthorInput = { create?: XOR> connect?: XOR> set?: XOR> @@ -5464,9 +5464,9 @@ export namespace Prisma { deleteMany?: XOR> upsert?: XOR> connectOrCreate?: XOR> - }> + } - export type postUpdateManyWithoutEditorInput = Readonly<{ + export type postUpdateManyWithoutEditorInput = { create?: XOR> connect?: XOR> set?: XOR> @@ -5477,41 +5477,41 @@ export namespace Prisma { deleteMany?: XOR> upsert?: XOR> connectOrCreate?: XOR> - }> + } - export type UserCreateOneWithoutPostsInput = Readonly<{ + export type UserCreateOneWithoutPostsInput = { create?: UserCreateWithoutPostsInput connect?: UserWhereUniqueInput connectOrCreate?: UserCreateOrConnectWithoutpostsInput - }> + } - export type UserCreateOneWithoutEditorPostsInput = Readonly<{ + export type UserCreateOneWithoutEditorPostsInput = { create?: UserCreateWithoutEditorPostsInput connect?: UserWhereUniqueInput connectOrCreate?: UserCreateOrConnectWithouteditorPostsInput - }> + } - export type DateTimeFieldUpdateOperationsInput = Readonly<{ + export type DateTimeFieldUpdateOperationsInput = { set?: Date | string - }> + } - export type BoolFieldUpdateOperationsInput = Readonly<{ + export type BoolFieldUpdateOperationsInput = { set?: boolean - }> + } - export type NullableEnumPostKindFieldUpdateOperationsInput = Readonly<{ + export type NullableEnumPostKindFieldUpdateOperationsInput = { set?: XOR - }> + } - export type UserUpdateOneRequiredWithoutPostsInput = Readonly<{ + export type UserUpdateOneRequiredWithoutPostsInput = { create?: UserCreateWithoutPostsInput connect?: UserWhereUniqueInput update?: UserUpdateWithoutPostsInput upsert?: UserUpsertWithoutPostsInput connectOrCreate?: UserCreateOrConnectWithoutpostsInput - }> + } - export type UserUpdateOneWithoutEditorPostsInput = Readonly<{ + export type UserUpdateOneWithoutEditorPostsInput = { create?: UserCreateWithoutEditorPostsInput connect?: UserWhereUniqueInput disconnect?: boolean @@ -5519,29 +5519,29 @@ export namespace Prisma { update?: UserUpdateWithoutEditorPostsInput upsert?: UserUpsertWithoutEditorPostsInput connectOrCreate?: UserCreateOrConnectWithouteditorPostsInput - }> + } - export type DirectorCreateOneWithoutMoviesInput = Readonly<{ + export type DirectorCreateOneWithoutMoviesInput = { create?: DirectorCreateWithoutMoviesInput connect?: DirectorWhereUniqueInput connectOrCreate?: DirectorCreateOrConnectWithoutmoviesInput - }> + } - export type DirectorUpdateOneRequiredWithoutMoviesInput = Readonly<{ + export type DirectorUpdateOneRequiredWithoutMoviesInput = { create?: DirectorCreateWithoutMoviesInput connect?: DirectorWhereUniqueInput update?: DirectorUpdateWithoutMoviesInput upsert?: DirectorUpsertWithoutMoviesInput connectOrCreate?: DirectorCreateOrConnectWithoutmoviesInput - }> + } - export type MovieCreateManyWithoutDirectorInput = Readonly<{ + export type MovieCreateManyWithoutDirectorInput = { create?: XOR> connect?: XOR> connectOrCreate?: XOR> - }> + } - export type MovieUpdateManyWithoutDirectorInput = Readonly<{ + export type MovieUpdateManyWithoutDirectorInput = { create?: XOR> connect?: XOR> set?: XOR> @@ -5552,21 +5552,21 @@ export namespace Prisma { deleteMany?: XOR> upsert?: XOR> connectOrCreate?: XOR> - }> + } - export type CreatorCreateManyWithoutLikesInput = Readonly<{ + export type CreatorCreateManyWithoutLikesInput = { create?: XOR> connect?: XOR> connectOrCreate?: XOR> - }> + } - export type CreatorCreateOneWithoutProblemsInput = Readonly<{ + export type CreatorCreateOneWithoutProblemsInput = { create?: CreatorCreateWithoutProblemsInput connect?: CreatorWhereUniqueInput connectOrCreate?: CreatorCreateOrConnectWithoutproblemsInput - }> + } - export type CreatorUpdateManyWithoutLikesInput = Readonly<{ + export type CreatorUpdateManyWithoutLikesInput = { create?: XOR> connect?: XOR> set?: XOR> @@ -5577,9 +5577,9 @@ export namespace Prisma { deleteMany?: XOR> upsert?: XOR> connectOrCreate?: XOR> - }> + } - export type CreatorUpdateOneWithoutProblemsInput = Readonly<{ + export type CreatorUpdateOneWithoutProblemsInput = { create?: CreatorCreateWithoutProblemsInput connect?: CreatorWhereUniqueInput disconnect?: boolean @@ -5587,21 +5587,21 @@ export namespace Prisma { update?: CreatorUpdateWithoutProblemsInput upsert?: CreatorUpsertWithoutProblemsInput connectOrCreate?: CreatorCreateOrConnectWithoutproblemsInput - }> + } - export type ProblemCreateManyWithoutLikedByInput = Readonly<{ + export type ProblemCreateManyWithoutLikedByInput = { create?: XOR> connect?: XOR> connectOrCreate?: XOR> - }> + } - export type ProblemCreateManyWithoutCreatorInput = Readonly<{ + export type ProblemCreateManyWithoutCreatorInput = { create?: XOR> connect?: XOR> connectOrCreate?: XOR> - }> + } - export type ProblemUpdateManyWithoutLikedByInput = Readonly<{ + export type ProblemUpdateManyWithoutLikedByInput = { create?: XOR> connect?: XOR> set?: XOR> @@ -5612,9 +5612,9 @@ export namespace Prisma { deleteMany?: XOR> upsert?: XOR> connectOrCreate?: XOR> - }> + } - export type ProblemUpdateManyWithoutCreatorInput = Readonly<{ + export type ProblemUpdateManyWithoutCreatorInput = { create?: XOR> connect?: XOR> set?: XOR> @@ -5625,9 +5625,9 @@ export namespace Prisma { deleteMany?: XOR> upsert?: XOR> connectOrCreate?: XOR> - }> + } - export type NestedIntFilter = Readonly<{ + export type NestedIntFilter = { equals?: number in?: Enumerable notIn?: Enumerable @@ -5636,9 +5636,9 @@ export namespace Prisma { gt?: number gte?: number not?: XOR - }> + } - export type NestedStringFilter = Readonly<{ + export type NestedStringFilter = { equals?: string in?: Enumerable notIn?: Enumerable @@ -5650,9 +5650,9 @@ export namespace Prisma { startsWith?: string endsWith?: string not?: XOR - }> + } - export type NestedStringNullableFilter = Readonly<{ + export type NestedStringNullableFilter = { equals?: XOR in?: XOR, null> notIn?: XOR, null> @@ -5664,9 +5664,9 @@ export namespace Prisma { startsWith?: string endsWith?: string not?: string | NestedStringNullableFilter | null - }> + } - export type NestedFloatFilter = Readonly<{ + export type NestedFloatFilter = { equals?: number in?: Enumerable notIn?: Enumerable @@ -5675,16 +5675,16 @@ export namespace Prisma { gt?: number gte?: number not?: XOR - }> + } - export type NestedEnumRoleFilter = Readonly<{ + export type NestedEnumRoleFilter = { equals?: Role in?: Enumerable notIn?: Enumerable not?: XOR - }> + } - export type NestedDateTimeFilter = Readonly<{ + export type NestedDateTimeFilter = { equals?: Date | string in?: Enumerable | Enumerable notIn?: Enumerable | Enumerable @@ -5693,14 +5693,14 @@ export namespace Prisma { gt?: Date | string gte?: Date | string not?: XOR - }> + } - export type NestedBoolFilter = Readonly<{ + export type NestedBoolFilter = { equals?: boolean not?: XOR - }> + } - export type NestedIntNullableFilter = Readonly<{ + export type NestedIntNullableFilter = { equals?: XOR in?: XOR, null> notIn?: XOR, null> @@ -5709,16 +5709,16 @@ export namespace Prisma { gt?: number gte?: number not?: number | NestedIntNullableFilter | null - }> + } - export type NestedEnumPostKindNullableFilter = Readonly<{ + export type NestedEnumPostKindNullableFilter = { equals?: XOR in?: XOR, null> notIn?: XOR, null> not?: PostKind | NestedEnumPostKindNullableFilter | null - }> + } - export type postCreateWithoutAuthorInput = Readonly<{ + export type postCreateWithoutAuthorInput = { uuid?: string createdAt?: Date | string updatedAt?: Date | string @@ -5729,14 +5729,14 @@ export namespace Prisma { kind?: XOR metadata: InputJsonValue editor?: UserCreateOneWithoutEditorPostsInput - }> + } - export type postCreateOrConnectWithoutauthorInput = Readonly<{ + export type postCreateOrConnectWithoutauthorInput = { where: postWhereUniqueInput create: postCreateWithoutAuthorInput - }> + } - export type postCreateWithoutEditorInput = Readonly<{ + export type postCreateWithoutEditorInput = { uuid?: string createdAt?: Date | string updatedAt?: Date | string @@ -5747,24 +5747,24 @@ export namespace Prisma { kind?: XOR metadata: InputJsonValue author: UserCreateOneWithoutPostsInput - }> + } - export type postCreateOrConnectWithouteditorInput = Readonly<{ + export type postCreateOrConnectWithouteditorInput = { where: postWhereUniqueInput create: postCreateWithoutEditorInput - }> + } - export type postUpdateWithWhereUniqueWithoutAuthorInput = Readonly<{ + export type postUpdateWithWhereUniqueWithoutAuthorInput = { where: postWhereUniqueInput data: postUpdateWithoutAuthorInput - }> + } - export type postUpdateManyWithWhereWithoutAuthorInput = Readonly<{ + export type postUpdateManyWithWhereWithoutAuthorInput = { where: postScalarWhereInput data: postUpdateManyMutationInput - }> + } - export type postScalarWhereInput = Readonly<{ + export type postScalarWhereInput = { AND?: XOR> OR?: XOR> NOT?: XOR> @@ -5779,31 +5779,31 @@ export namespace Prisma { editorId?: IntNullableFilter | number | null kind?: EnumPostKindNullableFilter | PostKind | null metadata?: JsonFilter - }> + } - export type postUpsertWithWhereUniqueWithoutAuthorInput = Readonly<{ + export type postUpsertWithWhereUniqueWithoutAuthorInput = { where: postWhereUniqueInput update: postUpdateWithoutAuthorInput create: postCreateWithoutAuthorInput - }> + } - export type postUpdateWithWhereUniqueWithoutEditorInput = Readonly<{ + export type postUpdateWithWhereUniqueWithoutEditorInput = { where: postWhereUniqueInput data: postUpdateWithoutEditorInput - }> + } - export type postUpdateManyWithWhereWithoutEditorInput = Readonly<{ + export type postUpdateManyWithWhereWithoutEditorInput = { where: postScalarWhereInput data: postUpdateManyMutationInput - }> + } - export type postUpsertWithWhereUniqueWithoutEditorInput = Readonly<{ + export type postUpsertWithWhereUniqueWithoutEditorInput = { where: postWhereUniqueInput update: postUpdateWithoutEditorInput create: postCreateWithoutEditorInput - }> + } - export type UserCreateWithoutPostsInput = Readonly<{ + export type UserCreateWithoutPostsInput = { email: string name?: XOR age: number @@ -5811,14 +5811,14 @@ export namespace Prisma { amount: number role: Role editorPosts?: postCreateManyWithoutEditorInput - }> + } - export type UserCreateOrConnectWithoutpostsInput = Readonly<{ + export type UserCreateOrConnectWithoutpostsInput = { where: UserWhereUniqueInput create: UserCreateWithoutPostsInput - }> + } - export type UserCreateWithoutEditorPostsInput = Readonly<{ + export type UserCreateWithoutEditorPostsInput = { email: string name?: XOR age: number @@ -5826,14 +5826,14 @@ export namespace Prisma { amount: number role: Role posts?: postCreateManyWithoutAuthorInput - }> + } - export type UserCreateOrConnectWithouteditorPostsInput = Readonly<{ + export type UserCreateOrConnectWithouteditorPostsInput = { where: UserWhereUniqueInput create: UserCreateWithoutEditorPostsInput - }> + } - export type UserUpdateWithoutPostsInput = Readonly<{ + export type UserUpdateWithoutPostsInput = { email?: XOR name?: string | NullableStringFieldUpdateOperationsInput | null age?: XOR @@ -5841,14 +5841,14 @@ export namespace Prisma { amount?: XOR role?: XOR editorPosts?: postUpdateManyWithoutEditorInput - }> + } - export type UserUpsertWithoutPostsInput = Readonly<{ + export type UserUpsertWithoutPostsInput = { update: UserUpdateWithoutPostsInput create: UserCreateWithoutPostsInput - }> + } - export type UserUpdateWithoutEditorPostsInput = Readonly<{ + export type UserUpdateWithoutEditorPostsInput = { email?: XOR name?: string | NullableStringFieldUpdateOperationsInput | null age?: XOR @@ -5856,183 +5856,183 @@ export namespace Prisma { amount?: XOR role?: XOR posts?: postUpdateManyWithoutAuthorInput - }> + } - export type UserUpsertWithoutEditorPostsInput = Readonly<{ + export type UserUpsertWithoutEditorPostsInput = { update: UserUpdateWithoutEditorPostsInput create: UserCreateWithoutEditorPostsInput - }> + } - export type DirectorCreateWithoutMoviesInput = Readonly<{ + export type DirectorCreateWithoutMoviesInput = { firstName: string lastName: string - }> + } - export type DirectorCreateOrConnectWithoutmoviesInput = Readonly<{ + export type DirectorCreateOrConnectWithoutmoviesInput = { where: DirectorWhereUniqueInput create: DirectorCreateWithoutMoviesInput - }> + } - export type DirectorUpdateWithoutMoviesInput = Readonly<{ + export type DirectorUpdateWithoutMoviesInput = { firstName?: XOR lastName?: XOR - }> + } - export type DirectorUpsertWithoutMoviesInput = Readonly<{ + export type DirectorUpsertWithoutMoviesInput = { update: DirectorUpdateWithoutMoviesInput create: DirectorCreateWithoutMoviesInput - }> + } - export type MovieCreateWithoutDirectorInput = Readonly<{ + export type MovieCreateWithoutDirectorInput = { title: string - }> + } - export type MovieCreateOrConnectWithoutdirectorInput = Readonly<{ + export type MovieCreateOrConnectWithoutdirectorInput = { where: MovieWhereUniqueInput create: MovieCreateWithoutDirectorInput - }> + } - export type MovieUpdateWithWhereUniqueWithoutDirectorInput = Readonly<{ + export type MovieUpdateWithWhereUniqueWithoutDirectorInput = { where: MovieWhereUniqueInput data: MovieUpdateWithoutDirectorInput - }> + } - export type MovieUpdateManyWithWhereWithoutDirectorInput = Readonly<{ + export type MovieUpdateManyWithWhereWithoutDirectorInput = { where: MovieScalarWhereInput data: MovieUpdateManyMutationInput - }> + } - export type MovieScalarWhereInput = Readonly<{ + export type MovieScalarWhereInput = { AND?: XOR> OR?: XOR> NOT?: XOR> directorFirstName?: XOR directorLastName?: XOR title?: XOR - }> + } - export type MovieUpsertWithWhereUniqueWithoutDirectorInput = Readonly<{ + export type MovieUpsertWithWhereUniqueWithoutDirectorInput = { where: MovieWhereUniqueInput update: MovieUpdateWithoutDirectorInput create: MovieCreateWithoutDirectorInput - }> + } - export type CreatorCreateWithoutLikesInput = Readonly<{ + export type CreatorCreateWithoutLikesInput = { name: string problems?: ProblemCreateManyWithoutCreatorInput - }> + } - export type CreatorCreateOrConnectWithoutlikesInput = Readonly<{ + export type CreatorCreateOrConnectWithoutlikesInput = { where: CreatorWhereUniqueInput create: CreatorCreateWithoutLikesInput - }> + } - export type CreatorCreateWithoutProblemsInput = Readonly<{ + export type CreatorCreateWithoutProblemsInput = { name: string likes?: ProblemCreateManyWithoutLikedByInput - }> + } - export type CreatorCreateOrConnectWithoutproblemsInput = Readonly<{ + export type CreatorCreateOrConnectWithoutproblemsInput = { where: CreatorWhereUniqueInput create: CreatorCreateWithoutProblemsInput - }> + } - export type CreatorUpdateWithWhereUniqueWithoutLikesInput = Readonly<{ + export type CreatorUpdateWithWhereUniqueWithoutLikesInput = { where: CreatorWhereUniqueInput data: CreatorUpdateWithoutLikesInput - }> + } - export type CreatorUpdateManyWithWhereWithoutLikesInput = Readonly<{ + export type CreatorUpdateManyWithWhereWithoutLikesInput = { where: CreatorScalarWhereInput data: CreatorUpdateManyMutationInput - }> + } - export type CreatorScalarWhereInput = Readonly<{ + export type CreatorScalarWhereInput = { AND?: XOR> OR?: XOR> NOT?: XOR> id?: XOR name?: XOR - }> + } - export type CreatorUpsertWithWhereUniqueWithoutLikesInput = Readonly<{ + export type CreatorUpsertWithWhereUniqueWithoutLikesInput = { where: CreatorWhereUniqueInput update: CreatorUpdateWithoutLikesInput create: CreatorCreateWithoutLikesInput - }> + } - export type CreatorUpdateWithoutProblemsInput = Readonly<{ + export type CreatorUpdateWithoutProblemsInput = { name?: XOR likes?: ProblemUpdateManyWithoutLikedByInput - }> + } - export type CreatorUpsertWithoutProblemsInput = Readonly<{ + export type CreatorUpsertWithoutProblemsInput = { update: CreatorUpdateWithoutProblemsInput create: CreatorCreateWithoutProblemsInput - }> + } - export type ProblemCreateWithoutLikedByInput = Readonly<{ + export type ProblemCreateWithoutLikedByInput = { problemText: string creator?: CreatorCreateOneWithoutProblemsInput - }> + } - export type ProblemCreateOrConnectWithoutlikedByInput = Readonly<{ + export type ProblemCreateOrConnectWithoutlikedByInput = { where: ProblemWhereUniqueInput create: ProblemCreateWithoutLikedByInput - }> + } - export type ProblemCreateWithoutCreatorInput = Readonly<{ + export type ProblemCreateWithoutCreatorInput = { problemText: string likedBy?: CreatorCreateManyWithoutLikesInput - }> + } - export type ProblemCreateOrConnectWithoutcreatorInput = Readonly<{ + export type ProblemCreateOrConnectWithoutcreatorInput = { where: ProblemWhereUniqueInput create: ProblemCreateWithoutCreatorInput - }> + } - export type ProblemUpdateWithWhereUniqueWithoutLikedByInput = Readonly<{ + export type ProblemUpdateWithWhereUniqueWithoutLikedByInput = { where: ProblemWhereUniqueInput data: ProblemUpdateWithoutLikedByInput - }> + } - export type ProblemUpdateManyWithWhereWithoutLikedByInput = Readonly<{ + export type ProblemUpdateManyWithWhereWithoutLikedByInput = { where: ProblemScalarWhereInput data: ProblemUpdateManyMutationInput - }> + } - export type ProblemScalarWhereInput = Readonly<{ + export type ProblemScalarWhereInput = { AND?: XOR> OR?: XOR> NOT?: XOR> id?: XOR problemText?: XOR creatorId?: IntNullableFilter | number | null - }> + } - export type ProblemUpsertWithWhereUniqueWithoutLikedByInput = Readonly<{ + export type ProblemUpsertWithWhereUniqueWithoutLikedByInput = { where: ProblemWhereUniqueInput update: ProblemUpdateWithoutLikedByInput create: ProblemCreateWithoutLikedByInput - }> + } - export type ProblemUpdateWithWhereUniqueWithoutCreatorInput = Readonly<{ + export type ProblemUpdateWithWhereUniqueWithoutCreatorInput = { where: ProblemWhereUniqueInput data: ProblemUpdateWithoutCreatorInput - }> + } - export type ProblemUpdateManyWithWhereWithoutCreatorInput = Readonly<{ + export type ProblemUpdateManyWithWhereWithoutCreatorInput = { where: ProblemScalarWhereInput data: ProblemUpdateManyMutationInput - }> + } - export type ProblemUpsertWithWhereUniqueWithoutCreatorInput = Readonly<{ + export type ProblemUpsertWithWhereUniqueWithoutCreatorInput = { where: ProblemWhereUniqueInput update: ProblemUpdateWithoutCreatorInput create: ProblemCreateWithoutCreatorInput - }> + } - export type postUpdateWithoutAuthorInput = Readonly<{ + export type postUpdateWithoutAuthorInput = { uuid?: XOR createdAt?: XOR updatedAt?: XOR @@ -6043,9 +6043,9 @@ export namespace Prisma { kind?: PostKind | NullableEnumPostKindFieldUpdateOperationsInput | null metadata?: InputJsonValue editor?: UserUpdateOneWithoutEditorPostsInput - }> + } - export type postUpdateWithoutEditorInput = Readonly<{ + export type postUpdateWithoutEditorInput = { uuid?: XOR createdAt?: XOR updatedAt?: XOR @@ -6056,26 +6056,26 @@ export namespace Prisma { kind?: PostKind | NullableEnumPostKindFieldUpdateOperationsInput | null metadata?: InputJsonValue author?: UserUpdateOneRequiredWithoutPostsInput - }> + } - export type MovieUpdateWithoutDirectorInput = Readonly<{ + export type MovieUpdateWithoutDirectorInput = { title?: XOR - }> + } - export type CreatorUpdateWithoutLikesInput = Readonly<{ + export type CreatorUpdateWithoutLikesInput = { name?: XOR problems?: ProblemUpdateManyWithoutCreatorInput - }> + } - export type ProblemUpdateWithoutLikedByInput = Readonly<{ + export type ProblemUpdateWithoutLikedByInput = { problemText?: XOR creator?: CreatorUpdateOneWithoutProblemsInput - }> + } - export type ProblemUpdateWithoutCreatorInput = Readonly<{ + export type ProblemUpdateWithoutCreatorInput = { problemText?: XOR likedBy?: CreatorUpdateManyWithoutLikesInput - }> + } @@ -6097,317 +6097,1573 @@ export namespace Prisma { * Exports for compatiblity introduced in 2.12.0 * Please import from the Prisma namespace instead */ -export import UserDistinctFieldEnum = Prisma.UserDistinctFieldEnum -export import PostDistinctFieldEnum = Prisma.PostDistinctFieldEnum -export import CategoryDistinctFieldEnum = Prisma.CategoryDistinctFieldEnum -export import PatientDistinctFieldEnum = Prisma.PatientDistinctFieldEnum -export import MovieDistinctFieldEnum = Prisma.MovieDistinctFieldEnum -export import DirectorDistinctFieldEnum = Prisma.DirectorDistinctFieldEnum -export import ProblemDistinctFieldEnum = Prisma.ProblemDistinctFieldEnum -export import CreatorDistinctFieldEnum = Prisma.CreatorDistinctFieldEnum -export import SortOrder = Prisma.SortOrder -export import QueryMode = Prisma.QueryMode -export import ModelName = Prisma.ModelName -export import AggregateUser = Prisma.AggregateUser -export import UserAvgAggregateOutputType = Prisma.UserAvgAggregateOutputType -export import UserSumAggregateOutputType = Prisma.UserSumAggregateOutputType -export import UserMinAggregateOutputType = Prisma.UserMinAggregateOutputType -export import UserMaxAggregateOutputType = Prisma.UserMaxAggregateOutputType -export import AggregateUserArgs = Prisma.AggregateUserArgs -export import UserAvgAggregateInputType = Prisma.UserAvgAggregateInputType -export import UserSumAggregateInputType = Prisma.UserSumAggregateInputType -export import UserMinAggregateInputType = Prisma.UserMinAggregateInputType -export import UserMaxAggregateInputType = Prisma.UserMaxAggregateInputType -export import UserSelect = Prisma.UserSelect -export import UserInclude = Prisma.UserInclude -export import FindUniqueUserArgs = Prisma.FindUniqueUserArgs -export import FindFirstUserArgs = Prisma.FindFirstUserArgs -export import FindManyUserArgs = Prisma.FindManyUserArgs -export import UserCreateArgs = Prisma.UserCreateArgs -export import UserUpdateArgs = Prisma.UserUpdateArgs -export import UserUpdateManyArgs = Prisma.UserUpdateManyArgs -export import UserUpsertArgs = Prisma.UserUpsertArgs -export import UserDeleteArgs = Prisma.UserDeleteArgs -export import UserDeleteManyArgs = Prisma.UserDeleteManyArgs -export import AggregatePost = Prisma.AggregatePost -export import PostAvgAggregateOutputType = Prisma.PostAvgAggregateOutputType -export import PostSumAggregateOutputType = Prisma.PostSumAggregateOutputType -export import PostMinAggregateOutputType = Prisma.PostMinAggregateOutputType -export import PostMaxAggregateOutputType = Prisma.PostMaxAggregateOutputType -export import AggregatePostArgs = Prisma.AggregatePostArgs -export import PostAvgAggregateInputType = Prisma.PostAvgAggregateInputType -export import PostSumAggregateInputType = Prisma.PostSumAggregateInputType -export import PostMinAggregateInputType = Prisma.PostMinAggregateInputType -export import PostMaxAggregateInputType = Prisma.PostMaxAggregateInputType -export import postSelect = Prisma.postSelect -export import postInclude = Prisma.postInclude -export import FindUniquepostArgs = Prisma.FindUniquepostArgs -export import FindFirstpostArgs = Prisma.FindFirstpostArgs -export import FindManypostArgs = Prisma.FindManypostArgs -export import postCreateArgs = Prisma.postCreateArgs -export import postUpdateArgs = Prisma.postUpdateArgs -export import postUpdateManyArgs = Prisma.postUpdateManyArgs -export import postUpsertArgs = Prisma.postUpsertArgs -export import postDeleteArgs = Prisma.postDeleteArgs -export import postDeleteManyArgs = Prisma.postDeleteManyArgs -export import AggregateCategory = Prisma.AggregateCategory -export import CategoryAvgAggregateOutputType = Prisma.CategoryAvgAggregateOutputType -export import CategorySumAggregateOutputType = Prisma.CategorySumAggregateOutputType -export import CategoryMinAggregateOutputType = Prisma.CategoryMinAggregateOutputType -export import CategoryMaxAggregateOutputType = Prisma.CategoryMaxAggregateOutputType -export import AggregateCategoryArgs = Prisma.AggregateCategoryArgs -export import CategoryAvgAggregateInputType = Prisma.CategoryAvgAggregateInputType -export import CategorySumAggregateInputType = Prisma.CategorySumAggregateInputType -export import CategoryMinAggregateInputType = Prisma.CategoryMinAggregateInputType -export import CategoryMaxAggregateInputType = Prisma.CategoryMaxAggregateInputType -export import CategorySelect = Prisma.CategorySelect -export import FindUniqueCategoryArgs = Prisma.FindUniqueCategoryArgs -export import FindFirstCategoryArgs = Prisma.FindFirstCategoryArgs -export import FindManyCategoryArgs = Prisma.FindManyCategoryArgs -export import CategoryCreateArgs = Prisma.CategoryCreateArgs -export import CategoryUpdateArgs = Prisma.CategoryUpdateArgs -export import CategoryUpdateManyArgs = Prisma.CategoryUpdateManyArgs -export import CategoryUpsertArgs = Prisma.CategoryUpsertArgs -export import CategoryDeleteArgs = Prisma.CategoryDeleteArgs -export import CategoryDeleteManyArgs = Prisma.CategoryDeleteManyArgs -export import AggregatePatient = Prisma.AggregatePatient -export import AggregatePatientArgs = Prisma.AggregatePatientArgs -export import PatientSelect = Prisma.PatientSelect -export import FindUniquePatientArgs = Prisma.FindUniquePatientArgs -export import FindFirstPatientArgs = Prisma.FindFirstPatientArgs -export import FindManyPatientArgs = Prisma.FindManyPatientArgs -export import PatientCreateArgs = Prisma.PatientCreateArgs -export import PatientUpdateArgs = Prisma.PatientUpdateArgs -export import PatientUpdateManyArgs = Prisma.PatientUpdateManyArgs -export import PatientUpsertArgs = Prisma.PatientUpsertArgs -export import PatientDeleteArgs = Prisma.PatientDeleteArgs -export import PatientDeleteManyArgs = Prisma.PatientDeleteManyArgs -export import AggregateMovie = Prisma.AggregateMovie -export import AggregateMovieArgs = Prisma.AggregateMovieArgs -export import MovieSelect = Prisma.MovieSelect -export import MovieInclude = Prisma.MovieInclude -export import FindUniqueMovieArgs = Prisma.FindUniqueMovieArgs -export import FindFirstMovieArgs = Prisma.FindFirstMovieArgs -export import FindManyMovieArgs = Prisma.FindManyMovieArgs -export import MovieCreateArgs = Prisma.MovieCreateArgs -export import MovieUpdateArgs = Prisma.MovieUpdateArgs -export import MovieUpdateManyArgs = Prisma.MovieUpdateManyArgs -export import MovieUpsertArgs = Prisma.MovieUpsertArgs -export import MovieDeleteArgs = Prisma.MovieDeleteArgs -export import MovieDeleteManyArgs = Prisma.MovieDeleteManyArgs -export import AggregateDirector = Prisma.AggregateDirector -export import AggregateDirectorArgs = Prisma.AggregateDirectorArgs -export import DirectorSelect = Prisma.DirectorSelect -export import DirectorInclude = Prisma.DirectorInclude -export import FindUniqueDirectorArgs = Prisma.FindUniqueDirectorArgs -export import FindFirstDirectorArgs = Prisma.FindFirstDirectorArgs -export import FindManyDirectorArgs = Prisma.FindManyDirectorArgs -export import DirectorCreateArgs = Prisma.DirectorCreateArgs -export import DirectorUpdateArgs = Prisma.DirectorUpdateArgs -export import DirectorUpdateManyArgs = Prisma.DirectorUpdateManyArgs -export import DirectorUpsertArgs = Prisma.DirectorUpsertArgs -export import DirectorDeleteArgs = Prisma.DirectorDeleteArgs -export import DirectorDeleteManyArgs = Prisma.DirectorDeleteManyArgs -export import AggregateProblem = Prisma.AggregateProblem -export import ProblemAvgAggregateOutputType = Prisma.ProblemAvgAggregateOutputType -export import ProblemSumAggregateOutputType = Prisma.ProblemSumAggregateOutputType -export import ProblemMinAggregateOutputType = Prisma.ProblemMinAggregateOutputType -export import ProblemMaxAggregateOutputType = Prisma.ProblemMaxAggregateOutputType -export import AggregateProblemArgs = Prisma.AggregateProblemArgs -export import ProblemAvgAggregateInputType = Prisma.ProblemAvgAggregateInputType -export import ProblemSumAggregateInputType = Prisma.ProblemSumAggregateInputType -export import ProblemMinAggregateInputType = Prisma.ProblemMinAggregateInputType -export import ProblemMaxAggregateInputType = Prisma.ProblemMaxAggregateInputType -export import ProblemSelect = Prisma.ProblemSelect -export import ProblemInclude = Prisma.ProblemInclude -export import FindUniqueProblemArgs = Prisma.FindUniqueProblemArgs -export import FindFirstProblemArgs = Prisma.FindFirstProblemArgs -export import FindManyProblemArgs = Prisma.FindManyProblemArgs -export import ProblemCreateArgs = Prisma.ProblemCreateArgs -export import ProblemUpdateArgs = Prisma.ProblemUpdateArgs -export import ProblemUpdateManyArgs = Prisma.ProblemUpdateManyArgs -export import ProblemUpsertArgs = Prisma.ProblemUpsertArgs -export import ProblemDeleteArgs = Prisma.ProblemDeleteArgs -export import ProblemDeleteManyArgs = Prisma.ProblemDeleteManyArgs -export import AggregateCreator = Prisma.AggregateCreator -export import CreatorAvgAggregateOutputType = Prisma.CreatorAvgAggregateOutputType -export import CreatorSumAggregateOutputType = Prisma.CreatorSumAggregateOutputType -export import CreatorMinAggregateOutputType = Prisma.CreatorMinAggregateOutputType -export import CreatorMaxAggregateOutputType = Prisma.CreatorMaxAggregateOutputType -export import AggregateCreatorArgs = Prisma.AggregateCreatorArgs -export import CreatorAvgAggregateInputType = Prisma.CreatorAvgAggregateInputType -export import CreatorSumAggregateInputType = Prisma.CreatorSumAggregateInputType -export import CreatorMinAggregateInputType = Prisma.CreatorMinAggregateInputType -export import CreatorMaxAggregateInputType = Prisma.CreatorMaxAggregateInputType -export import CreatorSelect = Prisma.CreatorSelect -export import CreatorInclude = Prisma.CreatorInclude -export import FindUniqueCreatorArgs = Prisma.FindUniqueCreatorArgs -export import FindFirstCreatorArgs = Prisma.FindFirstCreatorArgs -export import FindManyCreatorArgs = Prisma.FindManyCreatorArgs -export import CreatorCreateArgs = Prisma.CreatorCreateArgs -export import CreatorUpdateArgs = Prisma.CreatorUpdateArgs -export import CreatorUpdateManyArgs = Prisma.CreatorUpdateManyArgs -export import CreatorUpsertArgs = Prisma.CreatorUpsertArgs -export import CreatorDeleteArgs = Prisma.CreatorDeleteArgs -export import CreatorDeleteManyArgs = Prisma.CreatorDeleteManyArgs -export import UserWhereInput = Prisma.UserWhereInput -export import UserOrderByInput = Prisma.UserOrderByInput -export import UserWhereUniqueInput = Prisma.UserWhereUniqueInput -export import postWhereInput = Prisma.postWhereInput -export import postOrderByInput = Prisma.postOrderByInput -export import postWhereUniqueInput = Prisma.postWhereUniqueInput -export import CategoryWhereInput = Prisma.CategoryWhereInput -export import CategoryOrderByInput = Prisma.CategoryOrderByInput -export import CategoryWhereUniqueInput = Prisma.CategoryWhereUniqueInput -export import PatientWhereInput = Prisma.PatientWhereInput -export import PatientOrderByInput = Prisma.PatientOrderByInput -export import PatientWhereUniqueInput = Prisma.PatientWhereUniqueInput -export import MovieWhereInput = Prisma.MovieWhereInput -export import MovieOrderByInput = Prisma.MovieOrderByInput -export import MovieWhereUniqueInput = Prisma.MovieWhereUniqueInput -export import DirectorWhereInput = Prisma.DirectorWhereInput -export import DirectorOrderByInput = Prisma.DirectorOrderByInput -export import DirectorWhereUniqueInput = Prisma.DirectorWhereUniqueInput -export import ProblemWhereInput = Prisma.ProblemWhereInput -export import ProblemOrderByInput = Prisma.ProblemOrderByInput -export import ProblemWhereUniqueInput = Prisma.ProblemWhereUniqueInput -export import CreatorWhereInput = Prisma.CreatorWhereInput -export import CreatorOrderByInput = Prisma.CreatorOrderByInput -export import CreatorWhereUniqueInput = Prisma.CreatorWhereUniqueInput -export import UserCreateInput = Prisma.UserCreateInput -export import UserUpdateInput = Prisma.UserUpdateInput -export import UserUpdateManyMutationInput = Prisma.UserUpdateManyMutationInput -export import postCreateInput = Prisma.postCreateInput -export import postUpdateInput = Prisma.postUpdateInput -export import postUpdateManyMutationInput = Prisma.postUpdateManyMutationInput -export import CategoryCreateInput = Prisma.CategoryCreateInput -export import CategoryUpdateInput = Prisma.CategoryUpdateInput -export import CategoryUpdateManyMutationInput = Prisma.CategoryUpdateManyMutationInput -export import PatientCreateInput = Prisma.PatientCreateInput -export import PatientUpdateInput = Prisma.PatientUpdateInput -export import PatientUpdateManyMutationInput = Prisma.PatientUpdateManyMutationInput -export import MovieCreateInput = Prisma.MovieCreateInput -export import MovieUpdateInput = Prisma.MovieUpdateInput -export import MovieUpdateManyMutationInput = Prisma.MovieUpdateManyMutationInput -export import DirectorCreateInput = Prisma.DirectorCreateInput -export import DirectorUpdateInput = Prisma.DirectorUpdateInput -export import DirectorUpdateManyMutationInput = Prisma.DirectorUpdateManyMutationInput -export import ProblemCreateInput = Prisma.ProblemCreateInput -export import ProblemUpdateInput = Prisma.ProblemUpdateInput -export import ProblemUpdateManyMutationInput = Prisma.ProblemUpdateManyMutationInput -export import CreatorCreateInput = Prisma.CreatorCreateInput -export import CreatorUpdateInput = Prisma.CreatorUpdateInput -export import CreatorUpdateManyMutationInput = Prisma.CreatorUpdateManyMutationInput -export import IntFilter = Prisma.IntFilter -export import StringFilter = Prisma.StringFilter -export import StringNullableFilter = Prisma.StringNullableFilter -export import FloatFilter = Prisma.FloatFilter -export import PostListRelationFilter = Prisma.PostListRelationFilter -export import EnumRoleFilter = Prisma.EnumRoleFilter -export import DateTimeFilter = Prisma.DateTimeFilter -export import BoolFilter = Prisma.BoolFilter -export import UserRelationFilter = Prisma.UserRelationFilter -export import IntNullableFilter = Prisma.IntNullableFilter -export import EnumPostKindNullableFilter = Prisma.EnumPostKindNullableFilter -export import JsonFilter = Prisma.JsonFilter -export import SlugNumberCompoundUniqueInput = Prisma.SlugNumberCompoundUniqueInput -export import FirstNameLastNameCompoundUniqueInput = Prisma.FirstNameLastNameCompoundUniqueInput -export import DirectorRelationFilter = Prisma.DirectorRelationFilter -export import DirectorFirstNameDirectorLastNameTitleCompoundUniqueInput = Prisma.DirectorFirstNameDirectorLastNameTitleCompoundUniqueInput -export import MovieListRelationFilter = Prisma.MovieListRelationFilter -export import CreatorListRelationFilter = Prisma.CreatorListRelationFilter -export import CreatorRelationFilter = Prisma.CreatorRelationFilter -export import ProblemListRelationFilter = Prisma.ProblemListRelationFilter -export import postCreateManyWithoutAuthorInput = Prisma.postCreateManyWithoutAuthorInput -export import postCreateManyWithoutEditorInput = Prisma.postCreateManyWithoutEditorInput -export import StringFieldUpdateOperationsInput = Prisma.StringFieldUpdateOperationsInput -export import NullableStringFieldUpdateOperationsInput = Prisma.NullableStringFieldUpdateOperationsInput -export import IntFieldUpdateOperationsInput = Prisma.IntFieldUpdateOperationsInput -export import FloatFieldUpdateOperationsInput = Prisma.FloatFieldUpdateOperationsInput -export import EnumRoleFieldUpdateOperationsInput = Prisma.EnumRoleFieldUpdateOperationsInput -export import postUpdateManyWithoutAuthorInput = Prisma.postUpdateManyWithoutAuthorInput -export import postUpdateManyWithoutEditorInput = Prisma.postUpdateManyWithoutEditorInput -export import UserCreateOneWithoutPostsInput = Prisma.UserCreateOneWithoutPostsInput -export import UserCreateOneWithoutEditorPostsInput = Prisma.UserCreateOneWithoutEditorPostsInput -export import DateTimeFieldUpdateOperationsInput = Prisma.DateTimeFieldUpdateOperationsInput -export import BoolFieldUpdateOperationsInput = Prisma.BoolFieldUpdateOperationsInput -export import NullableEnumPostKindFieldUpdateOperationsInput = Prisma.NullableEnumPostKindFieldUpdateOperationsInput -export import UserUpdateOneRequiredWithoutPostsInput = Prisma.UserUpdateOneRequiredWithoutPostsInput -export import UserUpdateOneWithoutEditorPostsInput = Prisma.UserUpdateOneWithoutEditorPostsInput -export import DirectorCreateOneWithoutMoviesInput = Prisma.DirectorCreateOneWithoutMoviesInput -export import DirectorUpdateOneRequiredWithoutMoviesInput = Prisma.DirectorUpdateOneRequiredWithoutMoviesInput -export import MovieCreateManyWithoutDirectorInput = Prisma.MovieCreateManyWithoutDirectorInput -export import MovieUpdateManyWithoutDirectorInput = Prisma.MovieUpdateManyWithoutDirectorInput -export import CreatorCreateManyWithoutLikesInput = Prisma.CreatorCreateManyWithoutLikesInput -export import CreatorCreateOneWithoutProblemsInput = Prisma.CreatorCreateOneWithoutProblemsInput -export import CreatorUpdateManyWithoutLikesInput = Prisma.CreatorUpdateManyWithoutLikesInput -export import CreatorUpdateOneWithoutProblemsInput = Prisma.CreatorUpdateOneWithoutProblemsInput -export import ProblemCreateManyWithoutLikedByInput = Prisma.ProblemCreateManyWithoutLikedByInput -export import ProblemCreateManyWithoutCreatorInput = Prisma.ProblemCreateManyWithoutCreatorInput -export import ProblemUpdateManyWithoutLikedByInput = Prisma.ProblemUpdateManyWithoutLikedByInput -export import ProblemUpdateManyWithoutCreatorInput = Prisma.ProblemUpdateManyWithoutCreatorInput -export import NestedIntFilter = Prisma.NestedIntFilter -export import NestedStringFilter = Prisma.NestedStringFilter -export import NestedStringNullableFilter = Prisma.NestedStringNullableFilter -export import NestedFloatFilter = Prisma.NestedFloatFilter -export import NestedEnumRoleFilter = Prisma.NestedEnumRoleFilter -export import NestedDateTimeFilter = Prisma.NestedDateTimeFilter -export import NestedBoolFilter = Prisma.NestedBoolFilter -export import NestedIntNullableFilter = Prisma.NestedIntNullableFilter -export import NestedEnumPostKindNullableFilter = Prisma.NestedEnumPostKindNullableFilter -export import postCreateWithoutAuthorInput = Prisma.postCreateWithoutAuthorInput -export import postCreateOrConnectWithoutauthorInput = Prisma.postCreateOrConnectWithoutauthorInput -export import postCreateWithoutEditorInput = Prisma.postCreateWithoutEditorInput -export import postCreateOrConnectWithouteditorInput = Prisma.postCreateOrConnectWithouteditorInput -export import postUpdateWithWhereUniqueWithoutAuthorInput = Prisma.postUpdateWithWhereUniqueWithoutAuthorInput -export import postUpdateManyWithWhereWithoutAuthorInput = Prisma.postUpdateManyWithWhereWithoutAuthorInput -export import postScalarWhereInput = Prisma.postScalarWhereInput -export import postUpsertWithWhereUniqueWithoutAuthorInput = Prisma.postUpsertWithWhereUniqueWithoutAuthorInput -export import postUpdateWithWhereUniqueWithoutEditorInput = Prisma.postUpdateWithWhereUniqueWithoutEditorInput -export import postUpdateManyWithWhereWithoutEditorInput = Prisma.postUpdateManyWithWhereWithoutEditorInput -export import postUpsertWithWhereUniqueWithoutEditorInput = Prisma.postUpsertWithWhereUniqueWithoutEditorInput -export import UserCreateWithoutPostsInput = Prisma.UserCreateWithoutPostsInput -export import UserCreateOrConnectWithoutpostsInput = Prisma.UserCreateOrConnectWithoutpostsInput -export import UserCreateWithoutEditorPostsInput = Prisma.UserCreateWithoutEditorPostsInput -export import UserCreateOrConnectWithouteditorPostsInput = Prisma.UserCreateOrConnectWithouteditorPostsInput -export import UserUpdateWithoutPostsInput = Prisma.UserUpdateWithoutPostsInput -export import UserUpsertWithoutPostsInput = Prisma.UserUpsertWithoutPostsInput -export import UserUpdateWithoutEditorPostsInput = Prisma.UserUpdateWithoutEditorPostsInput -export import UserUpsertWithoutEditorPostsInput = Prisma.UserUpsertWithoutEditorPostsInput -export import DirectorCreateWithoutMoviesInput = Prisma.DirectorCreateWithoutMoviesInput -export import DirectorCreateOrConnectWithoutmoviesInput = Prisma.DirectorCreateOrConnectWithoutmoviesInput -export import DirectorUpdateWithoutMoviesInput = Prisma.DirectorUpdateWithoutMoviesInput -export import DirectorUpsertWithoutMoviesInput = Prisma.DirectorUpsertWithoutMoviesInput -export import MovieCreateWithoutDirectorInput = Prisma.MovieCreateWithoutDirectorInput -export import MovieCreateOrConnectWithoutdirectorInput = Prisma.MovieCreateOrConnectWithoutdirectorInput -export import MovieUpdateWithWhereUniqueWithoutDirectorInput = Prisma.MovieUpdateWithWhereUniqueWithoutDirectorInput -export import MovieUpdateManyWithWhereWithoutDirectorInput = Prisma.MovieUpdateManyWithWhereWithoutDirectorInput -export import MovieScalarWhereInput = Prisma.MovieScalarWhereInput -export import MovieUpsertWithWhereUniqueWithoutDirectorInput = Prisma.MovieUpsertWithWhereUniqueWithoutDirectorInput -export import CreatorCreateWithoutLikesInput = Prisma.CreatorCreateWithoutLikesInput -export import CreatorCreateOrConnectWithoutlikesInput = Prisma.CreatorCreateOrConnectWithoutlikesInput -export import CreatorCreateWithoutProblemsInput = Prisma.CreatorCreateWithoutProblemsInput -export import CreatorCreateOrConnectWithoutproblemsInput = Prisma.CreatorCreateOrConnectWithoutproblemsInput -export import CreatorUpdateWithWhereUniqueWithoutLikesInput = Prisma.CreatorUpdateWithWhereUniqueWithoutLikesInput -export import CreatorUpdateManyWithWhereWithoutLikesInput = Prisma.CreatorUpdateManyWithWhereWithoutLikesInput -export import CreatorScalarWhereInput = Prisma.CreatorScalarWhereInput -export import CreatorUpsertWithWhereUniqueWithoutLikesInput = Prisma.CreatorUpsertWithWhereUniqueWithoutLikesInput -export import CreatorUpdateWithoutProblemsInput = Prisma.CreatorUpdateWithoutProblemsInput -export import CreatorUpsertWithoutProblemsInput = Prisma.CreatorUpsertWithoutProblemsInput -export import ProblemCreateWithoutLikedByInput = Prisma.ProblemCreateWithoutLikedByInput -export import ProblemCreateOrConnectWithoutlikedByInput = Prisma.ProblemCreateOrConnectWithoutlikedByInput -export import ProblemCreateWithoutCreatorInput = Prisma.ProblemCreateWithoutCreatorInput -export import ProblemCreateOrConnectWithoutcreatorInput = Prisma.ProblemCreateOrConnectWithoutcreatorInput -export import ProblemUpdateWithWhereUniqueWithoutLikedByInput = Prisma.ProblemUpdateWithWhereUniqueWithoutLikedByInput -export import ProblemUpdateManyWithWhereWithoutLikedByInput = Prisma.ProblemUpdateManyWithWhereWithoutLikedByInput -export import ProblemScalarWhereInput = Prisma.ProblemScalarWhereInput -export import ProblemUpsertWithWhereUniqueWithoutLikedByInput = Prisma.ProblemUpsertWithWhereUniqueWithoutLikedByInput -export import ProblemUpdateWithWhereUniqueWithoutCreatorInput = Prisma.ProblemUpdateWithWhereUniqueWithoutCreatorInput -export import ProblemUpdateManyWithWhereWithoutCreatorInput = Prisma.ProblemUpdateManyWithWhereWithoutCreatorInput -export import ProblemUpsertWithWhereUniqueWithoutCreatorInput = Prisma.ProblemUpsertWithWhereUniqueWithoutCreatorInput -export import postUpdateWithoutAuthorInput = Prisma.postUpdateWithoutAuthorInput -export import postUpdateWithoutEditorInput = Prisma.postUpdateWithoutEditorInput -export import MovieUpdateWithoutDirectorInput = Prisma.MovieUpdateWithoutDirectorInput -export import CreatorUpdateWithoutLikesInput = Prisma.CreatorUpdateWithoutLikesInput -export import ProblemUpdateWithoutLikedByInput = Prisma.ProblemUpdateWithoutLikedByInput -export import ProblemUpdateWithoutCreatorInput = Prisma.ProblemUpdateWithoutCreatorInput \ No newline at end of file + +/** + * @deprecated Renamed to `Prisma.UserDistinctFieldEnum` + */ +export type UserDistinctFieldEnum = Prisma.UserDistinctFieldEnum + +/** + * @deprecated Renamed to `Prisma.PostDistinctFieldEnum` + */ +export type PostDistinctFieldEnum = Prisma.PostDistinctFieldEnum + +/** + * @deprecated Renamed to `Prisma.CategoryDistinctFieldEnum` + */ +export type CategoryDistinctFieldEnum = Prisma.CategoryDistinctFieldEnum + +/** + * @deprecated Renamed to `Prisma.PatientDistinctFieldEnum` + */ +export type PatientDistinctFieldEnum = Prisma.PatientDistinctFieldEnum + +/** + * @deprecated Renamed to `Prisma.MovieDistinctFieldEnum` + */ +export type MovieDistinctFieldEnum = Prisma.MovieDistinctFieldEnum + +/** + * @deprecated Renamed to `Prisma.DirectorDistinctFieldEnum` + */ +export type DirectorDistinctFieldEnum = Prisma.DirectorDistinctFieldEnum + +/** + * @deprecated Renamed to `Prisma.ProblemDistinctFieldEnum` + */ +export type ProblemDistinctFieldEnum = Prisma.ProblemDistinctFieldEnum + +/** + * @deprecated Renamed to `Prisma.CreatorDistinctFieldEnum` + */ +export type CreatorDistinctFieldEnum = Prisma.CreatorDistinctFieldEnum + +/** + * @deprecated Renamed to `Prisma.SortOrder` + */ +export type SortOrder = Prisma.SortOrder + +/** + * @deprecated Renamed to `Prisma.QueryMode` + */ +export type QueryMode = Prisma.QueryMode + +/** + * @deprecated Renamed to `Prisma.ModelName` + */ +export type ModelName = Prisma.ModelName + +/** + * @deprecated Renamed to `Prisma.AggregateUser` + */ +export type AggregateUser = Prisma.AggregateUser + +/** + * @deprecated Renamed to `Prisma.UserAvgAggregateOutputType` + */ +export type UserAvgAggregateOutputType = Prisma.UserAvgAggregateOutputType + +/** + * @deprecated Renamed to `Prisma.UserSumAggregateOutputType` + */ +export type UserSumAggregateOutputType = Prisma.UserSumAggregateOutputType + +/** + * @deprecated Renamed to `Prisma.UserMinAggregateOutputType` + */ +export type UserMinAggregateOutputType = Prisma.UserMinAggregateOutputType + +/** + * @deprecated Renamed to `Prisma.UserMaxAggregateOutputType` + */ +export type UserMaxAggregateOutputType = Prisma.UserMaxAggregateOutputType + +/** + * @deprecated Renamed to `Prisma.AggregateUserArgs` + */ +export type AggregateUserArgs = Prisma.AggregateUserArgs + +/** + * @deprecated Renamed to `Prisma.UserAvgAggregateInputType` + */ +export type UserAvgAggregateInputType = Prisma.UserAvgAggregateInputType + +/** + * @deprecated Renamed to `Prisma.UserSumAggregateInputType` + */ +export type UserSumAggregateInputType = Prisma.UserSumAggregateInputType + +/** + * @deprecated Renamed to `Prisma.UserMinAggregateInputType` + */ +export type UserMinAggregateInputType = Prisma.UserMinAggregateInputType + +/** + * @deprecated Renamed to `Prisma.UserMaxAggregateInputType` + */ +export type UserMaxAggregateInputType = Prisma.UserMaxAggregateInputType + +/** + * @deprecated Renamed to `Prisma.UserSelect` + */ +export type UserSelect = Prisma.UserSelect + +/** + * @deprecated Renamed to `Prisma.UserInclude` + */ +export type UserInclude = Prisma.UserInclude + +/** + * @deprecated Renamed to `Prisma.FindUniqueUserArgs` + */ +export type FindUniqueUserArgs = Prisma.FindUniqueUserArgs + +/** + * @deprecated Renamed to `Prisma.FindFirstUserArgs` + */ +export type FindFirstUserArgs = Prisma.FindFirstUserArgs + +/** + * @deprecated Renamed to `Prisma.FindManyUserArgs` + */ +export type FindManyUserArgs = Prisma.FindManyUserArgs + +/** + * @deprecated Renamed to `Prisma.UserCreateArgs` + */ +export type UserCreateArgs = Prisma.UserCreateArgs + +/** + * @deprecated Renamed to `Prisma.UserUpdateArgs` + */ +export type UserUpdateArgs = Prisma.UserUpdateArgs + +/** + * @deprecated Renamed to `Prisma.UserUpdateManyArgs` + */ +export type UserUpdateManyArgs = Prisma.UserUpdateManyArgs + +/** + * @deprecated Renamed to `Prisma.UserUpsertArgs` + */ +export type UserUpsertArgs = Prisma.UserUpsertArgs + +/** + * @deprecated Renamed to `Prisma.UserDeleteArgs` + */ +export type UserDeleteArgs = Prisma.UserDeleteArgs + +/** + * @deprecated Renamed to `Prisma.UserDeleteManyArgs` + */ +export type UserDeleteManyArgs = Prisma.UserDeleteManyArgs + +/** + * @deprecated Renamed to `Prisma.AggregatePost` + */ +export type AggregatePost = Prisma.AggregatePost + +/** + * @deprecated Renamed to `Prisma.PostAvgAggregateOutputType` + */ +export type PostAvgAggregateOutputType = Prisma.PostAvgAggregateOutputType + +/** + * @deprecated Renamed to `Prisma.PostSumAggregateOutputType` + */ +export type PostSumAggregateOutputType = Prisma.PostSumAggregateOutputType + +/** + * @deprecated Renamed to `Prisma.PostMinAggregateOutputType` + */ +export type PostMinAggregateOutputType = Prisma.PostMinAggregateOutputType + +/** + * @deprecated Renamed to `Prisma.PostMaxAggregateOutputType` + */ +export type PostMaxAggregateOutputType = Prisma.PostMaxAggregateOutputType + +/** + * @deprecated Renamed to `Prisma.AggregatePostArgs` + */ +export type AggregatePostArgs = Prisma.AggregatePostArgs + +/** + * @deprecated Renamed to `Prisma.PostAvgAggregateInputType` + */ +export type PostAvgAggregateInputType = Prisma.PostAvgAggregateInputType + +/** + * @deprecated Renamed to `Prisma.PostSumAggregateInputType` + */ +export type PostSumAggregateInputType = Prisma.PostSumAggregateInputType + +/** + * @deprecated Renamed to `Prisma.PostMinAggregateInputType` + */ +export type PostMinAggregateInputType = Prisma.PostMinAggregateInputType + +/** + * @deprecated Renamed to `Prisma.PostMaxAggregateInputType` + */ +export type PostMaxAggregateInputType = Prisma.PostMaxAggregateInputType + +/** + * @deprecated Renamed to `Prisma.postSelect` + */ +export type postSelect = Prisma.postSelect + +/** + * @deprecated Renamed to `Prisma.postInclude` + */ +export type postInclude = Prisma.postInclude + +/** + * @deprecated Renamed to `Prisma.FindUniquepostArgs` + */ +export type FindUniquepostArgs = Prisma.FindUniquepostArgs + +/** + * @deprecated Renamed to `Prisma.FindFirstpostArgs` + */ +export type FindFirstpostArgs = Prisma.FindFirstpostArgs + +/** + * @deprecated Renamed to `Prisma.FindManypostArgs` + */ +export type FindManypostArgs = Prisma.FindManypostArgs + +/** + * @deprecated Renamed to `Prisma.postCreateArgs` + */ +export type postCreateArgs = Prisma.postCreateArgs + +/** + * @deprecated Renamed to `Prisma.postUpdateArgs` + */ +export type postUpdateArgs = Prisma.postUpdateArgs + +/** + * @deprecated Renamed to `Prisma.postUpdateManyArgs` + */ +export type postUpdateManyArgs = Prisma.postUpdateManyArgs + +/** + * @deprecated Renamed to `Prisma.postUpsertArgs` + */ +export type postUpsertArgs = Prisma.postUpsertArgs + +/** + * @deprecated Renamed to `Prisma.postDeleteArgs` + */ +export type postDeleteArgs = Prisma.postDeleteArgs + +/** + * @deprecated Renamed to `Prisma.postDeleteManyArgs` + */ +export type postDeleteManyArgs = Prisma.postDeleteManyArgs + +/** + * @deprecated Renamed to `Prisma.AggregateCategory` + */ +export type AggregateCategory = Prisma.AggregateCategory + +/** + * @deprecated Renamed to `Prisma.CategoryAvgAggregateOutputType` + */ +export type CategoryAvgAggregateOutputType = Prisma.CategoryAvgAggregateOutputType + +/** + * @deprecated Renamed to `Prisma.CategorySumAggregateOutputType` + */ +export type CategorySumAggregateOutputType = Prisma.CategorySumAggregateOutputType + +/** + * @deprecated Renamed to `Prisma.CategoryMinAggregateOutputType` + */ +export type CategoryMinAggregateOutputType = Prisma.CategoryMinAggregateOutputType + +/** + * @deprecated Renamed to `Prisma.CategoryMaxAggregateOutputType` + */ +export type CategoryMaxAggregateOutputType = Prisma.CategoryMaxAggregateOutputType + +/** + * @deprecated Renamed to `Prisma.AggregateCategoryArgs` + */ +export type AggregateCategoryArgs = Prisma.AggregateCategoryArgs + +/** + * @deprecated Renamed to `Prisma.CategoryAvgAggregateInputType` + */ +export type CategoryAvgAggregateInputType = Prisma.CategoryAvgAggregateInputType + +/** + * @deprecated Renamed to `Prisma.CategorySumAggregateInputType` + */ +export type CategorySumAggregateInputType = Prisma.CategorySumAggregateInputType + +/** + * @deprecated Renamed to `Prisma.CategoryMinAggregateInputType` + */ +export type CategoryMinAggregateInputType = Prisma.CategoryMinAggregateInputType + +/** + * @deprecated Renamed to `Prisma.CategoryMaxAggregateInputType` + */ +export type CategoryMaxAggregateInputType = Prisma.CategoryMaxAggregateInputType + +/** + * @deprecated Renamed to `Prisma.CategorySelect` + */ +export type CategorySelect = Prisma.CategorySelect + +/** + * @deprecated Renamed to `Prisma.FindUniqueCategoryArgs` + */ +export type FindUniqueCategoryArgs = Prisma.FindUniqueCategoryArgs + +/** + * @deprecated Renamed to `Prisma.FindFirstCategoryArgs` + */ +export type FindFirstCategoryArgs = Prisma.FindFirstCategoryArgs + +/** + * @deprecated Renamed to `Prisma.FindManyCategoryArgs` + */ +export type FindManyCategoryArgs = Prisma.FindManyCategoryArgs + +/** + * @deprecated Renamed to `Prisma.CategoryCreateArgs` + */ +export type CategoryCreateArgs = Prisma.CategoryCreateArgs + +/** + * @deprecated Renamed to `Prisma.CategoryUpdateArgs` + */ +export type CategoryUpdateArgs = Prisma.CategoryUpdateArgs + +/** + * @deprecated Renamed to `Prisma.CategoryUpdateManyArgs` + */ +export type CategoryUpdateManyArgs = Prisma.CategoryUpdateManyArgs + +/** + * @deprecated Renamed to `Prisma.CategoryUpsertArgs` + */ +export type CategoryUpsertArgs = Prisma.CategoryUpsertArgs + +/** + * @deprecated Renamed to `Prisma.CategoryDeleteArgs` + */ +export type CategoryDeleteArgs = Prisma.CategoryDeleteArgs + +/** + * @deprecated Renamed to `Prisma.CategoryDeleteManyArgs` + */ +export type CategoryDeleteManyArgs = Prisma.CategoryDeleteManyArgs + +/** + * @deprecated Renamed to `Prisma.AggregatePatient` + */ +export type AggregatePatient = Prisma.AggregatePatient + +/** + * @deprecated Renamed to `Prisma.AggregatePatientArgs` + */ +export type AggregatePatientArgs = Prisma.AggregatePatientArgs + +/** + * @deprecated Renamed to `Prisma.PatientSelect` + */ +export type PatientSelect = Prisma.PatientSelect + +/** + * @deprecated Renamed to `Prisma.FindUniquePatientArgs` + */ +export type FindUniquePatientArgs = Prisma.FindUniquePatientArgs + +/** + * @deprecated Renamed to `Prisma.FindFirstPatientArgs` + */ +export type FindFirstPatientArgs = Prisma.FindFirstPatientArgs + +/** + * @deprecated Renamed to `Prisma.FindManyPatientArgs` + */ +export type FindManyPatientArgs = Prisma.FindManyPatientArgs + +/** + * @deprecated Renamed to `Prisma.PatientCreateArgs` + */ +export type PatientCreateArgs = Prisma.PatientCreateArgs + +/** + * @deprecated Renamed to `Prisma.PatientUpdateArgs` + */ +export type PatientUpdateArgs = Prisma.PatientUpdateArgs + +/** + * @deprecated Renamed to `Prisma.PatientUpdateManyArgs` + */ +export type PatientUpdateManyArgs = Prisma.PatientUpdateManyArgs + +/** + * @deprecated Renamed to `Prisma.PatientUpsertArgs` + */ +export type PatientUpsertArgs = Prisma.PatientUpsertArgs + +/** + * @deprecated Renamed to `Prisma.PatientDeleteArgs` + */ +export type PatientDeleteArgs = Prisma.PatientDeleteArgs + +/** + * @deprecated Renamed to `Prisma.PatientDeleteManyArgs` + */ +export type PatientDeleteManyArgs = Prisma.PatientDeleteManyArgs + +/** + * @deprecated Renamed to `Prisma.AggregateMovie` + */ +export type AggregateMovie = Prisma.AggregateMovie + +/** + * @deprecated Renamed to `Prisma.AggregateMovieArgs` + */ +export type AggregateMovieArgs = Prisma.AggregateMovieArgs + +/** + * @deprecated Renamed to `Prisma.MovieSelect` + */ +export type MovieSelect = Prisma.MovieSelect + +/** + * @deprecated Renamed to `Prisma.MovieInclude` + */ +export type MovieInclude = Prisma.MovieInclude + +/** + * @deprecated Renamed to `Prisma.FindUniqueMovieArgs` + */ +export type FindUniqueMovieArgs = Prisma.FindUniqueMovieArgs + +/** + * @deprecated Renamed to `Prisma.FindFirstMovieArgs` + */ +export type FindFirstMovieArgs = Prisma.FindFirstMovieArgs + +/** + * @deprecated Renamed to `Prisma.FindManyMovieArgs` + */ +export type FindManyMovieArgs = Prisma.FindManyMovieArgs + +/** + * @deprecated Renamed to `Prisma.MovieCreateArgs` + */ +export type MovieCreateArgs = Prisma.MovieCreateArgs + +/** + * @deprecated Renamed to `Prisma.MovieUpdateArgs` + */ +export type MovieUpdateArgs = Prisma.MovieUpdateArgs + +/** + * @deprecated Renamed to `Prisma.MovieUpdateManyArgs` + */ +export type MovieUpdateManyArgs = Prisma.MovieUpdateManyArgs + +/** + * @deprecated Renamed to `Prisma.MovieUpsertArgs` + */ +export type MovieUpsertArgs = Prisma.MovieUpsertArgs + +/** + * @deprecated Renamed to `Prisma.MovieDeleteArgs` + */ +export type MovieDeleteArgs = Prisma.MovieDeleteArgs + +/** + * @deprecated Renamed to `Prisma.MovieDeleteManyArgs` + */ +export type MovieDeleteManyArgs = Prisma.MovieDeleteManyArgs + +/** + * @deprecated Renamed to `Prisma.AggregateDirector` + */ +export type AggregateDirector = Prisma.AggregateDirector + +/** + * @deprecated Renamed to `Prisma.AggregateDirectorArgs` + */ +export type AggregateDirectorArgs = Prisma.AggregateDirectorArgs + +/** + * @deprecated Renamed to `Prisma.DirectorSelect` + */ +export type DirectorSelect = Prisma.DirectorSelect + +/** + * @deprecated Renamed to `Prisma.DirectorInclude` + */ +export type DirectorInclude = Prisma.DirectorInclude + +/** + * @deprecated Renamed to `Prisma.FindUniqueDirectorArgs` + */ +export type FindUniqueDirectorArgs = Prisma.FindUniqueDirectorArgs + +/** + * @deprecated Renamed to `Prisma.FindFirstDirectorArgs` + */ +export type FindFirstDirectorArgs = Prisma.FindFirstDirectorArgs + +/** + * @deprecated Renamed to `Prisma.FindManyDirectorArgs` + */ +export type FindManyDirectorArgs = Prisma.FindManyDirectorArgs + +/** + * @deprecated Renamed to `Prisma.DirectorCreateArgs` + */ +export type DirectorCreateArgs = Prisma.DirectorCreateArgs + +/** + * @deprecated Renamed to `Prisma.DirectorUpdateArgs` + */ +export type DirectorUpdateArgs = Prisma.DirectorUpdateArgs + +/** + * @deprecated Renamed to `Prisma.DirectorUpdateManyArgs` + */ +export type DirectorUpdateManyArgs = Prisma.DirectorUpdateManyArgs + +/** + * @deprecated Renamed to `Prisma.DirectorUpsertArgs` + */ +export type DirectorUpsertArgs = Prisma.DirectorUpsertArgs + +/** + * @deprecated Renamed to `Prisma.DirectorDeleteArgs` + */ +export type DirectorDeleteArgs = Prisma.DirectorDeleteArgs + +/** + * @deprecated Renamed to `Prisma.DirectorDeleteManyArgs` + */ +export type DirectorDeleteManyArgs = Prisma.DirectorDeleteManyArgs + +/** + * @deprecated Renamed to `Prisma.AggregateProblem` + */ +export type AggregateProblem = Prisma.AggregateProblem + +/** + * @deprecated Renamed to `Prisma.ProblemAvgAggregateOutputType` + */ +export type ProblemAvgAggregateOutputType = Prisma.ProblemAvgAggregateOutputType + +/** + * @deprecated Renamed to `Prisma.ProblemSumAggregateOutputType` + */ +export type ProblemSumAggregateOutputType = Prisma.ProblemSumAggregateOutputType + +/** + * @deprecated Renamed to `Prisma.ProblemMinAggregateOutputType` + */ +export type ProblemMinAggregateOutputType = Prisma.ProblemMinAggregateOutputType + +/** + * @deprecated Renamed to `Prisma.ProblemMaxAggregateOutputType` + */ +export type ProblemMaxAggregateOutputType = Prisma.ProblemMaxAggregateOutputType + +/** + * @deprecated Renamed to `Prisma.AggregateProblemArgs` + */ +export type AggregateProblemArgs = Prisma.AggregateProblemArgs + +/** + * @deprecated Renamed to `Prisma.ProblemAvgAggregateInputType` + */ +export type ProblemAvgAggregateInputType = Prisma.ProblemAvgAggregateInputType + +/** + * @deprecated Renamed to `Prisma.ProblemSumAggregateInputType` + */ +export type ProblemSumAggregateInputType = Prisma.ProblemSumAggregateInputType + +/** + * @deprecated Renamed to `Prisma.ProblemMinAggregateInputType` + */ +export type ProblemMinAggregateInputType = Prisma.ProblemMinAggregateInputType + +/** + * @deprecated Renamed to `Prisma.ProblemMaxAggregateInputType` + */ +export type ProblemMaxAggregateInputType = Prisma.ProblemMaxAggregateInputType + +/** + * @deprecated Renamed to `Prisma.ProblemSelect` + */ +export type ProblemSelect = Prisma.ProblemSelect + +/** + * @deprecated Renamed to `Prisma.ProblemInclude` + */ +export type ProblemInclude = Prisma.ProblemInclude + +/** + * @deprecated Renamed to `Prisma.FindUniqueProblemArgs` + */ +export type FindUniqueProblemArgs = Prisma.FindUniqueProblemArgs + +/** + * @deprecated Renamed to `Prisma.FindFirstProblemArgs` + */ +export type FindFirstProblemArgs = Prisma.FindFirstProblemArgs + +/** + * @deprecated Renamed to `Prisma.FindManyProblemArgs` + */ +export type FindManyProblemArgs = Prisma.FindManyProblemArgs + +/** + * @deprecated Renamed to `Prisma.ProblemCreateArgs` + */ +export type ProblemCreateArgs = Prisma.ProblemCreateArgs + +/** + * @deprecated Renamed to `Prisma.ProblemUpdateArgs` + */ +export type ProblemUpdateArgs = Prisma.ProblemUpdateArgs + +/** + * @deprecated Renamed to `Prisma.ProblemUpdateManyArgs` + */ +export type ProblemUpdateManyArgs = Prisma.ProblemUpdateManyArgs + +/** + * @deprecated Renamed to `Prisma.ProblemUpsertArgs` + */ +export type ProblemUpsertArgs = Prisma.ProblemUpsertArgs + +/** + * @deprecated Renamed to `Prisma.ProblemDeleteArgs` + */ +export type ProblemDeleteArgs = Prisma.ProblemDeleteArgs + +/** + * @deprecated Renamed to `Prisma.ProblemDeleteManyArgs` + */ +export type ProblemDeleteManyArgs = Prisma.ProblemDeleteManyArgs + +/** + * @deprecated Renamed to `Prisma.AggregateCreator` + */ +export type AggregateCreator = Prisma.AggregateCreator + +/** + * @deprecated Renamed to `Prisma.CreatorAvgAggregateOutputType` + */ +export type CreatorAvgAggregateOutputType = Prisma.CreatorAvgAggregateOutputType + +/** + * @deprecated Renamed to `Prisma.CreatorSumAggregateOutputType` + */ +export type CreatorSumAggregateOutputType = Prisma.CreatorSumAggregateOutputType + +/** + * @deprecated Renamed to `Prisma.CreatorMinAggregateOutputType` + */ +export type CreatorMinAggregateOutputType = Prisma.CreatorMinAggregateOutputType + +/** + * @deprecated Renamed to `Prisma.CreatorMaxAggregateOutputType` + */ +export type CreatorMaxAggregateOutputType = Prisma.CreatorMaxAggregateOutputType + +/** + * @deprecated Renamed to `Prisma.AggregateCreatorArgs` + */ +export type AggregateCreatorArgs = Prisma.AggregateCreatorArgs + +/** + * @deprecated Renamed to `Prisma.CreatorAvgAggregateInputType` + */ +export type CreatorAvgAggregateInputType = Prisma.CreatorAvgAggregateInputType + +/** + * @deprecated Renamed to `Prisma.CreatorSumAggregateInputType` + */ +export type CreatorSumAggregateInputType = Prisma.CreatorSumAggregateInputType + +/** + * @deprecated Renamed to `Prisma.CreatorMinAggregateInputType` + */ +export type CreatorMinAggregateInputType = Prisma.CreatorMinAggregateInputType + +/** + * @deprecated Renamed to `Prisma.CreatorMaxAggregateInputType` + */ +export type CreatorMaxAggregateInputType = Prisma.CreatorMaxAggregateInputType + +/** + * @deprecated Renamed to `Prisma.CreatorSelect` + */ +export type CreatorSelect = Prisma.CreatorSelect + +/** + * @deprecated Renamed to `Prisma.CreatorInclude` + */ +export type CreatorInclude = Prisma.CreatorInclude + +/** + * @deprecated Renamed to `Prisma.FindUniqueCreatorArgs` + */ +export type FindUniqueCreatorArgs = Prisma.FindUniqueCreatorArgs + +/** + * @deprecated Renamed to `Prisma.FindFirstCreatorArgs` + */ +export type FindFirstCreatorArgs = Prisma.FindFirstCreatorArgs + +/** + * @deprecated Renamed to `Prisma.FindManyCreatorArgs` + */ +export type FindManyCreatorArgs = Prisma.FindManyCreatorArgs + +/** + * @deprecated Renamed to `Prisma.CreatorCreateArgs` + */ +export type CreatorCreateArgs = Prisma.CreatorCreateArgs + +/** + * @deprecated Renamed to `Prisma.CreatorUpdateArgs` + */ +export type CreatorUpdateArgs = Prisma.CreatorUpdateArgs + +/** + * @deprecated Renamed to `Prisma.CreatorUpdateManyArgs` + */ +export type CreatorUpdateManyArgs = Prisma.CreatorUpdateManyArgs + +/** + * @deprecated Renamed to `Prisma.CreatorUpsertArgs` + */ +export type CreatorUpsertArgs = Prisma.CreatorUpsertArgs + +/** + * @deprecated Renamed to `Prisma.CreatorDeleteArgs` + */ +export type CreatorDeleteArgs = Prisma.CreatorDeleteArgs + +/** + * @deprecated Renamed to `Prisma.CreatorDeleteManyArgs` + */ +export type CreatorDeleteManyArgs = Prisma.CreatorDeleteManyArgs + +/** + * @deprecated Renamed to `Prisma.UserWhereInput` + */ +export type UserWhereInput = Prisma.UserWhereInput + +/** + * @deprecated Renamed to `Prisma.UserOrderByInput` + */ +export type UserOrderByInput = Prisma.UserOrderByInput + +/** + * @deprecated Renamed to `Prisma.UserWhereUniqueInput` + */ +export type UserWhereUniqueInput = Prisma.UserWhereUniqueInput + +/** + * @deprecated Renamed to `Prisma.postWhereInput` + */ +export type postWhereInput = Prisma.postWhereInput + +/** + * @deprecated Renamed to `Prisma.postOrderByInput` + */ +export type postOrderByInput = Prisma.postOrderByInput + +/** + * @deprecated Renamed to `Prisma.postWhereUniqueInput` + */ +export type postWhereUniqueInput = Prisma.postWhereUniqueInput + +/** + * @deprecated Renamed to `Prisma.CategoryWhereInput` + */ +export type CategoryWhereInput = Prisma.CategoryWhereInput + +/** + * @deprecated Renamed to `Prisma.CategoryOrderByInput` + */ +export type CategoryOrderByInput = Prisma.CategoryOrderByInput + +/** + * @deprecated Renamed to `Prisma.CategoryWhereUniqueInput` + */ +export type CategoryWhereUniqueInput = Prisma.CategoryWhereUniqueInput + +/** + * @deprecated Renamed to `Prisma.PatientWhereInput` + */ +export type PatientWhereInput = Prisma.PatientWhereInput + +/** + * @deprecated Renamed to `Prisma.PatientOrderByInput` + */ +export type PatientOrderByInput = Prisma.PatientOrderByInput + +/** + * @deprecated Renamed to `Prisma.PatientWhereUniqueInput` + */ +export type PatientWhereUniqueInput = Prisma.PatientWhereUniqueInput + +/** + * @deprecated Renamed to `Prisma.MovieWhereInput` + */ +export type MovieWhereInput = Prisma.MovieWhereInput + +/** + * @deprecated Renamed to `Prisma.MovieOrderByInput` + */ +export type MovieOrderByInput = Prisma.MovieOrderByInput + +/** + * @deprecated Renamed to `Prisma.MovieWhereUniqueInput` + */ +export type MovieWhereUniqueInput = Prisma.MovieWhereUniqueInput + +/** + * @deprecated Renamed to `Prisma.DirectorWhereInput` + */ +export type DirectorWhereInput = Prisma.DirectorWhereInput + +/** + * @deprecated Renamed to `Prisma.DirectorOrderByInput` + */ +export type DirectorOrderByInput = Prisma.DirectorOrderByInput + +/** + * @deprecated Renamed to `Prisma.DirectorWhereUniqueInput` + */ +export type DirectorWhereUniqueInput = Prisma.DirectorWhereUniqueInput + +/** + * @deprecated Renamed to `Prisma.ProblemWhereInput` + */ +export type ProblemWhereInput = Prisma.ProblemWhereInput + +/** + * @deprecated Renamed to `Prisma.ProblemOrderByInput` + */ +export type ProblemOrderByInput = Prisma.ProblemOrderByInput + +/** + * @deprecated Renamed to `Prisma.ProblemWhereUniqueInput` + */ +export type ProblemWhereUniqueInput = Prisma.ProblemWhereUniqueInput + +/** + * @deprecated Renamed to `Prisma.CreatorWhereInput` + */ +export type CreatorWhereInput = Prisma.CreatorWhereInput + +/** + * @deprecated Renamed to `Prisma.CreatorOrderByInput` + */ +export type CreatorOrderByInput = Prisma.CreatorOrderByInput + +/** + * @deprecated Renamed to `Prisma.CreatorWhereUniqueInput` + */ +export type CreatorWhereUniqueInput = Prisma.CreatorWhereUniqueInput + +/** + * @deprecated Renamed to `Prisma.UserCreateInput` + */ +export type UserCreateInput = Prisma.UserCreateInput + +/** + * @deprecated Renamed to `Prisma.UserUpdateInput` + */ +export type UserUpdateInput = Prisma.UserUpdateInput + +/** + * @deprecated Renamed to `Prisma.UserUpdateManyMutationInput` + */ +export type UserUpdateManyMutationInput = Prisma.UserUpdateManyMutationInput + +/** + * @deprecated Renamed to `Prisma.postCreateInput` + */ +export type postCreateInput = Prisma.postCreateInput + +/** + * @deprecated Renamed to `Prisma.postUpdateInput` + */ +export type postUpdateInput = Prisma.postUpdateInput + +/** + * @deprecated Renamed to `Prisma.postUpdateManyMutationInput` + */ +export type postUpdateManyMutationInput = Prisma.postUpdateManyMutationInput + +/** + * @deprecated Renamed to `Prisma.CategoryCreateInput` + */ +export type CategoryCreateInput = Prisma.CategoryCreateInput + +/** + * @deprecated Renamed to `Prisma.CategoryUpdateInput` + */ +export type CategoryUpdateInput = Prisma.CategoryUpdateInput + +/** + * @deprecated Renamed to `Prisma.CategoryUpdateManyMutationInput` + */ +export type CategoryUpdateManyMutationInput = Prisma.CategoryUpdateManyMutationInput + +/** + * @deprecated Renamed to `Prisma.PatientCreateInput` + */ +export type PatientCreateInput = Prisma.PatientCreateInput + +/** + * @deprecated Renamed to `Prisma.PatientUpdateInput` + */ +export type PatientUpdateInput = Prisma.PatientUpdateInput + +/** + * @deprecated Renamed to `Prisma.PatientUpdateManyMutationInput` + */ +export type PatientUpdateManyMutationInput = Prisma.PatientUpdateManyMutationInput + +/** + * @deprecated Renamed to `Prisma.MovieCreateInput` + */ +export type MovieCreateInput = Prisma.MovieCreateInput + +/** + * @deprecated Renamed to `Prisma.MovieUpdateInput` + */ +export type MovieUpdateInput = Prisma.MovieUpdateInput + +/** + * @deprecated Renamed to `Prisma.MovieUpdateManyMutationInput` + */ +export type MovieUpdateManyMutationInput = Prisma.MovieUpdateManyMutationInput + +/** + * @deprecated Renamed to `Prisma.DirectorCreateInput` + */ +export type DirectorCreateInput = Prisma.DirectorCreateInput + +/** + * @deprecated Renamed to `Prisma.DirectorUpdateInput` + */ +export type DirectorUpdateInput = Prisma.DirectorUpdateInput + +/** + * @deprecated Renamed to `Prisma.DirectorUpdateManyMutationInput` + */ +export type DirectorUpdateManyMutationInput = Prisma.DirectorUpdateManyMutationInput + +/** + * @deprecated Renamed to `Prisma.ProblemCreateInput` + */ +export type ProblemCreateInput = Prisma.ProblemCreateInput + +/** + * @deprecated Renamed to `Prisma.ProblemUpdateInput` + */ +export type ProblemUpdateInput = Prisma.ProblemUpdateInput + +/** + * @deprecated Renamed to `Prisma.ProblemUpdateManyMutationInput` + */ +export type ProblemUpdateManyMutationInput = Prisma.ProblemUpdateManyMutationInput + +/** + * @deprecated Renamed to `Prisma.CreatorCreateInput` + */ +export type CreatorCreateInput = Prisma.CreatorCreateInput + +/** + * @deprecated Renamed to `Prisma.CreatorUpdateInput` + */ +export type CreatorUpdateInput = Prisma.CreatorUpdateInput + +/** + * @deprecated Renamed to `Prisma.CreatorUpdateManyMutationInput` + */ +export type CreatorUpdateManyMutationInput = Prisma.CreatorUpdateManyMutationInput + +/** + * @deprecated Renamed to `Prisma.IntFilter` + */ +export type IntFilter = Prisma.IntFilter + +/** + * @deprecated Renamed to `Prisma.StringFilter` + */ +export type StringFilter = Prisma.StringFilter + +/** + * @deprecated Renamed to `Prisma.StringNullableFilter` + */ +export type StringNullableFilter = Prisma.StringNullableFilter + +/** + * @deprecated Renamed to `Prisma.FloatFilter` + */ +export type FloatFilter = Prisma.FloatFilter + +/** + * @deprecated Renamed to `Prisma.PostListRelationFilter` + */ +export type PostListRelationFilter = Prisma.PostListRelationFilter + +/** + * @deprecated Renamed to `Prisma.EnumRoleFilter` + */ +export type EnumRoleFilter = Prisma.EnumRoleFilter + +/** + * @deprecated Renamed to `Prisma.DateTimeFilter` + */ +export type DateTimeFilter = Prisma.DateTimeFilter + +/** + * @deprecated Renamed to `Prisma.BoolFilter` + */ +export type BoolFilter = Prisma.BoolFilter + +/** + * @deprecated Renamed to `Prisma.UserRelationFilter` + */ +export type UserRelationFilter = Prisma.UserRelationFilter + +/** + * @deprecated Renamed to `Prisma.IntNullableFilter` + */ +export type IntNullableFilter = Prisma.IntNullableFilter + +/** + * @deprecated Renamed to `Prisma.EnumPostKindNullableFilter` + */ +export type EnumPostKindNullableFilter = Prisma.EnumPostKindNullableFilter + +/** + * @deprecated Renamed to `Prisma.JsonFilter` + */ +export type JsonFilter = Prisma.JsonFilter + +/** + * @deprecated Renamed to `Prisma.SlugNumberCompoundUniqueInput` + */ +export type SlugNumberCompoundUniqueInput = Prisma.SlugNumberCompoundUniqueInput + +/** + * @deprecated Renamed to `Prisma.FirstNameLastNameCompoundUniqueInput` + */ +export type FirstNameLastNameCompoundUniqueInput = Prisma.FirstNameLastNameCompoundUniqueInput + +/** + * @deprecated Renamed to `Prisma.DirectorRelationFilter` + */ +export type DirectorRelationFilter = Prisma.DirectorRelationFilter + +/** + * @deprecated Renamed to `Prisma.DirectorFirstNameDirectorLastNameTitleCompoundUniqueInput` + */ +export type DirectorFirstNameDirectorLastNameTitleCompoundUniqueInput = Prisma.DirectorFirstNameDirectorLastNameTitleCompoundUniqueInput + +/** + * @deprecated Renamed to `Prisma.MovieListRelationFilter` + */ +export type MovieListRelationFilter = Prisma.MovieListRelationFilter + +/** + * @deprecated Renamed to `Prisma.CreatorListRelationFilter` + */ +export type CreatorListRelationFilter = Prisma.CreatorListRelationFilter + +/** + * @deprecated Renamed to `Prisma.CreatorRelationFilter` + */ +export type CreatorRelationFilter = Prisma.CreatorRelationFilter + +/** + * @deprecated Renamed to `Prisma.ProblemListRelationFilter` + */ +export type ProblemListRelationFilter = Prisma.ProblemListRelationFilter + +/** + * @deprecated Renamed to `Prisma.postCreateManyWithoutAuthorInput` + */ +export type postCreateManyWithoutAuthorInput = Prisma.postCreateManyWithoutAuthorInput + +/** + * @deprecated Renamed to `Prisma.postCreateManyWithoutEditorInput` + */ +export type postCreateManyWithoutEditorInput = Prisma.postCreateManyWithoutEditorInput + +/** + * @deprecated Renamed to `Prisma.StringFieldUpdateOperationsInput` + */ +export type StringFieldUpdateOperationsInput = Prisma.StringFieldUpdateOperationsInput + +/** + * @deprecated Renamed to `Prisma.NullableStringFieldUpdateOperationsInput` + */ +export type NullableStringFieldUpdateOperationsInput = Prisma.NullableStringFieldUpdateOperationsInput + +/** + * @deprecated Renamed to `Prisma.IntFieldUpdateOperationsInput` + */ +export type IntFieldUpdateOperationsInput = Prisma.IntFieldUpdateOperationsInput + +/** + * @deprecated Renamed to `Prisma.FloatFieldUpdateOperationsInput` + */ +export type FloatFieldUpdateOperationsInput = Prisma.FloatFieldUpdateOperationsInput + +/** + * @deprecated Renamed to `Prisma.EnumRoleFieldUpdateOperationsInput` + */ +export type EnumRoleFieldUpdateOperationsInput = Prisma.EnumRoleFieldUpdateOperationsInput + +/** + * @deprecated Renamed to `Prisma.postUpdateManyWithoutAuthorInput` + */ +export type postUpdateManyWithoutAuthorInput = Prisma.postUpdateManyWithoutAuthorInput + +/** + * @deprecated Renamed to `Prisma.postUpdateManyWithoutEditorInput` + */ +export type postUpdateManyWithoutEditorInput = Prisma.postUpdateManyWithoutEditorInput + +/** + * @deprecated Renamed to `Prisma.UserCreateOneWithoutPostsInput` + */ +export type UserCreateOneWithoutPostsInput = Prisma.UserCreateOneWithoutPostsInput + +/** + * @deprecated Renamed to `Prisma.UserCreateOneWithoutEditorPostsInput` + */ +export type UserCreateOneWithoutEditorPostsInput = Prisma.UserCreateOneWithoutEditorPostsInput + +/** + * @deprecated Renamed to `Prisma.DateTimeFieldUpdateOperationsInput` + */ +export type DateTimeFieldUpdateOperationsInput = Prisma.DateTimeFieldUpdateOperationsInput + +/** + * @deprecated Renamed to `Prisma.BoolFieldUpdateOperationsInput` + */ +export type BoolFieldUpdateOperationsInput = Prisma.BoolFieldUpdateOperationsInput + +/** + * @deprecated Renamed to `Prisma.NullableEnumPostKindFieldUpdateOperationsInput` + */ +export type NullableEnumPostKindFieldUpdateOperationsInput = Prisma.NullableEnumPostKindFieldUpdateOperationsInput + +/** + * @deprecated Renamed to `Prisma.UserUpdateOneRequiredWithoutPostsInput` + */ +export type UserUpdateOneRequiredWithoutPostsInput = Prisma.UserUpdateOneRequiredWithoutPostsInput + +/** + * @deprecated Renamed to `Prisma.UserUpdateOneWithoutEditorPostsInput` + */ +export type UserUpdateOneWithoutEditorPostsInput = Prisma.UserUpdateOneWithoutEditorPostsInput + +/** + * @deprecated Renamed to `Prisma.DirectorCreateOneWithoutMoviesInput` + */ +export type DirectorCreateOneWithoutMoviesInput = Prisma.DirectorCreateOneWithoutMoviesInput + +/** + * @deprecated Renamed to `Prisma.DirectorUpdateOneRequiredWithoutMoviesInput` + */ +export type DirectorUpdateOneRequiredWithoutMoviesInput = Prisma.DirectorUpdateOneRequiredWithoutMoviesInput + +/** + * @deprecated Renamed to `Prisma.MovieCreateManyWithoutDirectorInput` + */ +export type MovieCreateManyWithoutDirectorInput = Prisma.MovieCreateManyWithoutDirectorInput + +/** + * @deprecated Renamed to `Prisma.MovieUpdateManyWithoutDirectorInput` + */ +export type MovieUpdateManyWithoutDirectorInput = Prisma.MovieUpdateManyWithoutDirectorInput + +/** + * @deprecated Renamed to `Prisma.CreatorCreateManyWithoutLikesInput` + */ +export type CreatorCreateManyWithoutLikesInput = Prisma.CreatorCreateManyWithoutLikesInput + +/** + * @deprecated Renamed to `Prisma.CreatorCreateOneWithoutProblemsInput` + */ +export type CreatorCreateOneWithoutProblemsInput = Prisma.CreatorCreateOneWithoutProblemsInput + +/** + * @deprecated Renamed to `Prisma.CreatorUpdateManyWithoutLikesInput` + */ +export type CreatorUpdateManyWithoutLikesInput = Prisma.CreatorUpdateManyWithoutLikesInput + +/** + * @deprecated Renamed to `Prisma.CreatorUpdateOneWithoutProblemsInput` + */ +export type CreatorUpdateOneWithoutProblemsInput = Prisma.CreatorUpdateOneWithoutProblemsInput + +/** + * @deprecated Renamed to `Prisma.ProblemCreateManyWithoutLikedByInput` + */ +export type ProblemCreateManyWithoutLikedByInput = Prisma.ProblemCreateManyWithoutLikedByInput + +/** + * @deprecated Renamed to `Prisma.ProblemCreateManyWithoutCreatorInput` + */ +export type ProblemCreateManyWithoutCreatorInput = Prisma.ProblemCreateManyWithoutCreatorInput + +/** + * @deprecated Renamed to `Prisma.ProblemUpdateManyWithoutLikedByInput` + */ +export type ProblemUpdateManyWithoutLikedByInput = Prisma.ProblemUpdateManyWithoutLikedByInput + +/** + * @deprecated Renamed to `Prisma.ProblemUpdateManyWithoutCreatorInput` + */ +export type ProblemUpdateManyWithoutCreatorInput = Prisma.ProblemUpdateManyWithoutCreatorInput + +/** + * @deprecated Renamed to `Prisma.NestedIntFilter` + */ +export type NestedIntFilter = Prisma.NestedIntFilter + +/** + * @deprecated Renamed to `Prisma.NestedStringFilter` + */ +export type NestedStringFilter = Prisma.NestedStringFilter + +/** + * @deprecated Renamed to `Prisma.NestedStringNullableFilter` + */ +export type NestedStringNullableFilter = Prisma.NestedStringNullableFilter + +/** + * @deprecated Renamed to `Prisma.NestedFloatFilter` + */ +export type NestedFloatFilter = Prisma.NestedFloatFilter + +/** + * @deprecated Renamed to `Prisma.NestedEnumRoleFilter` + */ +export type NestedEnumRoleFilter = Prisma.NestedEnumRoleFilter + +/** + * @deprecated Renamed to `Prisma.NestedDateTimeFilter` + */ +export type NestedDateTimeFilter = Prisma.NestedDateTimeFilter + +/** + * @deprecated Renamed to `Prisma.NestedBoolFilter` + */ +export type NestedBoolFilter = Prisma.NestedBoolFilter + +/** + * @deprecated Renamed to `Prisma.NestedIntNullableFilter` + */ +export type NestedIntNullableFilter = Prisma.NestedIntNullableFilter + +/** + * @deprecated Renamed to `Prisma.NestedEnumPostKindNullableFilter` + */ +export type NestedEnumPostKindNullableFilter = Prisma.NestedEnumPostKindNullableFilter + +/** + * @deprecated Renamed to `Prisma.postCreateWithoutAuthorInput` + */ +export type postCreateWithoutAuthorInput = Prisma.postCreateWithoutAuthorInput + +/** + * @deprecated Renamed to `Prisma.postCreateOrConnectWithoutauthorInput` + */ +export type postCreateOrConnectWithoutauthorInput = Prisma.postCreateOrConnectWithoutauthorInput + +/** + * @deprecated Renamed to `Prisma.postCreateWithoutEditorInput` + */ +export type postCreateWithoutEditorInput = Prisma.postCreateWithoutEditorInput + +/** + * @deprecated Renamed to `Prisma.postCreateOrConnectWithouteditorInput` + */ +export type postCreateOrConnectWithouteditorInput = Prisma.postCreateOrConnectWithouteditorInput + +/** + * @deprecated Renamed to `Prisma.postUpdateWithWhereUniqueWithoutAuthorInput` + */ +export type postUpdateWithWhereUniqueWithoutAuthorInput = Prisma.postUpdateWithWhereUniqueWithoutAuthorInput + +/** + * @deprecated Renamed to `Prisma.postUpdateManyWithWhereWithoutAuthorInput` + */ +export type postUpdateManyWithWhereWithoutAuthorInput = Prisma.postUpdateManyWithWhereWithoutAuthorInput + +/** + * @deprecated Renamed to `Prisma.postScalarWhereInput` + */ +export type postScalarWhereInput = Prisma.postScalarWhereInput + +/** + * @deprecated Renamed to `Prisma.postUpsertWithWhereUniqueWithoutAuthorInput` + */ +export type postUpsertWithWhereUniqueWithoutAuthorInput = Prisma.postUpsertWithWhereUniqueWithoutAuthorInput + +/** + * @deprecated Renamed to `Prisma.postUpdateWithWhereUniqueWithoutEditorInput` + */ +export type postUpdateWithWhereUniqueWithoutEditorInput = Prisma.postUpdateWithWhereUniqueWithoutEditorInput + +/** + * @deprecated Renamed to `Prisma.postUpdateManyWithWhereWithoutEditorInput` + */ +export type postUpdateManyWithWhereWithoutEditorInput = Prisma.postUpdateManyWithWhereWithoutEditorInput + +/** + * @deprecated Renamed to `Prisma.postUpsertWithWhereUniqueWithoutEditorInput` + */ +export type postUpsertWithWhereUniqueWithoutEditorInput = Prisma.postUpsertWithWhereUniqueWithoutEditorInput + +/** + * @deprecated Renamed to `Prisma.UserCreateWithoutPostsInput` + */ +export type UserCreateWithoutPostsInput = Prisma.UserCreateWithoutPostsInput + +/** + * @deprecated Renamed to `Prisma.UserCreateOrConnectWithoutpostsInput` + */ +export type UserCreateOrConnectWithoutpostsInput = Prisma.UserCreateOrConnectWithoutpostsInput + +/** + * @deprecated Renamed to `Prisma.UserCreateWithoutEditorPostsInput` + */ +export type UserCreateWithoutEditorPostsInput = Prisma.UserCreateWithoutEditorPostsInput + +/** + * @deprecated Renamed to `Prisma.UserCreateOrConnectWithouteditorPostsInput` + */ +export type UserCreateOrConnectWithouteditorPostsInput = Prisma.UserCreateOrConnectWithouteditorPostsInput + +/** + * @deprecated Renamed to `Prisma.UserUpdateWithoutPostsInput` + */ +export type UserUpdateWithoutPostsInput = Prisma.UserUpdateWithoutPostsInput + +/** + * @deprecated Renamed to `Prisma.UserUpsertWithoutPostsInput` + */ +export type UserUpsertWithoutPostsInput = Prisma.UserUpsertWithoutPostsInput + +/** + * @deprecated Renamed to `Prisma.UserUpdateWithoutEditorPostsInput` + */ +export type UserUpdateWithoutEditorPostsInput = Prisma.UserUpdateWithoutEditorPostsInput + +/** + * @deprecated Renamed to `Prisma.UserUpsertWithoutEditorPostsInput` + */ +export type UserUpsertWithoutEditorPostsInput = Prisma.UserUpsertWithoutEditorPostsInput + +/** + * @deprecated Renamed to `Prisma.DirectorCreateWithoutMoviesInput` + */ +export type DirectorCreateWithoutMoviesInput = Prisma.DirectorCreateWithoutMoviesInput + +/** + * @deprecated Renamed to `Prisma.DirectorCreateOrConnectWithoutmoviesInput` + */ +export type DirectorCreateOrConnectWithoutmoviesInput = Prisma.DirectorCreateOrConnectWithoutmoviesInput + +/** + * @deprecated Renamed to `Prisma.DirectorUpdateWithoutMoviesInput` + */ +export type DirectorUpdateWithoutMoviesInput = Prisma.DirectorUpdateWithoutMoviesInput + +/** + * @deprecated Renamed to `Prisma.DirectorUpsertWithoutMoviesInput` + */ +export type DirectorUpsertWithoutMoviesInput = Prisma.DirectorUpsertWithoutMoviesInput + +/** + * @deprecated Renamed to `Prisma.MovieCreateWithoutDirectorInput` + */ +export type MovieCreateWithoutDirectorInput = Prisma.MovieCreateWithoutDirectorInput + +/** + * @deprecated Renamed to `Prisma.MovieCreateOrConnectWithoutdirectorInput` + */ +export type MovieCreateOrConnectWithoutdirectorInput = Prisma.MovieCreateOrConnectWithoutdirectorInput + +/** + * @deprecated Renamed to `Prisma.MovieUpdateWithWhereUniqueWithoutDirectorInput` + */ +export type MovieUpdateWithWhereUniqueWithoutDirectorInput = Prisma.MovieUpdateWithWhereUniqueWithoutDirectorInput + +/** + * @deprecated Renamed to `Prisma.MovieUpdateManyWithWhereWithoutDirectorInput` + */ +export type MovieUpdateManyWithWhereWithoutDirectorInput = Prisma.MovieUpdateManyWithWhereWithoutDirectorInput + +/** + * @deprecated Renamed to `Prisma.MovieScalarWhereInput` + */ +export type MovieScalarWhereInput = Prisma.MovieScalarWhereInput + +/** + * @deprecated Renamed to `Prisma.MovieUpsertWithWhereUniqueWithoutDirectorInput` + */ +export type MovieUpsertWithWhereUniqueWithoutDirectorInput = Prisma.MovieUpsertWithWhereUniqueWithoutDirectorInput + +/** + * @deprecated Renamed to `Prisma.CreatorCreateWithoutLikesInput` + */ +export type CreatorCreateWithoutLikesInput = Prisma.CreatorCreateWithoutLikesInput + +/** + * @deprecated Renamed to `Prisma.CreatorCreateOrConnectWithoutlikesInput` + */ +export type CreatorCreateOrConnectWithoutlikesInput = Prisma.CreatorCreateOrConnectWithoutlikesInput + +/** + * @deprecated Renamed to `Prisma.CreatorCreateWithoutProblemsInput` + */ +export type CreatorCreateWithoutProblemsInput = Prisma.CreatorCreateWithoutProblemsInput + +/** + * @deprecated Renamed to `Prisma.CreatorCreateOrConnectWithoutproblemsInput` + */ +export type CreatorCreateOrConnectWithoutproblemsInput = Prisma.CreatorCreateOrConnectWithoutproblemsInput + +/** + * @deprecated Renamed to `Prisma.CreatorUpdateWithWhereUniqueWithoutLikesInput` + */ +export type CreatorUpdateWithWhereUniqueWithoutLikesInput = Prisma.CreatorUpdateWithWhereUniqueWithoutLikesInput + +/** + * @deprecated Renamed to `Prisma.CreatorUpdateManyWithWhereWithoutLikesInput` + */ +export type CreatorUpdateManyWithWhereWithoutLikesInput = Prisma.CreatorUpdateManyWithWhereWithoutLikesInput + +/** + * @deprecated Renamed to `Prisma.CreatorScalarWhereInput` + */ +export type CreatorScalarWhereInput = Prisma.CreatorScalarWhereInput + +/** + * @deprecated Renamed to `Prisma.CreatorUpsertWithWhereUniqueWithoutLikesInput` + */ +export type CreatorUpsertWithWhereUniqueWithoutLikesInput = Prisma.CreatorUpsertWithWhereUniqueWithoutLikesInput + +/** + * @deprecated Renamed to `Prisma.CreatorUpdateWithoutProblemsInput` + */ +export type CreatorUpdateWithoutProblemsInput = Prisma.CreatorUpdateWithoutProblemsInput + +/** + * @deprecated Renamed to `Prisma.CreatorUpsertWithoutProblemsInput` + */ +export type CreatorUpsertWithoutProblemsInput = Prisma.CreatorUpsertWithoutProblemsInput + +/** + * @deprecated Renamed to `Prisma.ProblemCreateWithoutLikedByInput` + */ +export type ProblemCreateWithoutLikedByInput = Prisma.ProblemCreateWithoutLikedByInput + +/** + * @deprecated Renamed to `Prisma.ProblemCreateOrConnectWithoutlikedByInput` + */ +export type ProblemCreateOrConnectWithoutlikedByInput = Prisma.ProblemCreateOrConnectWithoutlikedByInput + +/** + * @deprecated Renamed to `Prisma.ProblemCreateWithoutCreatorInput` + */ +export type ProblemCreateWithoutCreatorInput = Prisma.ProblemCreateWithoutCreatorInput + +/** + * @deprecated Renamed to `Prisma.ProblemCreateOrConnectWithoutcreatorInput` + */ +export type ProblemCreateOrConnectWithoutcreatorInput = Prisma.ProblemCreateOrConnectWithoutcreatorInput + +/** + * @deprecated Renamed to `Prisma.ProblemUpdateWithWhereUniqueWithoutLikedByInput` + */ +export type ProblemUpdateWithWhereUniqueWithoutLikedByInput = Prisma.ProblemUpdateWithWhereUniqueWithoutLikedByInput + +/** + * @deprecated Renamed to `Prisma.ProblemUpdateManyWithWhereWithoutLikedByInput` + */ +export type ProblemUpdateManyWithWhereWithoutLikedByInput = Prisma.ProblemUpdateManyWithWhereWithoutLikedByInput + +/** + * @deprecated Renamed to `Prisma.ProblemScalarWhereInput` + */ +export type ProblemScalarWhereInput = Prisma.ProblemScalarWhereInput + +/** + * @deprecated Renamed to `Prisma.ProblemUpsertWithWhereUniqueWithoutLikedByInput` + */ +export type ProblemUpsertWithWhereUniqueWithoutLikedByInput = Prisma.ProblemUpsertWithWhereUniqueWithoutLikedByInput + +/** + * @deprecated Renamed to `Prisma.ProblemUpdateWithWhereUniqueWithoutCreatorInput` + */ +export type ProblemUpdateWithWhereUniqueWithoutCreatorInput = Prisma.ProblemUpdateWithWhereUniqueWithoutCreatorInput + +/** + * @deprecated Renamed to `Prisma.ProblemUpdateManyWithWhereWithoutCreatorInput` + */ +export type ProblemUpdateManyWithWhereWithoutCreatorInput = Prisma.ProblemUpdateManyWithWhereWithoutCreatorInput + +/** + * @deprecated Renamed to `Prisma.ProblemUpsertWithWhereUniqueWithoutCreatorInput` + */ +export type ProblemUpsertWithWhereUniqueWithoutCreatorInput = Prisma.ProblemUpsertWithWhereUniqueWithoutCreatorInput + +/** + * @deprecated Renamed to `Prisma.postUpdateWithoutAuthorInput` + */ +export type postUpdateWithoutAuthorInput = Prisma.postUpdateWithoutAuthorInput + +/** + * @deprecated Renamed to `Prisma.postUpdateWithoutEditorInput` + */ +export type postUpdateWithoutEditorInput = Prisma.postUpdateWithoutEditorInput + +/** + * @deprecated Renamed to `Prisma.MovieUpdateWithoutDirectorInput` + */ +export type MovieUpdateWithoutDirectorInput = Prisma.MovieUpdateWithoutDirectorInput + +/** + * @deprecated Renamed to `Prisma.CreatorUpdateWithoutLikesInput` + */ +export type CreatorUpdateWithoutLikesInput = Prisma.CreatorUpdateWithoutLikesInput + +/** + * @deprecated Renamed to `Prisma.ProblemUpdateWithoutLikedByInput` + */ +export type ProblemUpdateWithoutLikedByInput = Prisma.ProblemUpdateWithoutLikedByInput + +/** + * @deprecated Renamed to `Prisma.ProblemUpdateWithoutCreatorInput` + */ +export type ProblemUpdateWithoutCreatorInput = Prisma.ProblemUpdateWithoutCreatorInput \ No newline at end of file diff --git a/experiments/prisma/generated/client/index.js b/experiments/prisma/generated/client/index.js index 2c6177d2..aac96011 100644 --- a/experiments/prisma/generated/client/index.js +++ b/experiments/prisma/generated/client/index.js @@ -25,12 +25,12 @@ const Prisma = {} exports.Prisma = Prisma /** - * Prisma Client JS version: 2.12.0-dev.38 - * Query Engine version: a4ef806349a7b17c41f45735ce4a36322e01c250 + * Prisma Client JS version: 2.12.1 + * Query Engine version: cf0680a1bfe8d5e743dc659cc7f08009f9587d58 */ Prisma.prismaVersion = { - client: "2.12.0-dev.38", - engine: "a4ef806349a7b17c41f45735ce4a36322e01c250" + client: "2.12.1", + engine: "cf0680a1bfe8d5e743dc659cc7f08009f9587d58" } Prisma.PrismaClientKnownRequestError = PrismaClientKnownRequestError; @@ -50,18 +50,8 @@ Prisma.join = join Prisma.raw = raw -/** - * Build tool annotations - * In order to make `ncc` and `node-file-trace` happy. -**/ - -path.join(__dirname, 'query-engine-windows'); -path.join(__dirname, 'query-engine-debian-openssl-1.1.x'); - -/** - * Annotation for `node-file-trace` -**/ -path.join(__dirname, 'schema.prisma'); +const dirnamePolyfill = path.join(process.cwd(), "prisma/generated/client") +const dirname = __dirname.length === 1 ? dirnamePolyfill : __dirname /** * Enums @@ -162,7 +152,7 @@ exports.Prisma.ModelName = makeEnum({ /** * DMMF */ -const dmmfString = "{\"datamodel\":{\"enums\":[{\"name\":\"Role\",\"values\":[{\"name\":\"USER\",\"dbName\":null},{\"name\":\"ADMIN\",\"dbName\":null}],\"dbName\":null,\"documentation\":\"Role enum doc\"},{\"name\":\"PostKind\",\"values\":[{\"name\":\"BLOG\",\"dbName\":null},{\"name\":\"ADVERT\",\"dbName\":null}],\"dbName\":null}],\"models\":[{\"name\":\"User\",\"isEmbedded\":false,\"dbName\":null,\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":true,\"isReadOnly\":false,\"type\":\"Int\",\"hasDefaultValue\":true,\"default\":{\"name\":\"autoincrement\",\"args\":[]},\"isGenerated\":false,\"isUpdatedAt\":false,\"documentation\":\"User model field doc\"},{\"name\":\"email\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":true,\"isId\":false,\"isReadOnly\":false,\"type\":\"String\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"name\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":false,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"String\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false,\"documentation\":\"renamed field doc\\\\n@TypeGraphQL.field(name: \\\"firstName\\\")\"},{\"name\":\"age\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"Int\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"balance\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"Float\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false,\"documentation\":\"@TypeGraphQL.field(name: \\\"accountBalance\\\")\"},{\"name\":\"amount\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"Float\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"posts\",\"kind\":\"object\",\"isList\":true,\"isRequired\":false,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"post\",\"hasDefaultValue\":false,\"relationName\":\"posts\",\"relationFromFields\":[],\"relationToFields\":[],\"relationOnDelete\":\"NONE\",\"isGenerated\":false,\"isUpdatedAt\":false,\"documentation\":\"@TypeGraphQL.field(name: \\\"clientPosts\\\")\"},{\"name\":\"role\",\"kind\":\"enum\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"Role\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"editorPosts\",\"kind\":\"object\",\"isList\":true,\"isRequired\":false,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"post\",\"hasDefaultValue\":false,\"relationName\":\"editorPosts\",\"relationFromFields\":[],\"relationToFields\":[],\"relationOnDelete\":\"NONE\",\"isGenerated\":false,\"isUpdatedAt\":false,\"documentation\":\"@TypeGraphQL.omit(output: true)\"}],\"isGenerated\":false,\"documentation\":\"User model doc\\\\n@@TypeGraphQL.type(name: \\\"Client\\\")\",\"idFields\":[],\"uniqueFields\":[],\"uniqueIndexes\":[]},{\"name\":\"post\",\"isEmbedded\":false,\"dbName\":null,\"fields\":[{\"name\":\"uuid\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":true,\"isReadOnly\":false,\"type\":\"String\",\"hasDefaultValue\":true,\"default\":{\"name\":\"uuid\",\"args\":[]},\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"DateTime\",\"hasDefaultValue\":true,\"default\":{\"name\":\"now\",\"args\":[]},\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"updatedAt\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"DateTime\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":true},{\"name\":\"published\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"Boolean\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"title\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"String\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"subtitle\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"String\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false,\"documentation\":\"@TypeGraphQL.omit(output: true)\"},{\"name\":\"content\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":false,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"String\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"author\",\"kind\":\"object\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"User\",\"hasDefaultValue\":false,\"relationName\":\"posts\",\"relationFromFields\":[\"authorId\"],\"relationToFields\":[\"id\"],\"relationOnDelete\":\"NONE\",\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"authorId\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":true,\"type\":\"Int\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"editor\",\"kind\":\"object\",\"isList\":false,\"isRequired\":false,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"User\",\"hasDefaultValue\":false,\"relationName\":\"editorPosts\",\"relationFromFields\":[\"editorId\"],\"relationToFields\":[\"id\"],\"relationOnDelete\":\"NONE\",\"isGenerated\":false,\"isUpdatedAt\":false,\"documentation\":\"@TypeGraphQL.omit(output: true)\"},{\"name\":\"editorId\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":false,\"isUnique\":false,\"isId\":false,\"isReadOnly\":true,\"type\":\"Int\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false,\"documentation\":\"@TypeGraphQL.omit(output: true)\"},{\"name\":\"kind\",\"kind\":\"enum\",\"isList\":false,\"isRequired\":false,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"PostKind\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"metadata\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"Json\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false}],\"isGenerated\":false,\"idFields\":[],\"uniqueFields\":[],\"uniqueIndexes\":[]},{\"name\":\"Category\",\"isEmbedded\":false,\"dbName\":null,\"fields\":[{\"name\":\"name\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"String\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"slug\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"String\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"number\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"Int\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false}],\"isGenerated\":false,\"idFields\":[],\"uniqueFields\":[[\"slug\",\"number\"]],\"uniqueIndexes\":[{\"name\":null,\"fields\":[\"slug\",\"number\"]}]},{\"name\":\"Patient\",\"isEmbedded\":false,\"dbName\":null,\"fields\":[{\"name\":\"firstName\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"String\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"lastName\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"String\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"email\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"String\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false}],\"isGenerated\":false,\"idFields\":[\"firstName\",\"lastName\"],\"uniqueFields\":[],\"uniqueIndexes\":[]},{\"name\":\"Movie\",\"isEmbedded\":false,\"dbName\":null,\"fields\":[{\"name\":\"directorFirstName\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":true,\"type\":\"String\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"directorLastName\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":true,\"type\":\"String\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"director\",\"kind\":\"object\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"Director\",\"hasDefaultValue\":false,\"relationName\":\"DirectorToMovie\",\"relationFromFields\":[\"directorFirstName\",\"directorLastName\"],\"relationToFields\":[\"firstName\",\"lastName\"],\"relationOnDelete\":\"NONE\",\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"title\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"String\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false}],\"isGenerated\":false,\"idFields\":[\"directorFirstName\",\"directorLastName\",\"title\"],\"uniqueFields\":[],\"uniqueIndexes\":[]},{\"name\":\"Director\",\"isEmbedded\":false,\"dbName\":null,\"fields\":[{\"name\":\"firstName\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"String\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"lastName\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"String\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"movies\",\"kind\":\"object\",\"isList\":true,\"isRequired\":false,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"Movie\",\"hasDefaultValue\":false,\"relationName\":\"DirectorToMovie\",\"relationFromFields\":[],\"relationToFields\":[],\"relationOnDelete\":\"NONE\",\"isGenerated\":false,\"isUpdatedAt\":false}],\"isGenerated\":false,\"idFields\":[\"firstName\",\"lastName\"],\"uniqueFields\":[],\"uniqueIndexes\":[]},{\"name\":\"Problem\",\"isEmbedded\":false,\"dbName\":null,\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":true,\"isReadOnly\":false,\"type\":\"Int\",\"hasDefaultValue\":true,\"default\":{\"name\":\"autoincrement\",\"args\":[]},\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"problemText\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"String\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"likedBy\",\"kind\":\"object\",\"isList\":true,\"isRequired\":false,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"Creator\",\"hasDefaultValue\":false,\"relationName\":\"CreatorToProblem\",\"relationFromFields\":[],\"relationToFields\":[\"id\"],\"relationOnDelete\":\"NONE\",\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"creator\",\"kind\":\"object\",\"isList\":false,\"isRequired\":false,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"Creator\",\"hasDefaultValue\":false,\"relationName\":\"creator\",\"relationFromFields\":[\"creatorId\"],\"relationToFields\":[\"id\"],\"relationOnDelete\":\"NONE\",\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"creatorId\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":false,\"isUnique\":false,\"isId\":false,\"isReadOnly\":true,\"type\":\"Int\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false}],\"isGenerated\":false,\"idFields\":[],\"uniqueFields\":[],\"uniqueIndexes\":[]},{\"name\":\"Creator\",\"isEmbedded\":false,\"dbName\":null,\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":true,\"isReadOnly\":false,\"type\":\"Int\",\"hasDefaultValue\":true,\"default\":{\"name\":\"autoincrement\",\"args\":[]},\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"name\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"String\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"likes\",\"kind\":\"object\",\"isList\":true,\"isRequired\":false,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"Problem\",\"hasDefaultValue\":false,\"relationName\":\"CreatorToProblem\",\"relationFromFields\":[],\"relationToFields\":[\"id\"],\"relationOnDelete\":\"NONE\",\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"problems\",\"kind\":\"object\",\"isList\":true,\"isRequired\":false,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"Problem\",\"hasDefaultValue\":false,\"relationName\":\"creator\",\"relationFromFields\":[],\"relationToFields\":[],\"relationOnDelete\":\"NONE\",\"isGenerated\":false,\"isUpdatedAt\":false}],\"isGenerated\":false,\"idFields\":[],\"uniqueFields\":[],\"uniqueIndexes\":[]}]},\"schema\":{\"inputObjectTypes\":{\"prisma\":[{\"name\":\"UserWhereInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"AND\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"UserWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"OR\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"UserWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"NOT\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"UserWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"id\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"IntFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"email\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"name\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"StringNullableFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"age\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"IntFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"balance\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"FloatFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"amount\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"FloatFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"posts\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PostListRelationFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"role\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"EnumRoleFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"editorPosts\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PostListRelationFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"UserOrderByInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":0},\"fields\":[{\"name\":\"id\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"email\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"name\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"age\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"balance\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"amount\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"role\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]}]},{\"name\":\"UserWhereUniqueInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":1},\"fields\":[{\"name\":\"id\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"email\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"postWhereInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"AND\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"OR\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"NOT\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"uuid\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"createdAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTimeFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"updatedAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTimeFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"published\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"BoolFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"title\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"subtitle\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"content\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"StringNullableFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"author\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserRelationFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"UserWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"authorId\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"IntFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"editor\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"UserRelationFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"UserWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"editorId\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"IntNullableFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"kind\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"EnumPostKindNullableFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"metadata\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"JsonFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"postOrderByInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":0},\"fields\":[{\"name\":\"uuid\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"createdAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"updatedAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"published\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"title\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"subtitle\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"content\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"authorId\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"editorId\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"kind\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"metadata\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]}]},{\"name\":\"postWhereUniqueInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":1},\"fields\":[{\"name\":\"uuid\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"CategoryWhereInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"AND\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CategoryWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"OR\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CategoryWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"NOT\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CategoryWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"name\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"slug\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"number\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"IntFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"CategoryOrderByInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":0},\"fields\":[{\"name\":\"name\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"slug\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"number\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]}]},{\"name\":\"CategoryWhereUniqueInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":1},\"fields\":[{\"name\":\"slug_number\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SlugNumberCompoundUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"PatientWhereInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"AND\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"PatientWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"OR\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"PatientWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"NOT\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"PatientWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"firstName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lastName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"email\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"PatientOrderByInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":0},\"fields\":[{\"name\":\"firstName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"lastName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"email\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]}]},{\"name\":\"PatientWhereUniqueInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":1},\"fields\":[{\"name\":\"firstName_lastName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"FirstNameLastNameCompoundUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"MovieWhereInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"AND\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"OR\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"NOT\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"directorFirstName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"directorLastName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"director\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorRelationFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"DirectorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"title\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"MovieOrderByInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":0},\"fields\":[{\"name\":\"directorFirstName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"directorLastName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"title\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]}]},{\"name\":\"MovieWhereUniqueInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":1},\"fields\":[{\"name\":\"directorFirstName_directorLastName_title\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorFirstNameDirectorLastNameTitleCompoundUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"DirectorWhereInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"AND\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"DirectorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"OR\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"DirectorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"NOT\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"DirectorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"firstName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lastName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"movies\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieListRelationFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"DirectorOrderByInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":0},\"fields\":[{\"name\":\"firstName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"lastName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]}]},{\"name\":\"DirectorWhereUniqueInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":1},\"fields\":[{\"name\":\"firstName_lastName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"FirstNameLastNameCompoundUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"ProblemWhereInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"AND\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"OR\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"NOT\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"id\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"IntFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"problemText\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"likedBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorListRelationFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"creator\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"CreatorRelationFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"creatorId\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"IntNullableFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"ProblemOrderByInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":0},\"fields\":[{\"name\":\"id\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"problemText\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"creatorId\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]}]},{\"name\":\"ProblemWhereUniqueInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":1},\"fields\":[{\"name\":\"id\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"CreatorWhereInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"AND\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"OR\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"NOT\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"id\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"IntFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"name\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"likes\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemListRelationFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"problems\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemListRelationFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CreatorOrderByInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":0},\"fields\":[{\"name\":\"id\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"name\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]}]},{\"name\":\"CreatorWhereUniqueInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":1},\"fields\":[{\"name\":\"id\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"UserCreateInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"email\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"name\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"age\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"balance\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"amount\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"role\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"posts\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateManyWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"editorPosts\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateManyWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"UserUpdateInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"email\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"name\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NullableStringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"age\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"IntFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"balance\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"FloatFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"amount\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"FloatFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"role\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"EnumRoleFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"posts\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpdateManyWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"editorPosts\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpdateManyWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"UserUpdateManyMutationInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"email\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"name\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NullableStringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"age\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"IntFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"balance\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"FloatFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"amount\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"FloatFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"role\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"EnumRoleFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"postCreateInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"uuid\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"createdAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"updatedAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"published\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"title\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"subtitle\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"content\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"kind\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"metadata\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Json\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"author\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateOneWithoutPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"editor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateOneWithoutEditorPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"postUpdateInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"uuid\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"createdAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"DateTimeFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"updatedAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"DateTimeFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"published\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"BoolFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"title\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"subtitle\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"content\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NullableStringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"kind\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"NullableEnumPostKindFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"metadata\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Json\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"author\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserUpdateOneRequiredWithoutPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"editor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserUpdateOneWithoutEditorPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"postUpdateManyMutationInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"uuid\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"createdAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"DateTimeFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"updatedAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"DateTimeFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"published\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"BoolFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"title\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"subtitle\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"content\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NullableStringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"kind\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"NullableEnumPostKindFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"metadata\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Json\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"CategoryCreateInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"name\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"slug\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"number\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"CategoryUpdateInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"name\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"slug\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"number\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"IntFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CategoryUpdateManyMutationInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"name\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"slug\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"number\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"IntFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"PatientCreateInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"firstName\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lastName\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"email\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"PatientUpdateInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"firstName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"lastName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"email\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"PatientUpdateManyMutationInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"firstName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"lastName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"email\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"MovieCreateInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"title\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"director\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorCreateOneWithoutMoviesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"MovieUpdateInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"title\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"director\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorUpdateOneRequiredWithoutMoviesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"MovieUpdateManyMutationInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"title\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"DirectorCreateInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"firstName\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lastName\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"movies\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieCreateManyWithoutDirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"DirectorUpdateInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"firstName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"lastName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"movies\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieUpdateManyWithoutDirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"DirectorUpdateManyMutationInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"firstName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"lastName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"ProblemCreateInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"problemText\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"likedBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateManyWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"creator\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateOneWithoutProblemsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"ProblemUpdateInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"problemText\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"likedBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorUpdateManyWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"creator\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorUpdateOneWithoutProblemsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"ProblemUpdateManyMutationInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"problemText\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CreatorCreateInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"name\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"likes\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateManyWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"problems\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateManyWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CreatorUpdateInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"name\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"likes\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpdateManyWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"problems\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpdateManyWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CreatorUpdateManyMutationInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"name\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"IntFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"in\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":true}]},{\"name\":\"notIn\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":true}]},{\"name\":\"lt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NestedIntFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"StringFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"in\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":true}]},{\"name\":\"notIn\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":true}]},{\"name\":\"lt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"contains\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"startsWith\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"endsWith\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"mode\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"QueryMode\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NestedStringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"StringNullableFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"in\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":true},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"notIn\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":true},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"contains\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"startsWith\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"endsWith\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"mode\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"QueryMode\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NestedStringNullableFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"FloatFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"in\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":true}]},{\"name\":\"notIn\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":true}]},{\"name\":\"lt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NestedFloatFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"PostListRelationFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"every\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"some\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"none\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"EnumRoleFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"in\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":true}]},{\"name\":\"notIn\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":true}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"NestedEnumRoleFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"DateTimeFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"in\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":true}]},{\"name\":\"notIn\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":true}]},{\"name\":\"lt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NestedDateTimeFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"BoolFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NestedBoolFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"UserRelationFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"is\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"isNot\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"IntNullableFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"in\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":true},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"notIn\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":true},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NestedIntNullableFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"EnumPostKindNullableFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"in\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":true},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"notIn\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":true},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"NestedEnumPostKindNullableFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"JsonFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Json\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Json\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"SlugNumberCompoundUniqueInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"slug\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"number\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"FirstNameLastNameCompoundUniqueInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"firstName\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lastName\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"DirectorRelationFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"is\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"isNot\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"DirectorFirstNameDirectorLastNameTitleCompoundUniqueInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"directorFirstName\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"directorLastName\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"title\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"MovieListRelationFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"every\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"some\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"none\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CreatorListRelationFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"every\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"some\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"none\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CreatorRelationFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"is\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"isNot\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"ProblemListRelationFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"every\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"some\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"none\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"postCreateManyWithoutAuthorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postCreateWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateOrConnectWithoutauthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postCreateOrConnectWithoutauthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]}]},{\"name\":\"postCreateManyWithoutEditorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postCreateWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateOrConnectWithouteditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postCreateOrConnectWithouteditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]}]},{\"name\":\"StringFieldUpdateOperationsInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":1},\"fields\":[{\"name\":\"set\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"NullableStringFieldUpdateOperationsInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":1},\"fields\":[{\"name\":\"set\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"IntFieldUpdateOperationsInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":1},\"fields\":[{\"name\":\"set\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"increment\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"decrement\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"multiply\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"divide\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"FloatFieldUpdateOperationsInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":1},\"fields\":[{\"name\":\"set\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"increment\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"decrement\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"multiply\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"divide\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"EnumRoleFieldUpdateOperationsInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":1},\"fields\":[{\"name\":\"set\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false}]}]},{\"name\":\"postUpdateManyWithoutAuthorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postCreateWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"set\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"disconnect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"delete\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"update\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpdateWithWhereUniqueWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postUpdateWithWhereUniqueWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"updateMany\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpdateManyWithWhereWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postUpdateManyWithWhereWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"deleteMany\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"upsert\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpsertWithWhereUniqueWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postUpsertWithWhereUniqueWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateOrConnectWithoutauthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postCreateOrConnectWithoutauthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]}]},{\"name\":\"postUpdateManyWithoutEditorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postCreateWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"set\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"disconnect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"delete\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"update\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpdateWithWhereUniqueWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postUpdateWithWhereUniqueWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"updateMany\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpdateManyWithWhereWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postUpdateManyWithWhereWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"deleteMany\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"upsert\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpsertWithWhereUniqueWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postUpsertWithWhereUniqueWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateOrConnectWithouteditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postCreateOrConnectWithouteditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]}]},{\"name\":\"UserCreateOneWithoutPostsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateWithoutPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateOrConnectWithoutpostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"UserCreateOneWithoutEditorPostsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateWithoutEditorPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateOrConnectWithouteditorPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"DateTimeFieldUpdateOperationsInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":1},\"fields\":[{\"name\":\"set\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"BoolFieldUpdateOperationsInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":1},\"fields\":[{\"name\":\"set\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"NullableEnumPostKindFieldUpdateOperationsInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":1},\"fields\":[{\"name\":\"set\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"UserUpdateOneRequiredWithoutPostsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateWithoutPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserUpdateWithoutPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"upsert\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserUpsertWithoutPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateOrConnectWithoutpostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"UserUpdateOneWithoutEditorPostsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateWithoutEditorPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"disconnect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"delete\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserUpdateWithoutEditorPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"upsert\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserUpsertWithoutEditorPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateOrConnectWithouteditorPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"DirectorCreateOneWithoutMoviesInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorCreateWithoutMoviesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorCreateOrConnectWithoutmoviesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"DirectorUpdateOneRequiredWithoutMoviesInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorCreateWithoutMoviesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorUpdateWithoutMoviesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"upsert\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorUpsertWithoutMoviesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorCreateOrConnectWithoutmoviesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"MovieCreateManyWithoutDirectorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieCreateWithoutDirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieCreateWithoutDirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieCreateOrConnectWithoutdirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieCreateOrConnectWithoutdirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]}]},{\"name\":\"MovieUpdateManyWithoutDirectorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieCreateWithoutDirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieCreateWithoutDirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"set\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"disconnect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"delete\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"update\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieUpdateWithWhereUniqueWithoutDirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieUpdateWithWhereUniqueWithoutDirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"updateMany\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieUpdateManyWithWhereWithoutDirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieUpdateManyWithWhereWithoutDirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"deleteMany\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"upsert\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieUpsertWithWhereUniqueWithoutDirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieUpsertWithWhereUniqueWithoutDirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieCreateOrConnectWithoutdirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieCreateOrConnectWithoutdirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]}]},{\"name\":\"CreatorCreateManyWithoutLikesInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorCreateWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateOrConnectWithoutlikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorCreateOrConnectWithoutlikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]}]},{\"name\":\"CreatorCreateOneWithoutProblemsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateWithoutProblemsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateOrConnectWithoutproblemsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CreatorUpdateManyWithoutLikesInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorCreateWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"set\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"disconnect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"delete\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"update\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorUpdateWithWhereUniqueWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorUpdateWithWhereUniqueWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"updateMany\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorUpdateManyWithWhereWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorUpdateManyWithWhereWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"deleteMany\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"upsert\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorUpsertWithWhereUniqueWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorUpsertWithWhereUniqueWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateOrConnectWithoutlikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorCreateOrConnectWithoutlikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]}]},{\"name\":\"CreatorUpdateOneWithoutProblemsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateWithoutProblemsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"disconnect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"delete\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorUpdateWithoutProblemsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"upsert\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorUpsertWithoutProblemsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateOrConnectWithoutproblemsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"ProblemCreateManyWithoutLikedByInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemCreateWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateOrConnectWithoutlikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemCreateOrConnectWithoutlikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]}]},{\"name\":\"ProblemCreateManyWithoutCreatorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemCreateWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateOrConnectWithoutcreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemCreateOrConnectWithoutcreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]}]},{\"name\":\"ProblemUpdateManyWithoutLikedByInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemCreateWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"set\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"disconnect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"delete\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"update\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpdateWithWhereUniqueWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemUpdateWithWhereUniqueWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"updateMany\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpdateManyWithWhereWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemUpdateManyWithWhereWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"deleteMany\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"upsert\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpsertWithWhereUniqueWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemUpsertWithWhereUniqueWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateOrConnectWithoutlikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemCreateOrConnectWithoutlikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]}]},{\"name\":\"ProblemUpdateManyWithoutCreatorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemCreateWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"set\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"disconnect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"delete\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"update\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpdateWithWhereUniqueWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemUpdateWithWhereUniqueWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"updateMany\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpdateManyWithWhereWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemUpdateManyWithWhereWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"deleteMany\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"upsert\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpsertWithWhereUniqueWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemUpsertWithWhereUniqueWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateOrConnectWithoutcreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemCreateOrConnectWithoutcreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]}]},{\"name\":\"NestedIntFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"in\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":true}]},{\"name\":\"notIn\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":true}]},{\"name\":\"lt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NestedIntFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"NestedStringFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"in\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":true}]},{\"name\":\"notIn\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":true}]},{\"name\":\"lt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"contains\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"startsWith\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"endsWith\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NestedStringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"NestedStringNullableFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"in\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":true},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"notIn\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":true},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"contains\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"startsWith\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"endsWith\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NestedStringNullableFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"NestedFloatFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"in\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":true}]},{\"name\":\"notIn\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":true}]},{\"name\":\"lt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NestedFloatFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"NestedEnumRoleFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"in\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":true}]},{\"name\":\"notIn\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":true}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"NestedEnumRoleFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"NestedDateTimeFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"in\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":true}]},{\"name\":\"notIn\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":true}]},{\"name\":\"lt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NestedDateTimeFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"NestedBoolFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NestedBoolFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"NestedIntNullableFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"in\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":true},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"notIn\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":true},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NestedIntNullableFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"NestedEnumPostKindNullableFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"in\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":true},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"notIn\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":true},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"NestedEnumPostKindNullableFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"postCreateWithoutAuthorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"uuid\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"createdAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"updatedAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"published\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"title\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"subtitle\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"content\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"kind\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"metadata\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Json\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"editor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateOneWithoutEditorPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"postCreateOrConnectWithoutauthorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"postCreateWithoutEditorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"uuid\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"createdAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"updatedAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"published\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"title\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"subtitle\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"content\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"kind\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"metadata\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Json\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"author\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateOneWithoutPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"postCreateOrConnectWithouteditorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"postUpdateWithWhereUniqueWithoutAuthorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpdateWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"postUpdateManyWithWhereWithoutAuthorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpdateManyMutationInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"postScalarWhereInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"AND\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"OR\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"NOT\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"uuid\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"createdAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTimeFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"updatedAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTimeFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"published\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"BoolFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"title\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"subtitle\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"content\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"StringNullableFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"authorId\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"IntFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"editorId\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"IntNullableFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"kind\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"EnumPostKindNullableFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"metadata\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"JsonFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"postUpsertWithWhereUniqueWithoutAuthorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpdateWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"postUpdateWithWhereUniqueWithoutEditorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpdateWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"postUpdateManyWithWhereWithoutEditorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpdateManyMutationInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"postUpsertWithWhereUniqueWithoutEditorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpdateWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"UserCreateWithoutPostsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"email\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"name\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"age\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"balance\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"amount\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"role\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"editorPosts\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateManyWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"UserCreateOrConnectWithoutpostsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateWithoutPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"UserCreateWithoutEditorPostsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"email\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"name\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"age\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"balance\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"amount\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"role\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"posts\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateManyWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"UserCreateOrConnectWithouteditorPostsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateWithoutEditorPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"UserUpdateWithoutPostsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"email\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"name\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NullableStringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"age\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"IntFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"balance\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"FloatFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"amount\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"FloatFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"role\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"EnumRoleFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"editorPosts\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpdateManyWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"UserUpsertWithoutPostsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserUpdateWithoutPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateWithoutPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"UserUpdateWithoutEditorPostsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"email\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"name\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NullableStringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"age\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"IntFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"balance\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"FloatFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"amount\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"FloatFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"role\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"EnumRoleFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"posts\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpdateManyWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"UserUpsertWithoutEditorPostsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserUpdateWithoutEditorPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateWithoutEditorPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"DirectorCreateWithoutMoviesInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"firstName\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lastName\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"DirectorCreateOrConnectWithoutmoviesInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorCreateWithoutMoviesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"DirectorUpdateWithoutMoviesInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"firstName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"lastName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"DirectorUpsertWithoutMoviesInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorUpdateWithoutMoviesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorCreateWithoutMoviesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"MovieCreateWithoutDirectorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"title\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"MovieCreateOrConnectWithoutdirectorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieCreateWithoutDirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"MovieUpdateWithWhereUniqueWithoutDirectorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieUpdateWithoutDirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"MovieUpdateManyWithWhereWithoutDirectorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieUpdateManyMutationInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"MovieScalarWhereInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"AND\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"OR\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"NOT\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"directorFirstName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"directorLastName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"title\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"MovieUpsertWithWhereUniqueWithoutDirectorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieUpdateWithoutDirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieCreateWithoutDirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CreatorCreateWithoutLikesInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"name\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"problems\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateManyWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CreatorCreateOrConnectWithoutlikesInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CreatorCreateWithoutProblemsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"name\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"likes\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateManyWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CreatorCreateOrConnectWithoutproblemsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateWithoutProblemsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CreatorUpdateWithWhereUniqueWithoutLikesInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorUpdateWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CreatorUpdateManyWithWhereWithoutLikesInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorUpdateManyMutationInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CreatorScalarWhereInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"AND\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"OR\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"NOT\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"id\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"IntFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"name\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"CreatorUpsertWithWhereUniqueWithoutLikesInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorUpdateWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CreatorUpdateWithoutProblemsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"name\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"likes\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpdateManyWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CreatorUpsertWithoutProblemsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorUpdateWithoutProblemsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateWithoutProblemsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"ProblemCreateWithoutLikedByInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"problemText\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"creator\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateOneWithoutProblemsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"ProblemCreateOrConnectWithoutlikedByInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"ProblemCreateWithoutCreatorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"problemText\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"likedBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateManyWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"ProblemCreateOrConnectWithoutcreatorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"ProblemUpdateWithWhereUniqueWithoutLikedByInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpdateWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"ProblemUpdateManyWithWhereWithoutLikedByInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpdateManyMutationInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"ProblemScalarWhereInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"AND\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"OR\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"NOT\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"id\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"IntFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"problemText\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"creatorId\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"IntNullableFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"ProblemUpsertWithWhereUniqueWithoutLikedByInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpdateWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"ProblemUpdateWithWhereUniqueWithoutCreatorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpdateWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"ProblemUpdateManyWithWhereWithoutCreatorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpdateManyMutationInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"ProblemUpsertWithWhereUniqueWithoutCreatorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpdateWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"postUpdateWithoutAuthorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"uuid\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"createdAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"DateTimeFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"updatedAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"DateTimeFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"published\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"BoolFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"title\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"subtitle\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"content\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NullableStringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"kind\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"NullableEnumPostKindFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"metadata\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Json\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"editor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserUpdateOneWithoutEditorPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"postUpdateWithoutEditorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"uuid\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"createdAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"DateTimeFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"updatedAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"DateTimeFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"published\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"BoolFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"title\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"subtitle\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"content\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NullableStringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"kind\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"NullableEnumPostKindFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"metadata\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Json\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"author\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserUpdateOneRequiredWithoutPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"MovieUpdateWithoutDirectorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"title\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CreatorUpdateWithoutLikesInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"name\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"problems\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpdateManyWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"ProblemUpdateWithoutLikedByInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"problemText\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"creator\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorUpdateOneWithoutProblemsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"ProblemUpdateWithoutCreatorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"problemText\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"likedBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorUpdateManyWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]}]},\"outputObjectTypes\":{\"prisma\":[{\"name\":\"Query\",\"fields\":[{\"name\":\"findFirstUser\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"UserOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"User\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findManyUser\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"UserOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"User\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":true}},{\"name\":\"aggregateUser\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"UserOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"AggregateUser\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findOneUser\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"User\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findFirstpost\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"postOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PostDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"post\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findManypost\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"postOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PostDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"post\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":true}},{\"name\":\"aggregatepost\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"postOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PostDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"AggregatePost\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findOnepost\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"post\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findFirstCategory\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"CategoryOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Category\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findManyCategory\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"CategoryOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Category\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":true}},{\"name\":\"aggregateCategory\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"CategoryOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"AggregateCategory\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findOneCategory\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Category\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findFirstPatient\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"PatientOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Patient\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findManyPatient\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"PatientOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Patient\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":true}},{\"name\":\"aggregatePatient\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"PatientOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"AggregatePatient\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findOnePatient\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Patient\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findFirstMovie\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"MovieOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Movie\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findManyMovie\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"MovieOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Movie\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":true}},{\"name\":\"aggregateMovie\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"MovieOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"AggregateMovie\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findOneMovie\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Movie\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findFirstDirector\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"DirectorOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Director\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findManyDirector\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"DirectorOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Director\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":true}},{\"name\":\"aggregateDirector\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"DirectorOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"AggregateDirector\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findOneDirector\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Director\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findFirstProblem\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"ProblemOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Problem\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findManyProblem\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"ProblemOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Problem\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":true}},{\"name\":\"aggregateProblem\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"ProblemOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"AggregateProblem\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findOneProblem\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Problem\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findFirstCreator\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"CreatorOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Creator\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findManyCreator\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"CreatorOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Creator\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":true}},{\"name\":\"aggregateCreator\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"CreatorOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"AggregateCreator\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findOneCreator\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Creator\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}}]},{\"name\":\"Mutation\",\"fields\":[{\"name\":\"createOneUser\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"User\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"deleteOneUser\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"User\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"updateOneUser\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserUpdateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"User\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"upsertOneUser\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserUpdateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"User\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"updateManyUser\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserUpdateManyMutationInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"BatchPayload\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"deleteManyUser\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"BatchPayload\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"createOnepost\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"post\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"deleteOnepost\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"post\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"updateOnepost\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpdateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"post\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"upsertOnepost\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpdateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"post\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"updateManypost\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpdateManyMutationInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"BatchPayload\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"deleteManypost\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"BatchPayload\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"createOneCategory\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryCreateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Category\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"deleteOneCategory\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Category\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"updateOneCategory\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryUpdateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Category\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"upsertOneCategory\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryCreateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryUpdateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Category\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"updateManyCategory\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryUpdateManyMutationInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"BatchPayload\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"deleteManyCategory\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"BatchPayload\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"createOnePatient\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientCreateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Patient\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"deleteOnePatient\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Patient\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"updateOnePatient\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientUpdateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Patient\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"upsertOnePatient\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientCreateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientUpdateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Patient\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"updateManyPatient\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientUpdateManyMutationInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"BatchPayload\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"deleteManyPatient\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"BatchPayload\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"createOneMovie\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieCreateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Movie\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"deleteOneMovie\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Movie\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"updateOneMovie\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieUpdateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Movie\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"upsertOneMovie\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieCreateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieUpdateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Movie\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"updateManyMovie\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieUpdateManyMutationInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"BatchPayload\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"deleteManyMovie\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"BatchPayload\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"createOneDirector\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorCreateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Director\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"deleteOneDirector\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Director\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"updateOneDirector\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorUpdateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Director\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"upsertOneDirector\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorCreateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorUpdateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Director\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"updateManyDirector\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorUpdateManyMutationInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"BatchPayload\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"deleteManyDirector\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"BatchPayload\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"createOneProblem\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Problem\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"deleteOneProblem\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Problem\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"updateOneProblem\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpdateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Problem\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"upsertOneProblem\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpdateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Problem\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"updateManyProblem\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpdateManyMutationInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"BatchPayload\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"deleteManyProblem\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"BatchPayload\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"createOneCreator\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Creator\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"deleteOneCreator\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Creator\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"updateOneCreator\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorUpdateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Creator\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"upsertOneCreator\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorUpdateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Creator\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"updateManyCreator\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorUpdateManyMutationInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"BatchPayload\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"deleteManyCreator\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"BatchPayload\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"executeRaw\",\"args\":[{\"name\":\"query\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"parameters\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Json\",\"location\":\"scalar\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Json\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"queryRaw\",\"args\":[{\"name\":\"query\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"parameters\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Json\",\"location\":\"scalar\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Json\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"AggregateUser\",\"fields\":[{\"name\":\"count\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"avg\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"UserAvgAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"sum\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"UserSumAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"min\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"UserMinAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"max\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"UserMaxAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}}]},{\"name\":\"AggregatePost\",\"fields\":[{\"name\":\"count\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"avg\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"PostAvgAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"sum\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"PostSumAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"min\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"PostMinAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"max\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"PostMaxAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}}]},{\"name\":\"AggregateCategory\",\"fields\":[{\"name\":\"count\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"avg\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"CategoryAvgAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"sum\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"CategorySumAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"min\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"CategoryMinAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"max\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"CategoryMaxAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}}]},{\"name\":\"AggregatePatient\",\"fields\":[{\"name\":\"count\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"AggregateMovie\",\"fields\":[{\"name\":\"count\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"AggregateDirector\",\"fields\":[{\"name\":\"count\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"AggregateProblem\",\"fields\":[{\"name\":\"count\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"avg\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"ProblemAvgAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"sum\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"ProblemSumAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"min\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"ProblemMinAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"max\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"ProblemMaxAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}}]},{\"name\":\"AggregateCreator\",\"fields\":[{\"name\":\"count\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"avg\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"CreatorAvgAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"sum\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"CreatorSumAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"min\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"CreatorMinAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"max\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"CreatorMaxAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}}]},{\"name\":\"BatchPayload\",\"fields\":[{\"name\":\"count\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"UserAvgAggregateOutputType\",\"fields\":[{\"name\":\"id\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"age\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"balance\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"amount\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"UserSumAggregateOutputType\",\"fields\":[{\"name\":\"id\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"age\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"balance\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"amount\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"UserMinAggregateOutputType\",\"fields\":[{\"name\":\"id\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"age\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"balance\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"amount\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"UserMaxAggregateOutputType\",\"fields\":[{\"name\":\"id\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"age\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"balance\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"amount\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"PostAvgAggregateOutputType\",\"fields\":[{\"name\":\"authorId\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"editorId\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"PostSumAggregateOutputType\",\"fields\":[{\"name\":\"authorId\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"editorId\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"PostMinAggregateOutputType\",\"fields\":[{\"name\":\"authorId\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"editorId\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"PostMaxAggregateOutputType\",\"fields\":[{\"name\":\"authorId\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"editorId\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"CategoryAvgAggregateOutputType\",\"fields\":[{\"name\":\"number\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"CategorySumAggregateOutputType\",\"fields\":[{\"name\":\"number\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"CategoryMinAggregateOutputType\",\"fields\":[{\"name\":\"number\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"CategoryMaxAggregateOutputType\",\"fields\":[{\"name\":\"number\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"ProblemAvgAggregateOutputType\",\"fields\":[{\"name\":\"id\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"creatorId\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"ProblemSumAggregateOutputType\",\"fields\":[{\"name\":\"id\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"creatorId\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"ProblemMinAggregateOutputType\",\"fields\":[{\"name\":\"id\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"creatorId\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"ProblemMaxAggregateOutputType\",\"fields\":[{\"name\":\"id\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"creatorId\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"CreatorAvgAggregateOutputType\",\"fields\":[{\"name\":\"id\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"CreatorSumAggregateOutputType\",\"fields\":[{\"name\":\"id\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"CreatorMinAggregateOutputType\",\"fields\":[{\"name\":\"id\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"CreatorMaxAggregateOutputType\",\"fields\":[{\"name\":\"id\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]}],\"model\":[{\"name\":\"User\",\"fields\":[{\"name\":\"id\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"email\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"name\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"age\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"balance\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"amount\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"posts\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"postOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PostDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"post\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":true}},{\"name\":\"role\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false}},{\"name\":\"editorPosts\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"postOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PostDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"post\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":true}}]},{\"name\":\"post\",\"fields\":[{\"name\":\"uuid\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"createdAt\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"updatedAt\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"published\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"title\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"subtitle\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"content\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"author\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"User\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"authorId\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"editor\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"User\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"editorId\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"kind\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false}},{\"name\":\"metadata\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Json\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"Category\",\"fields\":[{\"name\":\"name\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"slug\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"number\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"Patient\",\"fields\":[{\"name\":\"firstName\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"lastName\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"email\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"Movie\",\"fields\":[{\"name\":\"directorFirstName\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"directorLastName\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"director\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Director\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"title\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"Director\",\"fields\":[{\"name\":\"firstName\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"lastName\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"movies\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"MovieOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Movie\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":true}}]},{\"name\":\"Problem\",\"fields\":[{\"name\":\"id\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"problemText\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"likedBy\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"CreatorOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Creator\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":true}},{\"name\":\"creator\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Creator\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"creatorId\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"Creator\",\"fields\":[{\"name\":\"id\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"name\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"likes\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"ProblemOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Problem\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":true}},{\"name\":\"problems\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"ProblemOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Problem\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":true}}]}]},\"enumTypes\":{\"model\":[{\"name\":\"Role\",\"values\":[\"USER\",\"ADMIN\"]},{\"name\":\"PostKind\",\"values\":[\"BLOG\",\"ADVERT\"]}],\"prisma\":[{\"name\":\"UserDistinctFieldEnum\",\"values\":[\"id\",\"email\",\"name\",\"age\",\"balance\",\"amount\",\"role\"]},{\"name\":\"PostDistinctFieldEnum\",\"values\":[\"uuid\",\"createdAt\",\"updatedAt\",\"published\",\"title\",\"subtitle\",\"content\",\"authorId\",\"editorId\",\"kind\",\"metadata\"]},{\"name\":\"CategoryDistinctFieldEnum\",\"values\":[\"name\",\"slug\",\"number\"]},{\"name\":\"PatientDistinctFieldEnum\",\"values\":[\"firstName\",\"lastName\",\"email\"]},{\"name\":\"MovieDistinctFieldEnum\",\"values\":[\"directorFirstName\",\"directorLastName\",\"title\"]},{\"name\":\"DirectorDistinctFieldEnum\",\"values\":[\"firstName\",\"lastName\"]},{\"name\":\"ProblemDistinctFieldEnum\",\"values\":[\"id\",\"problemText\",\"creatorId\"]},{\"name\":\"CreatorDistinctFieldEnum\",\"values\":[\"id\",\"name\"]},{\"name\":\"SortOrder\",\"values\":[\"asc\",\"desc\"]},{\"name\":\"QueryMode\",\"values\":[\"default\",\"insensitive\"]}]}},\"mappings\":{\"modelOperations\":[{\"model\":\"User\",\"plural\":\"users\",\"findUnique\":\"findOneUser\",\"findFirst\":\"findFirstUser\",\"findMany\":\"findManyUser\",\"create\":\"createOneUser\",\"delete\":\"deleteOneUser\",\"update\":\"updateOneUser\",\"deleteMany\":\"deleteManyUser\",\"updateMany\":\"updateManyUser\",\"upsert\":\"upsertOneUser\",\"aggregate\":\"aggregateUser\"},{\"model\":\"post\",\"plural\":\"posts\",\"findUnique\":\"findOnepost\",\"findFirst\":\"findFirstpost\",\"findMany\":\"findManypost\",\"create\":\"createOnepost\",\"delete\":\"deleteOnepost\",\"update\":\"updateOnepost\",\"deleteMany\":\"deleteManypost\",\"updateMany\":\"updateManypost\",\"upsert\":\"upsertOnepost\",\"aggregate\":\"aggregatepost\"},{\"model\":\"Category\",\"plural\":\"categories\",\"findUnique\":\"findOneCategory\",\"findFirst\":\"findFirstCategory\",\"findMany\":\"findManyCategory\",\"create\":\"createOneCategory\",\"delete\":\"deleteOneCategory\",\"update\":\"updateOneCategory\",\"deleteMany\":\"deleteManyCategory\",\"updateMany\":\"updateManyCategory\",\"upsert\":\"upsertOneCategory\",\"aggregate\":\"aggregateCategory\"},{\"model\":\"Patient\",\"plural\":\"patients\",\"findUnique\":\"findOnePatient\",\"findFirst\":\"findFirstPatient\",\"findMany\":\"findManyPatient\",\"create\":\"createOnePatient\",\"delete\":\"deleteOnePatient\",\"update\":\"updateOnePatient\",\"deleteMany\":\"deleteManyPatient\",\"updateMany\":\"updateManyPatient\",\"upsert\":\"upsertOnePatient\",\"aggregate\":\"aggregatePatient\"},{\"model\":\"Movie\",\"plural\":\"movies\",\"findUnique\":\"findOneMovie\",\"findFirst\":\"findFirstMovie\",\"findMany\":\"findManyMovie\",\"create\":\"createOneMovie\",\"delete\":\"deleteOneMovie\",\"update\":\"updateOneMovie\",\"deleteMany\":\"deleteManyMovie\",\"updateMany\":\"updateManyMovie\",\"upsert\":\"upsertOneMovie\",\"aggregate\":\"aggregateMovie\"},{\"model\":\"Director\",\"plural\":\"directors\",\"findUnique\":\"findOneDirector\",\"findFirst\":\"findFirstDirector\",\"findMany\":\"findManyDirector\",\"create\":\"createOneDirector\",\"delete\":\"deleteOneDirector\",\"update\":\"updateOneDirector\",\"deleteMany\":\"deleteManyDirector\",\"updateMany\":\"updateManyDirector\",\"upsert\":\"upsertOneDirector\",\"aggregate\":\"aggregateDirector\"},{\"model\":\"Problem\",\"plural\":\"problems\",\"findUnique\":\"findOneProblem\",\"findFirst\":\"findFirstProblem\",\"findMany\":\"findManyProblem\",\"create\":\"createOneProblem\",\"delete\":\"deleteOneProblem\",\"update\":\"updateOneProblem\",\"deleteMany\":\"deleteManyProblem\",\"updateMany\":\"updateManyProblem\",\"upsert\":\"upsertOneProblem\",\"aggregate\":\"aggregateProblem\"},{\"model\":\"Creator\",\"plural\":\"creators\",\"findUnique\":\"findOneCreator\",\"findFirst\":\"findFirstCreator\",\"findMany\":\"findManyCreator\",\"create\":\"createOneCreator\",\"delete\":\"deleteOneCreator\",\"update\":\"updateOneCreator\",\"deleteMany\":\"deleteManyCreator\",\"updateMany\":\"updateManyCreator\",\"upsert\":\"upsertOneCreator\",\"aggregate\":\"aggregateCreator\"}],\"otherOperations\":{\"read\":[],\"write\":[\"executeRaw\",\"queryRaw\"]}}}" +const dmmfString = "{\"datamodel\":{\"enums\":[{\"name\":\"Role\",\"values\":[{\"name\":\"USER\",\"dbName\":null},{\"name\":\"ADMIN\",\"dbName\":null}],\"dbName\":null,\"documentation\":\"Role enum doc\"},{\"name\":\"PostKind\",\"values\":[{\"name\":\"BLOG\",\"dbName\":null},{\"name\":\"ADVERT\",\"dbName\":null}],\"dbName\":null}],\"models\":[{\"name\":\"User\",\"isEmbedded\":false,\"dbName\":null,\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":true,\"isReadOnly\":false,\"type\":\"Int\",\"hasDefaultValue\":true,\"default\":{\"name\":\"autoincrement\",\"args\":[]},\"isGenerated\":false,\"isUpdatedAt\":false,\"documentation\":\"User model field doc\"},{\"name\":\"email\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":true,\"isId\":false,\"isReadOnly\":false,\"type\":\"String\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"name\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":false,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"String\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false,\"documentation\":\"renamed field doc\\\\n@TypeGraphQL.field(name: \\\"firstName\\\")\"},{\"name\":\"age\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"Int\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"balance\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"Float\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false,\"documentation\":\"@TypeGraphQL.field(name: \\\"accountBalance\\\")\"},{\"name\":\"amount\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"Float\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"posts\",\"kind\":\"object\",\"isList\":true,\"isRequired\":false,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"post\",\"hasDefaultValue\":false,\"relationName\":\"posts\",\"relationFromFields\":[],\"relationToFields\":[],\"relationOnDelete\":\"NONE\",\"isGenerated\":false,\"isUpdatedAt\":false,\"documentation\":\"@TypeGraphQL.field(name: \\\"clientPosts\\\")\"},{\"name\":\"role\",\"kind\":\"enum\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"Role\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"editorPosts\",\"kind\":\"object\",\"isList\":true,\"isRequired\":false,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"post\",\"hasDefaultValue\":false,\"relationName\":\"editorPosts\",\"relationFromFields\":[],\"relationToFields\":[],\"relationOnDelete\":\"NONE\",\"isGenerated\":false,\"isUpdatedAt\":false,\"documentation\":\"@TypeGraphQL.omit(output: true)\"}],\"isGenerated\":false,\"documentation\":\"User model doc\\\\n@@TypeGraphQL.type(name: \\\"Client\\\")\",\"idFields\":[],\"uniqueFields\":[],\"uniqueIndexes\":[]},{\"name\":\"post\",\"isEmbedded\":false,\"dbName\":null,\"fields\":[{\"name\":\"uuid\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":true,\"isReadOnly\":false,\"type\":\"String\",\"hasDefaultValue\":true,\"default\":{\"name\":\"uuid\",\"args\":[]},\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"createdAt\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"DateTime\",\"hasDefaultValue\":true,\"default\":{\"name\":\"now\",\"args\":[]},\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"updatedAt\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"DateTime\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":true},{\"name\":\"published\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"Boolean\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"title\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"String\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"subtitle\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"String\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false,\"documentation\":\"@TypeGraphQL.omit(output: true)\"},{\"name\":\"content\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":false,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"String\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"author\",\"kind\":\"object\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"User\",\"hasDefaultValue\":false,\"relationName\":\"posts\",\"relationFromFields\":[\"authorId\"],\"relationToFields\":[\"id\"],\"relationOnDelete\":\"NONE\",\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"authorId\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":true,\"type\":\"Int\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"editor\",\"kind\":\"object\",\"isList\":false,\"isRequired\":false,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"User\",\"hasDefaultValue\":false,\"relationName\":\"editorPosts\",\"relationFromFields\":[\"editorId\"],\"relationToFields\":[\"id\"],\"relationOnDelete\":\"NONE\",\"isGenerated\":false,\"isUpdatedAt\":false,\"documentation\":\"@TypeGraphQL.omit(output: true)\"},{\"name\":\"editorId\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":false,\"isUnique\":false,\"isId\":false,\"isReadOnly\":true,\"type\":\"Int\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false,\"documentation\":\"@TypeGraphQL.omit(output: true)\"},{\"name\":\"kind\",\"kind\":\"enum\",\"isList\":false,\"isRequired\":false,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"PostKind\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"metadata\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"Json\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false}],\"isGenerated\":false,\"idFields\":[],\"uniqueFields\":[],\"uniqueIndexes\":[]},{\"name\":\"Category\",\"isEmbedded\":false,\"dbName\":null,\"fields\":[{\"name\":\"name\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"String\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"slug\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"String\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"number\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"Int\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false}],\"isGenerated\":false,\"idFields\":[],\"uniqueFields\":[[\"slug\",\"number\"]],\"uniqueIndexes\":[{\"name\":null,\"fields\":[\"slug\",\"number\"]}]},{\"name\":\"Patient\",\"isEmbedded\":false,\"dbName\":null,\"fields\":[{\"name\":\"firstName\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"String\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"lastName\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"String\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"email\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"String\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false}],\"isGenerated\":false,\"idFields\":[\"firstName\",\"lastName\"],\"uniqueFields\":[],\"uniqueIndexes\":[]},{\"name\":\"Movie\",\"isEmbedded\":false,\"dbName\":null,\"fields\":[{\"name\":\"directorFirstName\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":true,\"type\":\"String\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"directorLastName\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":true,\"type\":\"String\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"director\",\"kind\":\"object\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"Director\",\"hasDefaultValue\":false,\"relationName\":\"DirectorToMovie\",\"relationFromFields\":[\"directorFirstName\",\"directorLastName\"],\"relationToFields\":[\"firstName\",\"lastName\"],\"relationOnDelete\":\"NONE\",\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"title\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"String\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false}],\"isGenerated\":false,\"idFields\":[\"directorFirstName\",\"directorLastName\",\"title\"],\"uniqueFields\":[],\"uniqueIndexes\":[]},{\"name\":\"Director\",\"isEmbedded\":false,\"dbName\":null,\"fields\":[{\"name\":\"firstName\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"String\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"lastName\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"String\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"movies\",\"kind\":\"object\",\"isList\":true,\"isRequired\":false,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"Movie\",\"hasDefaultValue\":false,\"relationName\":\"DirectorToMovie\",\"relationFromFields\":[],\"relationToFields\":[],\"relationOnDelete\":\"NONE\",\"isGenerated\":false,\"isUpdatedAt\":false}],\"isGenerated\":false,\"idFields\":[\"firstName\",\"lastName\"],\"uniqueFields\":[],\"uniqueIndexes\":[]},{\"name\":\"Problem\",\"isEmbedded\":false,\"dbName\":null,\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":true,\"isReadOnly\":false,\"type\":\"Int\",\"hasDefaultValue\":true,\"default\":{\"name\":\"autoincrement\",\"args\":[]},\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"problemText\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"String\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"likedBy\",\"kind\":\"object\",\"isList\":true,\"isRequired\":false,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"Creator\",\"hasDefaultValue\":false,\"relationName\":\"CreatorToProblem\",\"relationFromFields\":[],\"relationToFields\":[\"id\"],\"relationOnDelete\":\"NONE\",\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"creator\",\"kind\":\"object\",\"isList\":false,\"isRequired\":false,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"Creator\",\"hasDefaultValue\":false,\"relationName\":\"creator\",\"relationFromFields\":[\"creatorId\"],\"relationToFields\":[\"id\"],\"relationOnDelete\":\"NONE\",\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"creatorId\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":false,\"isUnique\":false,\"isId\":false,\"isReadOnly\":true,\"type\":\"Int\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false}],\"isGenerated\":false,\"idFields\":[],\"uniqueFields\":[],\"uniqueIndexes\":[]},{\"name\":\"Creator\",\"isEmbedded\":false,\"dbName\":null,\"fields\":[{\"name\":\"id\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":true,\"isReadOnly\":false,\"type\":\"Int\",\"hasDefaultValue\":true,\"default\":{\"name\":\"autoincrement\",\"args\":[]},\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"name\",\"kind\":\"scalar\",\"isList\":false,\"isRequired\":true,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"String\",\"hasDefaultValue\":false,\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"likes\",\"kind\":\"object\",\"isList\":true,\"isRequired\":false,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"Problem\",\"hasDefaultValue\":false,\"relationName\":\"CreatorToProblem\",\"relationFromFields\":[],\"relationToFields\":[\"id\"],\"relationOnDelete\":\"NONE\",\"isGenerated\":false,\"isUpdatedAt\":false},{\"name\":\"problems\",\"kind\":\"object\",\"isList\":true,\"isRequired\":false,\"isUnique\":false,\"isId\":false,\"isReadOnly\":false,\"type\":\"Problem\",\"hasDefaultValue\":false,\"relationName\":\"creator\",\"relationFromFields\":[],\"relationToFields\":[],\"relationOnDelete\":\"NONE\",\"isGenerated\":false,\"isUpdatedAt\":false}],\"isGenerated\":false,\"idFields\":[],\"uniqueFields\":[],\"uniqueIndexes\":[]}]},\"schema\":{\"inputObjectTypes\":{\"prisma\":[{\"name\":\"UserWhereInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"AND\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"UserWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"OR\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"UserWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"NOT\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"UserWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"id\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"IntFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"email\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"name\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"StringNullableFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"age\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"IntFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"balance\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"FloatFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"amount\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"FloatFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"posts\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PostListRelationFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"role\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"EnumRoleFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"editorPosts\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PostListRelationFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"UserOrderByInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":0},\"fields\":[{\"name\":\"id\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"email\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"name\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"age\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"balance\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"amount\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"role\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]}]},{\"name\":\"UserWhereUniqueInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":1},\"fields\":[{\"name\":\"id\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"email\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"postWhereInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"AND\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"OR\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"NOT\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"uuid\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"createdAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTimeFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"updatedAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTimeFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"published\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"BoolFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"title\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"subtitle\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"content\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"StringNullableFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"author\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserRelationFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"UserWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"authorId\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"IntFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"editor\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"UserRelationFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"UserWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"editorId\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"IntNullableFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"kind\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"EnumPostKindNullableFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"metadata\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"JsonFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"postOrderByInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":0},\"fields\":[{\"name\":\"uuid\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"createdAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"updatedAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"published\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"title\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"subtitle\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"content\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"authorId\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"editorId\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"kind\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"metadata\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]}]},{\"name\":\"postWhereUniqueInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":1},\"fields\":[{\"name\":\"uuid\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"CategoryWhereInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"AND\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CategoryWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"OR\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CategoryWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"NOT\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CategoryWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"name\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"slug\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"number\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"IntFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"CategoryOrderByInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":0},\"fields\":[{\"name\":\"name\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"slug\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"number\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]}]},{\"name\":\"CategoryWhereUniqueInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":1},\"fields\":[{\"name\":\"slug_number\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SlugNumberCompoundUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"PatientWhereInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"AND\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"PatientWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"OR\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"PatientWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"NOT\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"PatientWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"firstName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lastName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"email\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"PatientOrderByInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":0},\"fields\":[{\"name\":\"firstName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"lastName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"email\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]}]},{\"name\":\"PatientWhereUniqueInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":1},\"fields\":[{\"name\":\"firstName_lastName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"FirstNameLastNameCompoundUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"MovieWhereInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"AND\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"OR\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"NOT\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"directorFirstName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"directorLastName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"director\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorRelationFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"DirectorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"title\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"MovieOrderByInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":0},\"fields\":[{\"name\":\"directorFirstName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"directorLastName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"title\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]}]},{\"name\":\"MovieWhereUniqueInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":1},\"fields\":[{\"name\":\"directorFirstName_directorLastName_title\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorFirstNameDirectorLastNameTitleCompoundUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"DirectorWhereInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"AND\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"DirectorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"OR\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"DirectorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"NOT\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"DirectorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"firstName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lastName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"movies\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieListRelationFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"DirectorOrderByInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":0},\"fields\":[{\"name\":\"firstName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"lastName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]}]},{\"name\":\"DirectorWhereUniqueInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":1},\"fields\":[{\"name\":\"firstName_lastName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"FirstNameLastNameCompoundUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"ProblemWhereInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"AND\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"OR\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"NOT\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"id\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"IntFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"problemText\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"likedBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorListRelationFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"creator\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"CreatorRelationFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"creatorId\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"IntNullableFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"ProblemOrderByInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":0},\"fields\":[{\"name\":\"id\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"problemText\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"creatorId\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]}]},{\"name\":\"ProblemWhereUniqueInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":1},\"fields\":[{\"name\":\"id\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"CreatorWhereInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"AND\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"OR\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"NOT\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"id\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"IntFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"name\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"likes\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemListRelationFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"problems\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemListRelationFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CreatorOrderByInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":0},\"fields\":[{\"name\":\"id\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"name\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"SortOrder\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]}]},{\"name\":\"CreatorWhereUniqueInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":1},\"fields\":[{\"name\":\"id\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"UserCreateInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"email\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"name\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"age\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"balance\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"amount\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"role\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"posts\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateManyWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"editorPosts\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateManyWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"UserUpdateInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"email\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"name\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NullableStringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"age\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"IntFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"balance\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"FloatFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"amount\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"FloatFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"role\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"EnumRoleFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"posts\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpdateManyWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"editorPosts\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpdateManyWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"UserUpdateManyMutationInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"email\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"name\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NullableStringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"age\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"IntFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"balance\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"FloatFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"amount\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"FloatFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"role\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"EnumRoleFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"postCreateInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"uuid\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"createdAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"updatedAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"published\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"title\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"subtitle\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"content\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"kind\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"metadata\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Json\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"author\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateOneWithoutPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"editor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateOneWithoutEditorPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"postUpdateInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"uuid\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"createdAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"DateTimeFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"updatedAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"DateTimeFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"published\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"BoolFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"title\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"subtitle\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"content\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NullableStringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"kind\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"NullableEnumPostKindFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"metadata\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Json\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"author\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserUpdateOneRequiredWithoutPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"editor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserUpdateOneWithoutEditorPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"postUpdateManyMutationInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"uuid\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"createdAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"DateTimeFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"updatedAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"DateTimeFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"published\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"BoolFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"title\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"subtitle\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"content\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NullableStringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"kind\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"NullableEnumPostKindFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"metadata\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Json\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"CategoryCreateInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"name\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"slug\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"number\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"CategoryUpdateInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"name\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"slug\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"number\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"IntFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CategoryUpdateManyMutationInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"name\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"slug\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"number\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"IntFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"PatientCreateInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"firstName\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lastName\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"email\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"PatientUpdateInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"firstName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"lastName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"email\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"PatientUpdateManyMutationInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"firstName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"lastName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"email\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"MovieCreateInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"title\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"director\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorCreateOneWithoutMoviesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"MovieUpdateInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"title\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"director\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorUpdateOneRequiredWithoutMoviesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"MovieUpdateManyMutationInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"title\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"DirectorCreateInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"firstName\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lastName\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"movies\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieCreateManyWithoutDirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"DirectorUpdateInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"firstName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"lastName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"movies\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieUpdateManyWithoutDirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"DirectorUpdateManyMutationInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"firstName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"lastName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"ProblemCreateInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"problemText\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"likedBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateManyWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"creator\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateOneWithoutProblemsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"ProblemUpdateInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"problemText\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"likedBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorUpdateManyWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"creator\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorUpdateOneWithoutProblemsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"ProblemUpdateManyMutationInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"problemText\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CreatorCreateInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"name\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"likes\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateManyWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"problems\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateManyWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CreatorUpdateInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"name\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"likes\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpdateManyWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"problems\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpdateManyWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CreatorUpdateManyMutationInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"name\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"IntFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"in\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":true}]},{\"name\":\"notIn\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":true}]},{\"name\":\"lt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NestedIntFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"StringFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"in\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":true}]},{\"name\":\"notIn\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":true}]},{\"name\":\"lt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"contains\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"startsWith\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"endsWith\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"mode\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"QueryMode\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NestedStringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"StringNullableFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"in\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":true},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"notIn\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":true},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"contains\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"startsWith\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"endsWith\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"mode\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"QueryMode\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NestedStringNullableFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"FloatFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"in\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":true}]},{\"name\":\"notIn\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":true}]},{\"name\":\"lt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NestedFloatFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"PostListRelationFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"every\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"some\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"none\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"EnumRoleFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"in\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":true}]},{\"name\":\"notIn\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":true}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"NestedEnumRoleFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"DateTimeFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"in\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":true}]},{\"name\":\"notIn\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":true}]},{\"name\":\"lt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NestedDateTimeFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"BoolFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NestedBoolFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"UserRelationFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"is\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"isNot\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"IntNullableFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"in\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":true},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"notIn\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":true},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NestedIntNullableFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"EnumPostKindNullableFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"in\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":true},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"notIn\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":true},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"NestedEnumPostKindNullableFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"JsonFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Json\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Json\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"SlugNumberCompoundUniqueInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"slug\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"number\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"FirstNameLastNameCompoundUniqueInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"firstName\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lastName\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"DirectorRelationFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"is\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"isNot\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"DirectorFirstNameDirectorLastNameTitleCompoundUniqueInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"directorFirstName\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"directorLastName\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"title\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"MovieListRelationFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"every\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"some\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"none\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CreatorListRelationFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"every\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"some\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"none\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CreatorRelationFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"is\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"isNot\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"ProblemListRelationFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"every\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"some\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"none\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"postCreateManyWithoutAuthorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postCreateWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateOrConnectWithoutauthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postCreateOrConnectWithoutauthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]}]},{\"name\":\"postCreateManyWithoutEditorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postCreateWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateOrConnectWithouteditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postCreateOrConnectWithouteditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]}]},{\"name\":\"StringFieldUpdateOperationsInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":1},\"fields\":[{\"name\":\"set\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"NullableStringFieldUpdateOperationsInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":1},\"fields\":[{\"name\":\"set\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"IntFieldUpdateOperationsInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":1},\"fields\":[{\"name\":\"set\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"increment\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"decrement\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"multiply\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"divide\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"FloatFieldUpdateOperationsInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":1},\"fields\":[{\"name\":\"set\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"increment\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"decrement\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"multiply\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"divide\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"EnumRoleFieldUpdateOperationsInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":1},\"fields\":[{\"name\":\"set\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false}]}]},{\"name\":\"postUpdateManyWithoutAuthorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postCreateWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"set\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"disconnect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"delete\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"update\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpdateWithWhereUniqueWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postUpdateWithWhereUniqueWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"updateMany\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpdateManyWithWhereWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postUpdateManyWithWhereWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"deleteMany\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"upsert\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpsertWithWhereUniqueWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postUpsertWithWhereUniqueWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateOrConnectWithoutauthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postCreateOrConnectWithoutauthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]}]},{\"name\":\"postUpdateManyWithoutEditorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postCreateWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"set\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"disconnect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"delete\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"update\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpdateWithWhereUniqueWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postUpdateWithWhereUniqueWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"updateMany\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpdateManyWithWhereWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postUpdateManyWithWhereWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"deleteMany\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"upsert\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpsertWithWhereUniqueWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postUpsertWithWhereUniqueWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateOrConnectWithouteditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postCreateOrConnectWithouteditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]}]},{\"name\":\"UserCreateOneWithoutPostsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateWithoutPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateOrConnectWithoutpostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"UserCreateOneWithoutEditorPostsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateWithoutEditorPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateOrConnectWithouteditorPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"DateTimeFieldUpdateOperationsInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":1},\"fields\":[{\"name\":\"set\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"BoolFieldUpdateOperationsInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":1},\"fields\":[{\"name\":\"set\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"NullableEnumPostKindFieldUpdateOperationsInput\",\"constraints\":{\"maxNumFields\":1,\"minNumFields\":1},\"fields\":[{\"name\":\"set\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"UserUpdateOneRequiredWithoutPostsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateWithoutPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserUpdateWithoutPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"upsert\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserUpsertWithoutPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateOrConnectWithoutpostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"UserUpdateOneWithoutEditorPostsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateWithoutEditorPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"disconnect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"delete\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserUpdateWithoutEditorPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"upsert\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserUpsertWithoutEditorPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateOrConnectWithouteditorPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"DirectorCreateOneWithoutMoviesInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorCreateWithoutMoviesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorCreateOrConnectWithoutmoviesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"DirectorUpdateOneRequiredWithoutMoviesInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorCreateWithoutMoviesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorUpdateWithoutMoviesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"upsert\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorUpsertWithoutMoviesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorCreateOrConnectWithoutmoviesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"MovieCreateManyWithoutDirectorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieCreateWithoutDirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieCreateWithoutDirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieCreateOrConnectWithoutdirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieCreateOrConnectWithoutdirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]}]},{\"name\":\"MovieUpdateManyWithoutDirectorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieCreateWithoutDirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieCreateWithoutDirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"set\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"disconnect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"delete\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"update\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieUpdateWithWhereUniqueWithoutDirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieUpdateWithWhereUniqueWithoutDirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"updateMany\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieUpdateManyWithWhereWithoutDirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieUpdateManyWithWhereWithoutDirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"deleteMany\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"upsert\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieUpsertWithWhereUniqueWithoutDirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieUpsertWithWhereUniqueWithoutDirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieCreateOrConnectWithoutdirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieCreateOrConnectWithoutdirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]}]},{\"name\":\"CreatorCreateManyWithoutLikesInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorCreateWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateOrConnectWithoutlikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorCreateOrConnectWithoutlikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]}]},{\"name\":\"CreatorCreateOneWithoutProblemsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateWithoutProblemsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateOrConnectWithoutproblemsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CreatorUpdateManyWithoutLikesInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorCreateWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"set\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"disconnect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"delete\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"update\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorUpdateWithWhereUniqueWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorUpdateWithWhereUniqueWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"updateMany\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorUpdateManyWithWhereWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorUpdateManyWithWhereWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"deleteMany\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"upsert\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorUpsertWithWhereUniqueWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorUpsertWithWhereUniqueWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateOrConnectWithoutlikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorCreateOrConnectWithoutlikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]}]},{\"name\":\"CreatorUpdateOneWithoutProblemsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateWithoutProblemsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"disconnect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"delete\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorUpdateWithoutProblemsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"upsert\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorUpsertWithoutProblemsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateOrConnectWithoutproblemsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"ProblemCreateManyWithoutLikedByInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemCreateWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateOrConnectWithoutlikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemCreateOrConnectWithoutlikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]}]},{\"name\":\"ProblemCreateManyWithoutCreatorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemCreateWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateOrConnectWithoutcreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemCreateOrConnectWithoutcreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]}]},{\"name\":\"ProblemUpdateManyWithoutLikedByInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemCreateWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"set\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"disconnect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"delete\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"update\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpdateWithWhereUniqueWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemUpdateWithWhereUniqueWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"updateMany\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpdateManyWithWhereWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemUpdateManyWithWhereWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"deleteMany\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"upsert\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpsertWithWhereUniqueWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemUpsertWithWhereUniqueWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateOrConnectWithoutlikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemCreateOrConnectWithoutlikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]}]},{\"name\":\"ProblemUpdateManyWithoutCreatorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"create\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemCreateWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"set\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"disconnect\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"delete\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"update\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpdateWithWhereUniqueWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemUpdateWithWhereUniqueWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"updateMany\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpdateManyWithWhereWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemUpdateManyWithWhereWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"deleteMany\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"upsert\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpsertWithWhereUniqueWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemUpsertWithWhereUniqueWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"connectOrCreate\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateOrConnectWithoutcreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemCreateOrConnectWithoutcreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]}]},{\"name\":\"NestedIntFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"in\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":true}]},{\"name\":\"notIn\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":true}]},{\"name\":\"lt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NestedIntFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"NestedStringFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"in\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":true}]},{\"name\":\"notIn\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":true}]},{\"name\":\"lt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"contains\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"startsWith\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"endsWith\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NestedStringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"NestedStringNullableFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"in\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":true},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"notIn\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":true},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"contains\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"startsWith\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"endsWith\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NestedStringNullableFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"NestedFloatFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"in\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":true}]},{\"name\":\"notIn\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":true}]},{\"name\":\"lt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NestedFloatFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"NestedEnumRoleFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"in\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":true}]},{\"name\":\"notIn\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":true}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"NestedEnumRoleFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"NestedDateTimeFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"in\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":true}]},{\"name\":\"notIn\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":true}]},{\"name\":\"lt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NestedDateTimeFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"NestedBoolFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NestedBoolFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"NestedIntNullableFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"in\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":true},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"notIn\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":true},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"gte\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NestedIntNullableFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"NestedEnumPostKindNullableFilter\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"equals\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"in\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":true},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"notIn\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":true},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"not\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"NestedEnumPostKindNullableFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"postCreateWithoutAuthorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"uuid\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"createdAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"updatedAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"published\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"title\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"subtitle\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"content\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"kind\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"metadata\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Json\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"editor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateOneWithoutEditorPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"postCreateOrConnectWithoutauthorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"postCreateWithoutEditorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"uuid\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"createdAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"updatedAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"published\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"title\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"subtitle\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"content\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"kind\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"metadata\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Json\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"author\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateOneWithoutPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"postCreateOrConnectWithouteditorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"postUpdateWithWhereUniqueWithoutAuthorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpdateWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"postUpdateManyWithWhereWithoutAuthorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpdateManyMutationInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"postScalarWhereInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"AND\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"OR\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"NOT\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"postScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"uuid\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"createdAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTimeFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"updatedAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTimeFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"published\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"BoolFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"title\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"subtitle\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"content\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"StringNullableFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"authorId\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"IntFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"editorId\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"IntNullableFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"kind\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"EnumPostKindNullableFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"metadata\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"JsonFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"postUpsertWithWhereUniqueWithoutAuthorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpdateWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"postUpdateWithWhereUniqueWithoutEditorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpdateWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"postUpdateManyWithWhereWithoutEditorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpdateManyMutationInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"postUpsertWithWhereUniqueWithoutEditorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpdateWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"UserCreateWithoutPostsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"email\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"name\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"age\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"balance\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"amount\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"role\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"editorPosts\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateManyWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"UserCreateOrConnectWithoutpostsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateWithoutPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"UserCreateWithoutEditorPostsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"email\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"name\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"age\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"balance\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"amount\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"role\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false}]},{\"name\":\"posts\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateManyWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"UserCreateOrConnectWithouteditorPostsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateWithoutEditorPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"UserUpdateWithoutPostsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"email\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"name\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NullableStringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"age\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"IntFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"balance\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"FloatFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"amount\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"FloatFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"role\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"EnumRoleFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"editorPosts\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpdateManyWithoutEditorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"UserUpsertWithoutPostsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserUpdateWithoutPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateWithoutPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"UserUpdateWithoutEditorPostsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"email\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"name\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NullableStringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"age\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"IntFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"balance\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"FloatFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"amount\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"FloatFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"role\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"EnumRoleFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"posts\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpdateManyWithoutAuthorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"UserUpsertWithoutEditorPostsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserUpdateWithoutEditorPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateWithoutEditorPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"DirectorCreateWithoutMoviesInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"firstName\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"lastName\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"DirectorCreateOrConnectWithoutmoviesInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorCreateWithoutMoviesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"DirectorUpdateWithoutMoviesInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"firstName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"lastName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"DirectorUpsertWithoutMoviesInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorUpdateWithoutMoviesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorCreateWithoutMoviesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"MovieCreateWithoutDirectorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"title\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"MovieCreateOrConnectWithoutdirectorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieCreateWithoutDirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"MovieUpdateWithWhereUniqueWithoutDirectorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieUpdateWithoutDirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"MovieUpdateManyWithWhereWithoutDirectorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieUpdateManyMutationInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"MovieScalarWhereInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"AND\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"OR\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"NOT\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"MovieScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"directorFirstName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"directorLastName\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"title\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"MovieUpsertWithWhereUniqueWithoutDirectorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieUpdateWithoutDirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieCreateWithoutDirectorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CreatorCreateWithoutLikesInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"name\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"problems\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateManyWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CreatorCreateOrConnectWithoutlikesInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CreatorCreateWithoutProblemsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"name\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"likes\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateManyWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CreatorCreateOrConnectWithoutproblemsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateWithoutProblemsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CreatorUpdateWithWhereUniqueWithoutLikesInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorUpdateWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CreatorUpdateManyWithWhereWithoutLikesInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorUpdateManyMutationInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CreatorScalarWhereInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"AND\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"OR\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"NOT\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"CreatorScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"id\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"IntFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"name\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"CreatorUpsertWithWhereUniqueWithoutLikesInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorUpdateWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CreatorUpdateWithoutProblemsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"name\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"likes\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpdateManyWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CreatorUpsertWithoutProblemsInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorUpdateWithoutProblemsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateWithoutProblemsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"ProblemCreateWithoutLikedByInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"problemText\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"creator\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateOneWithoutProblemsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"ProblemCreateOrConnectWithoutlikedByInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"ProblemCreateWithoutCreatorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"problemText\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"likedBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateManyWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"ProblemCreateOrConnectWithoutcreatorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"ProblemUpdateWithWhereUniqueWithoutLikedByInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpdateWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"ProblemUpdateManyWithWhereWithoutLikedByInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpdateManyMutationInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"ProblemScalarWhereInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"AND\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"OR\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"NOT\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"ProblemScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true}]},{\"name\":\"id\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"IntFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"problemText\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"StringFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"creatorId\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"IntNullableFilter\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]}]},{\"name\":\"ProblemUpsertWithWhereUniqueWithoutLikedByInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpdateWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateWithoutLikedByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"ProblemUpdateWithWhereUniqueWithoutCreatorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpdateWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"ProblemUpdateManyWithWhereWithoutCreatorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemScalarWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpdateManyMutationInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"ProblemUpsertWithWhereUniqueWithoutCreatorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpdateWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"postUpdateWithoutAuthorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"uuid\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"createdAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"DateTimeFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"updatedAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"DateTimeFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"published\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"BoolFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"title\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"subtitle\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"content\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NullableStringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"kind\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"NullableEnumPostKindFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"metadata\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Json\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"editor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserUpdateOneWithoutEditorPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"postUpdateWithoutEditorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"uuid\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"createdAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"DateTimeFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"updatedAt\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"DateTimeFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"published\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"BoolFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"title\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"subtitle\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"content\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"NullableStringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"kind\",\"isRequired\":false,\"isNullable\":true,\"inputTypes\":[{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false},{\"type\":\"NullableEnumPostKindFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false},{\"type\":\"Null\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"metadata\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Json\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"author\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserUpdateOneRequiredWithoutPostsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"MovieUpdateWithoutDirectorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"title\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"CreatorUpdateWithoutLikesInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"name\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"problems\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpdateManyWithoutCreatorInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"ProblemUpdateWithoutLikedByInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"problemText\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"creator\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorUpdateOneWithoutProblemsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]},{\"name\":\"ProblemUpdateWithoutCreatorInput\",\"constraints\":{\"maxNumFields\":null,\"minNumFields\":null},\"fields\":[{\"name\":\"problemText\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false},{\"type\":\"StringFieldUpdateOperationsInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"likedBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorUpdateManyWithoutLikesInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}]}]},\"outputObjectTypes\":{\"model\":[{\"name\":\"User\",\"fields\":[{\"name\":\"id\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"email\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"name\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"age\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"balance\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"amount\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"posts\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"postOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PostDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"post\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":true}},{\"name\":\"role\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Role\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false}},{\"name\":\"editorPosts\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"postOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PostDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"post\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":true}}]},{\"name\":\"post\",\"fields\":[{\"name\":\"uuid\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"createdAt\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"updatedAt\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"DateTime\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"published\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Boolean\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"title\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"subtitle\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"content\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"author\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"User\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"authorId\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"editor\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"User\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"editorId\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"kind\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"PostKind\",\"namespace\":\"model\",\"location\":\"enumTypes\",\"isList\":false}},{\"name\":\"metadata\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Json\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"Category\",\"fields\":[{\"name\":\"name\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"slug\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"number\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"Patient\",\"fields\":[{\"name\":\"firstName\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"lastName\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"email\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"Movie\",\"fields\":[{\"name\":\"directorFirstName\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"directorLastName\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"director\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Director\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"title\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"Director\",\"fields\":[{\"name\":\"firstName\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"lastName\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"movies\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"MovieOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Movie\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":true}}]},{\"name\":\"Problem\",\"fields\":[{\"name\":\"id\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"problemText\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"likedBy\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"CreatorOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Creator\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":true}},{\"name\":\"creator\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Creator\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"creatorId\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"Creator\",\"fields\":[{\"name\":\"id\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"name\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"likes\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"ProblemOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Problem\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":true}},{\"name\":\"problems\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"ProblemOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Problem\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":true}}]}],\"prisma\":[{\"name\":\"Query\",\"fields\":[{\"name\":\"findFirstUser\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"UserOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"User\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findManyUser\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"UserOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"User\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":true}},{\"name\":\"aggregateUser\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"UserOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"AggregateUser\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findOneUser\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"User\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findFirstpost\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"postOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PostDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"post\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findManypost\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"postOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PostDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"post\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":true}},{\"name\":\"aggregatepost\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"postOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PostDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"AggregatePost\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findOnepost\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"post\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findFirstCategory\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"CategoryOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Category\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findManyCategory\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"CategoryOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Category\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":true}},{\"name\":\"aggregateCategory\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"CategoryOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"AggregateCategory\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findOneCategory\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Category\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findFirstPatient\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"PatientOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Patient\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findManyPatient\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"PatientOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Patient\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":true}},{\"name\":\"aggregatePatient\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"PatientOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"AggregatePatient\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findOnePatient\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Patient\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findFirstMovie\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"MovieOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Movie\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findManyMovie\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"MovieOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Movie\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":true}},{\"name\":\"aggregateMovie\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"MovieOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"AggregateMovie\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findOneMovie\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Movie\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findFirstDirector\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"DirectorOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Director\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findManyDirector\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"DirectorOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Director\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":true}},{\"name\":\"aggregateDirector\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"DirectorOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"AggregateDirector\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findOneDirector\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Director\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findFirstProblem\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"ProblemOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Problem\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findManyProblem\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"ProblemOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Problem\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":true}},{\"name\":\"aggregateProblem\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"ProblemOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"AggregateProblem\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findOneProblem\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Problem\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findFirstCreator\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"CreatorOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Creator\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findManyCreator\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"CreatorOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Creator\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":true}},{\"name\":\"aggregateCreator\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"orderBy\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":true},{\"type\":\"CreatorOrderByInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"cursor\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"take\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"skip\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"distinct\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorDistinctFieldEnum\",\"namespace\":\"prisma\",\"location\":\"enumTypes\",\"isList\":true}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"AggregateCreator\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"findOneCreator\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Creator\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}}]},{\"name\":\"Mutation\",\"fields\":[{\"name\":\"createOneUser\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"User\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"deleteOneUser\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"User\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"updateOneUser\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserUpdateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"User\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"upsertOneUser\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserCreateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserUpdateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"User\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"updateManyUser\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserUpdateManyMutationInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"BatchPayload\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"deleteManyUser\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"UserWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"BatchPayload\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"createOnepost\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"post\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"deleteOnepost\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"post\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"updateOnepost\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpdateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"post\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"upsertOnepost\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postCreateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpdateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"post\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"updateManypost\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postUpdateManyMutationInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"BatchPayload\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"deleteManypost\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"postWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"BatchPayload\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"createOneCategory\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryCreateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Category\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"deleteOneCategory\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Category\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"updateOneCategory\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryUpdateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Category\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"upsertOneCategory\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryCreateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryUpdateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Category\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"updateManyCategory\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryUpdateManyMutationInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"BatchPayload\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"deleteManyCategory\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CategoryWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"BatchPayload\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"createOnePatient\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientCreateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Patient\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"deleteOnePatient\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Patient\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"updateOnePatient\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientUpdateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Patient\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"upsertOnePatient\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientCreateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientUpdateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Patient\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"updateManyPatient\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientUpdateManyMutationInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"BatchPayload\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"deleteManyPatient\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"PatientWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"BatchPayload\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"createOneMovie\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieCreateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Movie\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"deleteOneMovie\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Movie\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"updateOneMovie\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieUpdateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Movie\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"upsertOneMovie\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieCreateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieUpdateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Movie\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"updateManyMovie\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieUpdateManyMutationInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"BatchPayload\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"deleteManyMovie\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"MovieWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"BatchPayload\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"createOneDirector\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorCreateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Director\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"deleteOneDirector\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Director\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"updateOneDirector\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorUpdateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Director\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"upsertOneDirector\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorCreateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorUpdateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Director\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"updateManyDirector\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorUpdateManyMutationInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"BatchPayload\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"deleteManyDirector\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"DirectorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"BatchPayload\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"createOneProblem\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Problem\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"deleteOneProblem\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Problem\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"updateOneProblem\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpdateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Problem\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"upsertOneProblem\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemCreateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpdateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Problem\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"updateManyProblem\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemUpdateManyMutationInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"BatchPayload\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"deleteManyProblem\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"ProblemWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"BatchPayload\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"createOneCreator\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Creator\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"deleteOneCreator\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Creator\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"updateOneCreator\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorUpdateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Creator\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"upsertOneCreator\",\"args\":[{\"name\":\"where\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereUniqueInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"create\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorCreateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"update\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorUpdateInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Creator\",\"namespace\":\"model\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"updateManyCreator\",\"args\":[{\"name\":\"data\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorUpdateManyMutationInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]},{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"BatchPayload\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"deleteManyCreator\",\"args\":[{\"name\":\"where\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"CreatorWhereInput\",\"namespace\":\"prisma\",\"location\":\"inputObjectTypes\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"BatchPayload\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"executeRaw\",\"args\":[{\"name\":\"query\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"parameters\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Json\",\"location\":\"scalar\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Json\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"queryRaw\",\"args\":[{\"name\":\"query\",\"isRequired\":true,\"isNullable\":false,\"inputTypes\":[{\"type\":\"String\",\"location\":\"scalar\",\"isList\":false}]},{\"name\":\"parameters\",\"isRequired\":false,\"isNullable\":false,\"inputTypes\":[{\"type\":\"Json\",\"location\":\"scalar\",\"isList\":false}]}],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Json\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"AggregateUser\",\"fields\":[{\"name\":\"count\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"avg\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"UserAvgAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"sum\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"UserSumAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"min\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"UserMinAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"max\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"UserMaxAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}}]},{\"name\":\"AggregatePost\",\"fields\":[{\"name\":\"count\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"avg\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"PostAvgAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"sum\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"PostSumAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"min\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"PostMinAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"max\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"PostMaxAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}}]},{\"name\":\"AggregateCategory\",\"fields\":[{\"name\":\"count\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"avg\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"CategoryAvgAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"sum\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"CategorySumAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"min\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"CategoryMinAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"max\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"CategoryMaxAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}}]},{\"name\":\"AggregatePatient\",\"fields\":[{\"name\":\"count\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"AggregateMovie\",\"fields\":[{\"name\":\"count\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"AggregateDirector\",\"fields\":[{\"name\":\"count\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"AggregateProblem\",\"fields\":[{\"name\":\"count\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"avg\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"ProblemAvgAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"sum\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"ProblemSumAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"min\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"ProblemMinAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"max\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"ProblemMaxAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}}]},{\"name\":\"AggregateCreator\",\"fields\":[{\"name\":\"count\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"avg\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"CreatorAvgAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"sum\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"CreatorSumAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"min\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"CreatorMinAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}},{\"name\":\"max\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"CreatorMaxAggregateOutputType\",\"namespace\":\"prisma\",\"location\":\"outputObjectTypes\",\"isList\":false}}]},{\"name\":\"BatchPayload\",\"fields\":[{\"name\":\"count\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"UserAvgAggregateOutputType\",\"fields\":[{\"name\":\"id\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"age\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"balance\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"amount\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"UserSumAggregateOutputType\",\"fields\":[{\"name\":\"id\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"age\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"balance\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"amount\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"UserMinAggregateOutputType\",\"fields\":[{\"name\":\"id\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"age\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"balance\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"amount\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"UserMaxAggregateOutputType\",\"fields\":[{\"name\":\"id\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"age\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"balance\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"amount\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"PostAvgAggregateOutputType\",\"fields\":[{\"name\":\"authorId\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"editorId\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"PostSumAggregateOutputType\",\"fields\":[{\"name\":\"authorId\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"editorId\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"PostMinAggregateOutputType\",\"fields\":[{\"name\":\"authorId\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"editorId\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"PostMaxAggregateOutputType\",\"fields\":[{\"name\":\"authorId\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"editorId\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"CategoryAvgAggregateOutputType\",\"fields\":[{\"name\":\"number\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"CategorySumAggregateOutputType\",\"fields\":[{\"name\":\"number\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"CategoryMinAggregateOutputType\",\"fields\":[{\"name\":\"number\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"CategoryMaxAggregateOutputType\",\"fields\":[{\"name\":\"number\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"ProblemAvgAggregateOutputType\",\"fields\":[{\"name\":\"id\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"creatorId\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"ProblemSumAggregateOutputType\",\"fields\":[{\"name\":\"id\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"creatorId\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"ProblemMinAggregateOutputType\",\"fields\":[{\"name\":\"id\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"creatorId\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"ProblemMaxAggregateOutputType\",\"fields\":[{\"name\":\"id\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}},{\"name\":\"creatorId\",\"args\":[],\"isRequired\":false,\"isNullable\":true,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"CreatorAvgAggregateOutputType\",\"fields\":[{\"name\":\"id\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Float\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"CreatorSumAggregateOutputType\",\"fields\":[{\"name\":\"id\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"CreatorMinAggregateOutputType\",\"fields\":[{\"name\":\"id\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]},{\"name\":\"CreatorMaxAggregateOutputType\",\"fields\":[{\"name\":\"id\",\"args\":[],\"isRequired\":true,\"isNullable\":false,\"outputType\":{\"type\":\"Int\",\"location\":\"scalar\",\"isList\":false}}]}]},\"enumTypes\":{\"prisma\":[{\"name\":\"UserDistinctFieldEnum\",\"values\":[\"id\",\"email\",\"name\",\"age\",\"balance\",\"amount\",\"role\"]},{\"name\":\"PostDistinctFieldEnum\",\"values\":[\"uuid\",\"createdAt\",\"updatedAt\",\"published\",\"title\",\"subtitle\",\"content\",\"authorId\",\"editorId\",\"kind\",\"metadata\"]},{\"name\":\"CategoryDistinctFieldEnum\",\"values\":[\"name\",\"slug\",\"number\"]},{\"name\":\"PatientDistinctFieldEnum\",\"values\":[\"firstName\",\"lastName\",\"email\"]},{\"name\":\"MovieDistinctFieldEnum\",\"values\":[\"directorFirstName\",\"directorLastName\",\"title\"]},{\"name\":\"DirectorDistinctFieldEnum\",\"values\":[\"firstName\",\"lastName\"]},{\"name\":\"ProblemDistinctFieldEnum\",\"values\":[\"id\",\"problemText\",\"creatorId\"]},{\"name\":\"CreatorDistinctFieldEnum\",\"values\":[\"id\",\"name\"]},{\"name\":\"SortOrder\",\"values\":[\"asc\",\"desc\"]},{\"name\":\"QueryMode\",\"values\":[\"default\",\"insensitive\"]}],\"model\":[{\"name\":\"Role\",\"values\":[\"USER\",\"ADMIN\"]},{\"name\":\"PostKind\",\"values\":[\"BLOG\",\"ADVERT\"]}]}},\"mappings\":{\"modelOperations\":[{\"model\":\"User\",\"plural\":\"users\",\"findUnique\":\"findOneUser\",\"findFirst\":\"findFirstUser\",\"findMany\":\"findManyUser\",\"create\":\"createOneUser\",\"delete\":\"deleteOneUser\",\"update\":\"updateOneUser\",\"deleteMany\":\"deleteManyUser\",\"updateMany\":\"updateManyUser\",\"upsert\":\"upsertOneUser\",\"aggregate\":\"aggregateUser\"},{\"model\":\"post\",\"plural\":\"posts\",\"findUnique\":\"findOnepost\",\"findFirst\":\"findFirstpost\",\"findMany\":\"findManypost\",\"create\":\"createOnepost\",\"delete\":\"deleteOnepost\",\"update\":\"updateOnepost\",\"deleteMany\":\"deleteManypost\",\"updateMany\":\"updateManypost\",\"upsert\":\"upsertOnepost\",\"aggregate\":\"aggregatepost\"},{\"model\":\"Category\",\"plural\":\"categories\",\"findUnique\":\"findOneCategory\",\"findFirst\":\"findFirstCategory\",\"findMany\":\"findManyCategory\",\"create\":\"createOneCategory\",\"delete\":\"deleteOneCategory\",\"update\":\"updateOneCategory\",\"deleteMany\":\"deleteManyCategory\",\"updateMany\":\"updateManyCategory\",\"upsert\":\"upsertOneCategory\",\"aggregate\":\"aggregateCategory\"},{\"model\":\"Patient\",\"plural\":\"patients\",\"findUnique\":\"findOnePatient\",\"findFirst\":\"findFirstPatient\",\"findMany\":\"findManyPatient\",\"create\":\"createOnePatient\",\"delete\":\"deleteOnePatient\",\"update\":\"updateOnePatient\",\"deleteMany\":\"deleteManyPatient\",\"updateMany\":\"updateManyPatient\",\"upsert\":\"upsertOnePatient\",\"aggregate\":\"aggregatePatient\"},{\"model\":\"Movie\",\"plural\":\"movies\",\"findUnique\":\"findOneMovie\",\"findFirst\":\"findFirstMovie\",\"findMany\":\"findManyMovie\",\"create\":\"createOneMovie\",\"delete\":\"deleteOneMovie\",\"update\":\"updateOneMovie\",\"deleteMany\":\"deleteManyMovie\",\"updateMany\":\"updateManyMovie\",\"upsert\":\"upsertOneMovie\",\"aggregate\":\"aggregateMovie\"},{\"model\":\"Director\",\"plural\":\"directors\",\"findUnique\":\"findOneDirector\",\"findFirst\":\"findFirstDirector\",\"findMany\":\"findManyDirector\",\"create\":\"createOneDirector\",\"delete\":\"deleteOneDirector\",\"update\":\"updateOneDirector\",\"deleteMany\":\"deleteManyDirector\",\"updateMany\":\"updateManyDirector\",\"upsert\":\"upsertOneDirector\",\"aggregate\":\"aggregateDirector\"},{\"model\":\"Problem\",\"plural\":\"problems\",\"findUnique\":\"findOneProblem\",\"findFirst\":\"findFirstProblem\",\"findMany\":\"findManyProblem\",\"create\":\"createOneProblem\",\"delete\":\"deleteOneProblem\",\"update\":\"updateOneProblem\",\"deleteMany\":\"deleteManyProblem\",\"updateMany\":\"updateManyProblem\",\"upsert\":\"upsertOneProblem\",\"aggregate\":\"aggregateProblem\"},{\"model\":\"Creator\",\"plural\":\"creators\",\"findUnique\":\"findOneCreator\",\"findFirst\":\"findFirstCreator\",\"findMany\":\"findManyCreator\",\"create\":\"createOneCreator\",\"delete\":\"deleteOneCreator\",\"update\":\"updateOneCreator\",\"deleteMany\":\"deleteManyCreator\",\"updateMany\":\"updateManyCreator\",\"upsert\":\"upsertOneCreator\",\"aggregate\":\"aggregateCreator\"}],\"otherOperations\":{\"read\":[],\"write\":[\"executeRaw\",\"queryRaw\"]}}}" // We are parsing 2 times, as we want independent objects, because // DMMFClass introduces circular references in the dmmf object @@ -194,26 +184,44 @@ const config = { }, "sqliteDatasourceOverrides": [], "relativePath": "../..", - "clientVersion": "2.12.0-dev.38", - "engineVersion": "a4ef806349a7b17c41f45735ce4a36322e01c250", + "clientVersion": "2.12.1", + "engineVersion": "cf0680a1bfe8d5e743dc659cc7f08009f9587d58", "datasourceNames": [ "db" ] } config.document = dmmf -config.dirname = __dirname +config.dirname = dirname /** * Only for env conflict warning * loading of env variable occurs in getPrismaClient */ const envPaths = { - rootEnvPath: config.relativeEnvPaths.rootEnvPath && path.resolve(__dirname, config.relativeEnvPaths.rootEnvPath), - schemaEnvPath: config.relativeEnvPaths.schemaEnvPath && path.resolve(__dirname, config.relativeEnvPaths.schemaEnvPath) + rootEnvPath: config.relativeEnvPaths.rootEnvPath && path.resolve(dirname, config.relativeEnvPaths.rootEnvPath), + schemaEnvPath: config.relativeEnvPaths.schemaEnvPath && path.resolve(dirname, config.relativeEnvPaths.schemaEnvPath) } warnEnvConflicts(envPaths) const PrismaClient = getPrismaClient(config) exports.PrismaClient = PrismaClient -Object.assign(exports, Prisma) \ No newline at end of file +Object.assign(exports, Prisma) + +/** + * Build tool annotations + * In order to make `ncc` and `@vercel/nft` happy. + * The process.cwd() annotation is only needed for https://github.com/vercel/vercel/tree/master/packages/now-next +**/ +path.join(__dirname, 'query-engine-windows'); +path.join(process.cwd(), './prisma/generated/client/query-engine-windows'); + +path.join(__dirname, 'query-engine-debian-openssl-1.1.x'); +path.join(process.cwd(), './prisma/generated/client/query-engine-debian-openssl-1.1.x'); + +/** + * Annotation for `@vercel/nft` + * The process.cwd() annotation is only needed for https://github.com/vercel/vercel/tree/master/packages/now-next +**/ +path.join(__dirname, 'schema.prisma'); +path.join(process.cwd(), './prisma/generated/client/schema.prisma'); diff --git a/experiments/prisma/generated/client/runtime/index.d.ts b/experiments/prisma/generated/client/runtime/index.d.ts index 69ae4ef5..a7214f8f 100644 --- a/experiments/prisma/generated/client/runtime/index.d.ts +++ b/experiments/prisma/generated/client/runtime/index.d.ts @@ -398,10 +398,10 @@ declare class Args { interface ArgOptions { key: string; value: ArgValue; - argType?: DMMF.ArgType; isEnum?: boolean; error?: InvalidArgError; schemaArg?: DMMF.SchemaArg; + inputType?: DMMF.SchemaArgInputType; } declare class Arg { key: string; @@ -410,9 +410,9 @@ declare class Arg { hasError: boolean; isEnum: boolean; schemaArg?: DMMF.SchemaArg; - argType?: DMMF.ArgType; isNullable: boolean; - constructor({ key, value, argType, isEnum, error, schemaArg, }: ArgOptions); + inputType?: DMMF.SchemaArgInputType; + constructor({ key, value, isEnum, error, schemaArg, inputType }: ArgOptions); _toString(value: ArgValue, key: string): string | undefined; toString(): string; collectErrors(): ArgError[]; @@ -529,6 +529,7 @@ interface DatasourceOverwrite { } interface EngineConfig { cwd?: string; + dirname?: string; datamodelPath: string; enableDebugLogs?: boolean; enableEngineDebugMode?: boolean; @@ -587,6 +588,7 @@ declare class NodeEngine { private getConfigPromise?; private stopPromise?; private beforeExitListener?; + private dirname?; exitCode: number; /** * exiting is used to tell the .on('exit') hook, if the exit came from our script. @@ -613,7 +615,7 @@ declare class NodeEngine { engineStartDeferred?: Deferred; engineStopDeferred?: StopDeferred; undici: Undici; - constructor({ cwd, datamodelPath, prismaPath, generator, datasources, showColors, logLevel, logQueries, env, flags, clientVersion, enableExperimental, engineEndpoint, enableDebugLogs, enableEngineDebugMode, }: EngineConfig); + constructor({ cwd, datamodelPath, prismaPath, generator, datasources, showColors, logLevel, logQueries, env, flags, clientVersion, enableExperimental, engineEndpoint, enableDebugLogs, enableEngineDebugMode, dirname }: EngineConfig); private checkForTooManyEngines; private resolveCwd; on(event: 'query' | 'info' | 'warn' | 'error' | 'beforeExit', listener: (args?: any) => any): void; diff --git a/experiments/prisma/generated/client/runtime/index.js b/experiments/prisma/generated/client/runtime/index.js index 388bd745..6e64c79b 100644 --- a/experiments/prisma/generated/client/runtime/index.js +++ b/experiments/prisma/generated/client/runtime/index.js @@ -2229,7 +2229,7 @@ var require_ms2 = __commonJS2((exports2, module2) => { } }); -// ../../node_modules/.pnpm/debug@4.2.0/node_modules/debug/src/common.js +// ../../node_modules/.pnpm/debug@4.3.1/node_modules/debug/src/common.js var require_common4 = __commonJS2((exports2, module2) => { function setup(env2) { createDebug.debug = createDebug; @@ -2239,10 +2239,10 @@ var require_common4 = __commonJS2((exports2, module2) => { createDebug.enable = enable; createDebug.enabled = enabled; createDebug.humanize = require_ms2(); + createDebug.destroy = destroy; Object.keys(env2).forEach((key) => { createDebug[key] = env2[key]; }); - createDebug.instances = []; createDebug.names = []; createDebug.skips = []; createDebug.formatters = {}; @@ -2257,6 +2257,7 @@ var require_common4 = __commonJS2((exports2, module2) => { createDebug.selectColor = selectColor; function createDebug(namespace) { let prevTime; + let enableOverride = null; function debug4(...args) { if (!debug4.enabled) { return; @@ -2275,7 +2276,7 @@ var require_common4 = __commonJS2((exports2, module2) => { let index = 0; args[0] = args[0].replace(/%([a-zA-Z%])/g, (match, format) => { if (match === "%%") { - return match; + return "%"; } index++; const formatter = createDebug.formatters[format]; @@ -2292,25 +2293,23 @@ var require_common4 = __commonJS2((exports2, module2) => { logFn.apply(self2, args); } debug4.namespace = namespace; - debug4.enabled = createDebug.enabled(namespace); debug4.useColors = createDebug.useColors(); debug4.color = createDebug.selectColor(namespace); - debug4.destroy = destroy; debug4.extend = extend; + debug4.destroy = createDebug.destroy; + Object.defineProperty(debug4, "enabled", { + enumerable: true, + configurable: false, + get: () => enableOverride === null ? createDebug.enabled(namespace) : enableOverride, + set: (v) => { + enableOverride = v; + } + }); if (typeof createDebug.init === "function") { createDebug.init(debug4); } - createDebug.instances.push(debug4); return debug4; } - function destroy() { - const index = createDebug.instances.indexOf(this); - if (index !== -1) { - createDebug.instances.splice(index, 1); - return true; - } - return false; - } function extend(namespace, delimiter) { const newDebug = createDebug(this.namespace + (typeof delimiter === "undefined" ? ":" : delimiter) + namespace); newDebug.log = this.log; @@ -2334,10 +2333,6 @@ var require_common4 = __commonJS2((exports2, module2) => { createDebug.names.push(new RegExp("^" + namespaces + "$")); } } - for (i = 0; i < createDebug.instances.length; i++) { - const instance = createDebug.instances[i]; - instance.enabled = createDebug.enabled(instance.namespace); - } } function disable() { const namespaces = [ @@ -2374,19 +2369,31 @@ var require_common4 = __commonJS2((exports2, module2) => { } return val; } + function destroy() { + console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."); + } createDebug.enable(createDebug.load()); return createDebug; } module2.exports = setup; }); -// ../../node_modules/.pnpm/debug@4.2.0/node_modules/debug/src/browser.js +// ../../node_modules/.pnpm/debug@4.3.1/node_modules/debug/src/browser.js var require_browser2 = __commonJS2((exports2, module2) => { exports2.formatArgs = formatArgs; exports2.save = save; exports2.load = load; exports2.useColors = useColors; exports2.storage = localstorage(); + exports2.destroy = (() => { + let warned = false; + return () => { + if (!warned) { + warned = true; + console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."); + } + }; + })(); exports2.colors = [ "#0000CC", "#0000FF", @@ -2534,7 +2541,7 @@ var require_browser2 = __commonJS2((exports2, module2) => { }; }); -// ../../node_modules/.pnpm/debug@4.2.0/node_modules/debug/src/node.js +// ../../node_modules/.pnpm/debug@4.3.1/node_modules/debug/src/node.js var require_node2 = __commonJS2((exports2, module2) => { const tty = require("tty"); const util2 = require("util"); @@ -2544,6 +2551,8 @@ var require_node2 = __commonJS2((exports2, module2) => { exports2.save = save; exports2.load = load; exports2.useColors = useColors; + exports2.destroy = util2.deprecate(() => { + }, "Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."); exports2.colors = [6, 2, 3, 4, 5, 1]; try { const supportsColor = require_supports_color2(); @@ -2693,7 +2702,7 @@ var require_node2 = __commonJS2((exports2, module2) => { const {formatters} = module2.exports; formatters.o = function(v) { this.inspectOpts.colors = this.useColors; - return util2.inspect(v, this.inspectOpts).replace(/\s*\n\s*/g, " "); + return util2.inspect(v, this.inspectOpts).split("\n").map((str) => str.trim()).join(" "); }; formatters.O = function(v) { this.inspectOpts.colors = this.useColors; @@ -2701,7 +2710,7 @@ var require_node2 = __commonJS2((exports2, module2) => { }; }); -// ../../node_modules/.pnpm/debug@4.2.0/node_modules/debug/src/index.js +// ../../node_modules/.pnpm/debug@4.3.1/node_modules/debug/src/index.js var require_src3 = __commonJS2((exports2, module2) => { if (typeof process === "undefined" || process.type === "renderer" || process.browser === true || process.__nwjs) { module2.exports = require_browser2(); @@ -4293,7 +4302,7 @@ If you want the Prisma team to look into it, please open the link above \u{1F64F } }); -// ../../node_modules/.pnpm/@prisma/engines@2.12.0-10.a4ef806349a7b17c41f45735ce4a36322e01c250/node_modules/@prisma/engines/dist/index.js +// ../../node_modules/.pnpm/@prisma/engines@2.12.0-18.cf0680a1bfe8d5e743dc659cc7f08009f9587d58/node_modules/@prisma/engines/dist/index.js var require_dist9 = __commonJS2((exports) => { var __defineProperty = Object.defineProperty; var __hasOwnProperty = Object.prototype.hasOwnProperty; @@ -4329,13 +4338,13 @@ var require_dist9 = __commonJS2((exports) => { var require_package = __commonJS((exports2, module2) => { module2.exports = { name: "@prisma/engines-version", - version: "2.12.0-10.a4ef806349a7b17c41f45735ce4a36322e01c250", + version: "2.12.0-18.cf0680a1bfe8d5e743dc659cc7f08009f9587d58", main: "index.js", types: "index.d.ts", license: "Apache-2.0", author: "Tim Suchanek ", prisma: { - enginesVersion: "a4ef806349a7b17c41f45735ce4a36322e01c250" + enginesVersion: "cf0680a1bfe8d5e743dc659cc7f08009f9587d58" }, devDependencies: { "@types/node": "^14.11.8", @@ -27025,7 +27034,7 @@ var require_NodeEngine = __commonJS2((exports) => { const engines = []; const socketPaths = []; class NodeEngine { - constructor({cwd, datamodelPath, prismaPath, generator, datasources, showColors, logLevel, logQueries, env: env2, flags, clientVersion: clientVersion3, enableExperimental, engineEndpoint, enableDebugLogs, enableEngineDebugMode}) { + constructor({cwd, datamodelPath, prismaPath, generator, datasources, showColors, logLevel, logQueries, env: env2, flags, clientVersion: clientVersion3, enableExperimental, engineEndpoint, enableDebugLogs, enableEngineDebugMode, dirname: dirname2}) { var _a; this.restartCount = 0; this.queryEngineStarted = false; @@ -27141,6 +27150,7 @@ Please look into the logs or turn on the env var DEBUG=* to debug the constantly } throw error; }; + this.dirname = dirname2; this.useUds = process.platform !== "win32"; this.env = env2; this.cwd = this.resolveCwd(cwd); @@ -27280,6 +27290,9 @@ You may have to run ${chalk_1.default.greenBright("prisma generate")} for your c path_1.default.dirname(this.datamodelPath), this.cwd ]; + if (this.dirname) { + searchLocations.push(this.dirname); + } for (const location of searchLocations) { searchedLocations.push(location); debug(`Search for Query Engine in ${location}`); @@ -27304,7 +27317,14 @@ This probably happens, because you built Prisma Client on a different platform. Searched Locations: -${searchedLocations.map((f) => ` ${f}`).join("\n")} +${searchedLocations.map((f) => { + let msg = ` ${f}`; + if (process.env.DEBUG === "node-engine-search-locations" && fs_1.default.existsSync(f)) { + const dir = fs_1.default.readdirSync(f); + msg += dir.map((d2) => ` ${d2}`).join("\n"); + } + return msg; + }).join("\n" + (process.env.DEBUG === "node-engine-search-locations" ? "\n" : ""))} `; if (this.generator) { if (this.generator.binaryTargets.includes(this.platform) || this.generator.binaryTargets.includes("native")) { @@ -28023,7 +28043,7 @@ var require_mapPreviewFeatures = __commonJS2((exports2) => { var require_package2 = __commonJS2((exports2, module2) => { module2.exports = { name: "@prisma/client", - version: "2.12.0-dev.38", + version: "2.12.1", description: "Prisma Client is an auto-generated, type-safe and modern JavaScript/TypeScript ORM for Node.js that's tailored to your data. Supports MySQL, PostgreSQL, MariaDB, SQLite databases.", keywords: [ "orm", @@ -28077,20 +28097,20 @@ var require_package2 = __commonJS2((exports2, module2) => { "index.d.ts" ], devDependencies: { - "@prisma/debug": "2.12.0-dev.38", - "@prisma/engine-core": "2.12.0-dev.38", - "@prisma/engines": "2.12.0-10.a4ef806349a7b17c41f45735ce4a36322e01c250", - "@prisma/fetch-engine": "2.12.0-dev.38", - "@prisma/generator-helper": "2.12.0-dev.38", - "@prisma/get-platform": "2.12.0-dev.38", - "@prisma/migrate": "2.12.0-dev.38", - "@prisma/sdk": "2.12.0-dev.38", + "@prisma/debug": "2.12.1", + "@prisma/engine-core": "2.12.1", + "@prisma/engines": "2.12.0-18.cf0680a1bfe8d5e743dc659cc7f08009f9587d58", + "@prisma/fetch-engine": "2.12.1", + "@prisma/generator-helper": "2.12.1", + "@prisma/get-platform": "2.12.1", + "@prisma/migrate": "2.12.1", + "@prisma/sdk": "2.12.1", "@timsuchanek/copy": "1.4.5", "@types/debug": "4.1.5", "@types/fs-extra": "9.0.4", "@types/jest": "26.0.15", "@types/js-levenshtein": "1.1.0", - "@types/node": "12.19.5", + "@types/node": "12.19.6", "@types/node-fetch": "2.5.7", "@types/pg": "7.14.7", "@typescript-eslint/eslint-plugin": "4.8.1", @@ -28100,9 +28120,9 @@ var require_package2 = __commonJS2((exports2, module2) => { chalk: "4.1.0", "decimal.js": "10.2.1", dotenv: "8.2.0", - esbuild: "0.8.10", + esbuild: "0.8.12", "escape-string-regexp": "4.0.0", - eslint: "7.13.0", + eslint: "7.14.0", "eslint-config-prettier": "6.15.0", "eslint-plugin-eslint-comments": "3.2.0", "eslint-plugin-jest": "24.1.3", @@ -28130,7 +28150,7 @@ var require_package2 = __commonJS2((exports2, module2) => { pidtree: "0.5.0", "pkg-up": "3.1.0", pluralize: "8.0.0", - prettier: "2.1.2", + prettier: "2.2.0", "replace-string": "3.1.0", rimraf: "3.0.2", rollup: "2.33.3", @@ -28145,7 +28165,7 @@ var require_package2 = __commonJS2((exports2, module2) => { "ts-jest": "26.4.4", "ts-loader": "8.0.11", "ts-node": "9.0.0", - typescript: "4.0.5" + typescript: "4.1.2" }, peerDependencies: { "@prisma/cli": "*" @@ -28170,7 +28190,7 @@ var require_package2 = __commonJS2((exports2, module2) => { ] }, dependencies: { - "@prisma/engines-version": "2.12.0-10.a4ef806349a7b17c41f45735ce4a36322e01c250" + "@prisma/engines-version": "2.12.0-18.cf0680a1bfe8d5e743dc659cc7f08009f9587d58" } }; }); @@ -28196,12 +28216,13 @@ var require_keyBy = __commonJS2((exports2) => { "use strict"; Object.defineProperty(exports2, "__esModule", {value: true}); exports2.keyBy = void 0; - exports2.keyBy = (collection, iteratee) => { + const keyBy3 = (collection, iteratee) => { return collection.reduce((acc, curr) => { acc[iteratee(curr)] = curr; return acc; }, {}); }; + exports2.keyBy = keyBy3; }); // ../../node_modules/.pnpm/temp-dir@2.0.0/node_modules/temp-dir/index.js @@ -29553,7 +29574,8 @@ var require_theme = __commonJS2((exports2) => { exports2.darkBrightBlue = chalk_12.default.rgb(107, 139, 140); exports2.blue = chalk_12.default.cyan; exports2.brightBlue = chalk_12.default.rgb(127, 155, 175); - exports2.identity = (str) => str || ""; + const identity2 = (str) => str || ""; + exports2.identity = identity2; exports2.theme = { keyword: exports2.blue, entity: exports2.blue, @@ -32040,6 +32062,487 @@ var require_lib3 = __commonJS2((exports2) => { var lib_default = fetch; }); +// ../../node_modules/.pnpm/debug@4.2.0/node_modules/debug/src/common.js +var require_common6 = __commonJS2((exports2, module2) => { + function setup(env2) { + createDebug.debug = createDebug; + createDebug.default = createDebug; + createDebug.coerce = coerce; + createDebug.disable = disable; + createDebug.enable = enable; + createDebug.enabled = enabled; + createDebug.humanize = require_ms2(); + Object.keys(env2).forEach((key) => { + createDebug[key] = env2[key]; + }); + createDebug.instances = []; + createDebug.names = []; + createDebug.skips = []; + createDebug.formatters = {}; + function selectColor(namespace) { + let hash = 0; + for (let i = 0; i < namespace.length; i++) { + hash = (hash << 5) - hash + namespace.charCodeAt(i); + hash |= 0; + } + return createDebug.colors[Math.abs(hash) % createDebug.colors.length]; + } + createDebug.selectColor = selectColor; + function createDebug(namespace) { + let prevTime; + function debug4(...args) { + if (!debug4.enabled) { + return; + } + const self2 = debug4; + const curr = Number(new Date()); + const ms2 = curr - (prevTime || curr); + self2.diff = ms2; + self2.prev = prevTime; + self2.curr = curr; + prevTime = curr; + args[0] = createDebug.coerce(args[0]); + if (typeof args[0] !== "string") { + args.unshift("%O"); + } + let index = 0; + args[0] = args[0].replace(/%([a-zA-Z%])/g, (match, format) => { + if (match === "%%") { + return match; + } + index++; + const formatter = createDebug.formatters[format]; + if (typeof formatter === "function") { + const val = args[index]; + match = formatter.call(self2, val); + args.splice(index, 1); + index--; + } + return match; + }); + createDebug.formatArgs.call(self2, args); + const logFn = self2.log || createDebug.log; + logFn.apply(self2, args); + } + debug4.namespace = namespace; + debug4.enabled = createDebug.enabled(namespace); + debug4.useColors = createDebug.useColors(); + debug4.color = createDebug.selectColor(namespace); + debug4.destroy = destroy; + debug4.extend = extend; + if (typeof createDebug.init === "function") { + createDebug.init(debug4); + } + createDebug.instances.push(debug4); + return debug4; + } + function destroy() { + const index = createDebug.instances.indexOf(this); + if (index !== -1) { + createDebug.instances.splice(index, 1); + return true; + } + return false; + } + function extend(namespace, delimiter) { + const newDebug = createDebug(this.namespace + (typeof delimiter === "undefined" ? ":" : delimiter) + namespace); + newDebug.log = this.log; + return newDebug; + } + function enable(namespaces) { + createDebug.save(namespaces); + createDebug.names = []; + createDebug.skips = []; + let i; + const split = (typeof namespaces === "string" ? namespaces : "").split(/[\s,]+/); + const len = split.length; + for (i = 0; i < len; i++) { + if (!split[i]) { + continue; + } + namespaces = split[i].replace(/\*/g, ".*?"); + if (namespaces[0] === "-") { + createDebug.skips.push(new RegExp("^" + namespaces.substr(1) + "$")); + } else { + createDebug.names.push(new RegExp("^" + namespaces + "$")); + } + } + for (i = 0; i < createDebug.instances.length; i++) { + const instance = createDebug.instances[i]; + instance.enabled = createDebug.enabled(instance.namespace); + } + } + function disable() { + const namespaces = [ + ...createDebug.names.map(toNamespace), + ...createDebug.skips.map(toNamespace).map((namespace) => "-" + namespace) + ].join(","); + createDebug.enable(""); + return namespaces; + } + function enabled(name) { + if (name[name.length - 1] === "*") { + return true; + } + let i; + let len; + for (i = 0, len = createDebug.skips.length; i < len; i++) { + if (createDebug.skips[i].test(name)) { + return false; + } + } + for (i = 0, len = createDebug.names.length; i < len; i++) { + if (createDebug.names[i].test(name)) { + return true; + } + } + return false; + } + function toNamespace(regexp) { + return regexp.toString().substring(2, regexp.toString().length - 2).replace(/\.\*\?$/, "*"); + } + function coerce(val) { + if (val instanceof Error) { + return val.stack || val.message; + } + return val; + } + createDebug.enable(createDebug.load()); + return createDebug; + } + module2.exports = setup; +}); + +// ../../node_modules/.pnpm/debug@4.2.0/node_modules/debug/src/browser.js +var require_browser4 = __commonJS2((exports2, module2) => { + exports2.formatArgs = formatArgs; + exports2.save = save; + exports2.load = load; + exports2.useColors = useColors; + exports2.storage = localstorage(); + exports2.colors = [ + "#0000CC", + "#0000FF", + "#0033CC", + "#0033FF", + "#0066CC", + "#0066FF", + "#0099CC", + "#0099FF", + "#00CC00", + "#00CC33", + "#00CC66", + "#00CC99", + "#00CCCC", + "#00CCFF", + "#3300CC", + "#3300FF", + "#3333CC", + "#3333FF", + "#3366CC", + "#3366FF", + "#3399CC", + "#3399FF", + "#33CC00", + "#33CC33", + "#33CC66", + "#33CC99", + "#33CCCC", + "#33CCFF", + "#6600CC", + "#6600FF", + "#6633CC", + "#6633FF", + "#66CC00", + "#66CC33", + "#9900CC", + "#9900FF", + "#9933CC", + "#9933FF", + "#99CC00", + "#99CC33", + "#CC0000", + "#CC0033", + "#CC0066", + "#CC0099", + "#CC00CC", + "#CC00FF", + "#CC3300", + "#CC3333", + "#CC3366", + "#CC3399", + "#CC33CC", + "#CC33FF", + "#CC6600", + "#CC6633", + "#CC9900", + "#CC9933", + "#CCCC00", + "#CCCC33", + "#FF0000", + "#FF0033", + "#FF0066", + "#FF0099", + "#FF00CC", + "#FF00FF", + "#FF3300", + "#FF3333", + "#FF3366", + "#FF3399", + "#FF33CC", + "#FF33FF", + "#FF6600", + "#FF6633", + "#FF9900", + "#FF9933", + "#FFCC00", + "#FFCC33" + ]; + function useColors() { + if (typeof window !== "undefined" && window.process && (window.process.type === "renderer" || window.process.__nwjs)) { + return true; + } + if (typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/)) { + return false; + } + return typeof document !== "undefined" && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance || typeof window !== "undefined" && window.console && (window.console.firebug || window.console.exception && window.console.table) || typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/) && parseInt(RegExp.$1, 10) >= 31 || typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/); + } + function formatArgs(args) { + args[0] = (this.useColors ? "%c" : "") + this.namespace + (this.useColors ? " %c" : " ") + args[0] + (this.useColors ? "%c " : " ") + "+" + module2.exports.humanize(this.diff); + if (!this.useColors) { + return; + } + const c = "color: " + this.color; + args.splice(1, 0, c, "color: inherit"); + let index = 0; + let lastC = 0; + args[0].replace(/%[a-zA-Z%]/g, (match) => { + if (match === "%%") { + return; + } + index++; + if (match === "%c") { + lastC = index; + } + }); + args.splice(lastC, 0, c); + } + exports2.log = console.debug || console.log || (() => { + }); + function save(namespaces) { + try { + if (namespaces) { + exports2.storage.setItem("debug", namespaces); + } else { + exports2.storage.removeItem("debug"); + } + } catch (error) { + } + } + function load() { + let r; + try { + r = exports2.storage.getItem("debug"); + } catch (error) { + } + if (!r && typeof process !== "undefined" && "env" in process) { + r = process.env.DEBUG; + } + return r; + } + function localstorage() { + try { + return localStorage; + } catch (error) { + } + } + module2.exports = require_common6()(exports2); + const {formatters} = module2.exports; + formatters.j = function(v) { + try { + return JSON.stringify(v); + } catch (error) { + return "[UnexpectedJSONParseError]: " + error.message; + } + }; +}); + +// ../../node_modules/.pnpm/debug@4.2.0/node_modules/debug/src/node.js +var require_node4 = __commonJS2((exports2, module2) => { + const tty = require("tty"); + const util2 = require("util"); + exports2.init = init; + exports2.log = log3; + exports2.formatArgs = formatArgs; + exports2.save = save; + exports2.load = load; + exports2.useColors = useColors; + exports2.colors = [6, 2, 3, 4, 5, 1]; + try { + const supportsColor = require_supports_color2(); + if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) { + exports2.colors = [ + 20, + 21, + 26, + 27, + 32, + 33, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 56, + 57, + 62, + 63, + 68, + 69, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 92, + 93, + 98, + 99, + 112, + 113, + 128, + 129, + 134, + 135, + 148, + 149, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 178, + 179, + 184, + 185, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 214, + 215, + 220, + 221 + ]; + } + } catch (error) { + } + exports2.inspectOpts = Object.keys(process.env).filter((key) => { + return /^debug_/i.test(key); + }).reduce((obj, key) => { + const prop = key.substring(6).toLowerCase().replace(/_([a-z])/g, (_3, k) => { + return k.toUpperCase(); + }); + let val = process.env[key]; + if (/^(yes|on|true|enabled)$/i.test(val)) { + val = true; + } else if (/^(no|off|false|disabled)$/i.test(val)) { + val = false; + } else if (val === "null") { + val = null; + } else { + val = Number(val); + } + obj[prop] = val; + return obj; + }, {}); + function useColors() { + return "colors" in exports2.inspectOpts ? Boolean(exports2.inspectOpts.colors) : tty.isatty(process.stderr.fd); + } + function formatArgs(args) { + const {namespace: name, useColors: useColors2} = this; + if (useColors2) { + const c = this.color; + const colorCode = "[3" + (c < 8 ? c : "8;5;" + c); + const prefix = ` ${colorCode};1m${name} `; + args[0] = prefix + args[0].split("\n").join("\n" + prefix); + args.push(colorCode + "m+" + module2.exports.humanize(this.diff) + ""); + } else { + args[0] = getDate() + name + " " + args[0]; + } + } + function getDate() { + if (exports2.inspectOpts.hideDate) { + return ""; + } + return new Date().toISOString() + " "; + } + function log3(...args) { + return process.stderr.write(util2.format(...args) + "\n"); + } + function save(namespaces) { + if (namespaces) { + process.env.DEBUG = namespaces; + } else { + delete process.env.DEBUG; + } + } + function load() { + return process.env.DEBUG; + } + function init(debug4) { + debug4.inspectOpts = {}; + const keys2 = Object.keys(exports2.inspectOpts); + for (let i = 0; i < keys2.length; i++) { + debug4.inspectOpts[keys2[i]] = exports2.inspectOpts[keys2[i]]; + } + } + module2.exports = require_common6()(exports2); + const {formatters} = module2.exports; + formatters.o = function(v) { + this.inspectOpts.colors = this.useColors; + return util2.inspect(v, this.inspectOpts).replace(/\s*\n\s*/g, " "); + }; + formatters.O = function(v) { + this.inspectOpts.colors = this.useColors; + return util2.inspect(v, this.inspectOpts); + }; +}); + +// ../../node_modules/.pnpm/debug@4.2.0/node_modules/debug/src/index.js +var require_src5 = __commonJS2((exports2, module2) => { + if (typeof process === "undefined" || process.type === "renderer" || process.browser === true || process.__nwjs) { + module2.exports = require_browser4(); + } else { + module2.exports = require_node4(); + } +}); + // ../../node_modules/.pnpm/agent-base@6.0.2/node_modules/agent-base/dist/src/promisify.js var require_promisify2 = __commonJS2((exports2) => { "use strict"; @@ -32061,13 +32564,13 @@ var require_promisify2 = __commonJS2((exports2) => { }); // ../../node_modules/.pnpm/agent-base@6.0.2/node_modules/agent-base/dist/src/index.js -var require_src5 = __commonJS2((exports2, module2) => { +var require_src6 = __commonJS2((exports2, module2) => { "use strict"; var __importDefault2 = exports2 && exports2.__importDefault || function(mod2) { return mod2 && mod2.__esModule ? mod2 : {default: mod2}; }; const events_12 = require("events"); - const debug_12 = __importDefault2(require_src3()); + const debug_12 = __importDefault2(require_src5()); const promisify_1 = __importDefault2(require_promisify2()); const debug4 = debug_12.default("agent-base"); function isAgent(v) { @@ -32242,7 +32745,7 @@ var require_parse_proxy_response2 = __commonJS2((exports2) => { return mod2 && mod2.__esModule ? mod2 : {default: mod2}; }; Object.defineProperty(exports2, "__esModule", {value: true}); - const debug_12 = __importDefault2(require_src3()); + const debug_12 = __importDefault2(require_src5()); const debug4 = debug_12.default("https-proxy-agent:parse-proxy-response"); function parseProxyResponse(socket) { return new Promise((resolve, reject) => { @@ -32337,8 +32840,8 @@ var require_agent3 = __commonJS2((exports2) => { const tls_1 = __importDefault2(require("tls")); const url_1 = __importDefault2(require("url")); const assert_1 = __importDefault2(require("assert")); - const debug_12 = __importDefault2(require_src3()); - const agent_base_1 = require_src5(); + const debug_12 = __importDefault2(require_src5()); + const agent_base_1 = require_src6(); const parse_proxy_response_1 = __importDefault2(require_parse_proxy_response2()); const debug4 = debug_12.default("https-proxy-agent:agent"); class HttpsProxyAgent extends agent_base_1.Agent { @@ -32551,9 +33054,9 @@ var require_agent4 = __commonJS2((exports2) => { const net_12 = __importDefault2(require("net")); const tls_1 = __importDefault2(require("tls")); const url_1 = __importDefault2(require("url")); - const debug_12 = __importDefault2(require_src3()); + const debug_12 = __importDefault2(require_src5()); const once_1 = __importDefault2(require_dist14()); - const agent_base_1 = require_src5(); + const agent_base_1 = require_src6(); const debug4 = debug_12.default("http-proxy-agent"); function isHTTPS(protocol) { return typeof protocol === "string" ? /^https:?$/i.test(protocol) : false; @@ -36599,7 +37102,7 @@ var require_queue2 = __commonJS2((exports2, module2) => { }); // ../../node_modules/.pnpm/@nodelib/fs.walk@1.2.4/node_modules/@nodelib/fs.walk/out/readers/common.js -var require_common6 = __commonJS2((exports2) => { +var require_common7 = __commonJS2((exports2) => { "use strict"; Object.defineProperty(exports2, "__esModule", {value: true}); function isFatalError(settings, error) { @@ -36630,7 +37133,7 @@ var require_common6 = __commonJS2((exports2) => { var require_reader3 = __commonJS2((exports2) => { "use strict"; Object.defineProperty(exports2, "__esModule", {value: true}); - const common4 = require_common6(); + const common4 = require_common7(); class Reader { constructor(_root, _settings) { this._root = _root; @@ -36648,7 +37151,7 @@ var require_async8 = __commonJS2((exports2) => { const events_12 = require("events"); const fsScandir = require_out6(); const fastq = require_queue2(); - const common4 = require_common6(); + const common4 = require_common7(); const reader_1 = require_reader3(); class AsyncReader extends reader_1.default { constructor(_root, _settings) { @@ -36812,7 +37315,7 @@ var require_sync10 = __commonJS2((exports2) => { "use strict"; Object.defineProperty(exports2, "__esModule", {value: true}); const fsScandir = require_out6(); - const common4 = require_common6(); + const common4 = require_common7(); const reader_1 = require_reader3(); class SyncReader extends reader_1.default { constructor() { @@ -40083,7 +40586,7 @@ var require_path_is_absolute2 = __commonJS2((exports2, module2) => { }); // ../../node_modules/.pnpm/glob@7.1.6/node_modules/glob/common.js -var require_common7 = __commonJS2((exports2) => { +var require_common8 = __commonJS2((exports2) => { exports2.alphasort = alphasort; exports2.alphasorti = alphasorti; exports2.setopts = setopts; @@ -40289,7 +40792,7 @@ var require_sync14 = __commonJS2((exports2, module2) => { var path4 = require("path"); var assert = require("assert"); var isAbsolute = require_path_is_absolute2(); - var common4 = require_common7(); + var common4 = require_common8(); var alphasort = common4.alphasort; var alphasorti = common4.alphasorti; var setopts = common4.setopts; @@ -40685,7 +41188,7 @@ var require_glob2 = __commonJS2((exports2, module2) => { var assert = require("assert"); var isAbsolute = require_path_is_absolute2(); var globSync = require_sync14(); - var common4 = require_common7(); + var common4 = require_common8(); var alphasort = common4.alphasort; var alphasorti = common4.alphasorti; var setopts = common4.setopts; @@ -42348,13 +42851,8 @@ var require_getLatestTag2 = __commonJS2((exports2) => { const p_map_12 = __importDefault2(require_p_map3()); const chalk_12 = __importDefault2(require_source2()); async function getLatestTag() { - if (process.env.RELEASE_PROMOTE_DEV) { - const versions = await getVersionHashes(process.env.RELEASE_PROMOTE_DEV); - console.log(`getLatestTag: taking ${versions.engines} as RELEASE_PROMOTE_DEV has been provided`); - return versions.engines; - } let branch = await getBranch(); - if (branch !== "master" && (!isPatchBranch(branch) && !branch.startsWith("integration/"))) { + if (branch !== "master" && !isPatchBranch(branch) && !branch.startsWith("integration/")) { branch = "master"; } branch = branch.replace(/^integration\//, ""); @@ -42446,15 +42944,17 @@ var require_getLatestTag2 = __commonJS2((exports2) => { return result; } async function getBranch() { - if (process.env.PATCH_BRANCH) { - return process.env.PATCH_BRANCH; - } - if (process.env.BUILDKITE_BRANCH) { - return process.env.BUILDKITE_BRANCH; - } - if (process.env.GITHUB_CONTEXT) { - const context = JSON.parse(process.env.GITHUB_CONTEXT); - return context.head_ref; + if (process.env.NODE_ENV !== "test") { + if (process.env.PATCH_BRANCH) { + return process.env.PATCH_BRANCH; + } + if (process.env.BUILDKITE_BRANCH) { + return process.env.BUILDKITE_BRANCH; + } + if (process.env.GITHUB_CONTEXT) { + const context = JSON.parse(process.env.GITHUB_CONTEXT); + return context.head_ref; + } } try { const result = await execa_12.default.command("git rev-parse --abbrev-ref HEAD", { @@ -42470,16 +42970,6 @@ var require_getLatestTag2 = __commonJS2((exports2) => { function isPatchBranch(version) { return /^2\.(\d+)\.x/.test(version); } - async function getVersionHashes(npmVersion) { - return node_fetch_1.default(`https://unpkg.com/@prisma/cli@${npmVersion}/package.json`, { - headers: { - accept: "application/json" - } - }).then((res) => res.json()).then((pkg) => ({ - engines: pkg.prisma.version, - prisma: pkg.prisma.prismaCommit - })); - } async function getCommits(branch) { const url = `https://github-cache.prisma.workers.dev/repos/prisma/prisma-engines/commits?sha=${branch}`; const result = await node_fetch_1.default(url, { @@ -42573,12 +43063,6 @@ var require_download2 = __commonJS2((exports) => { if (!options.binaries || Object.values(options.binaries).length === 0) { return {}; } - if (options.binaryTargets && Array.isArray(options.binaryTargets)) { - const unknownTargets = options.binaryTargets.filter((t) => !get_platform_1.platforms.includes(t)); - if (unknownTargets.length > 0) { - throw new Error(`Unknown binaryTargets ${unknownTargets.join(", ")}`); - } - } options = { ...options, binaryTargets: (_a = options.binaryTargets) !== null && _a !== void 0 ? _a : [platform], @@ -42607,7 +43091,12 @@ var require_download2 = __commonJS2((exports) => { } const binariesToDownload = await p_filter_1.default(binaryJobs, async (job) => { const needsToBeDownloaded = await binaryNeedsToBeDownloaded(job, platform, options.version, options.failSilent); - return !job.envVarPath && (options.ignoreCache || needsToBeDownloaded); + const isSupported = get_platform_1.platforms.includes(job.binaryTarget); + const shouldDownload = isSupported && !job.envVarPath && (options.ignoreCache || needsToBeDownloaded); + if (needsToBeDownloaded && !isSupported) { + throw new Error(`Unknown binaryTarget ${job.binaryTarget} and no custom binaries were provided`); + } + return shouldDownload; }); if (binariesToDownload.length > 0) { const cleanupPromise = cleanupCache_1.cleanupCache(); @@ -55359,7 +55848,7 @@ var require_function_bind = __commonJS2((exports2, module2) => { }); // ../../node_modules/.pnpm/has@1.0.3/node_modules/has/src/index.js -var require_src6 = __commonJS2((exports2, module2) => { +var require_src7 = __commonJS2((exports2, module2) => { "use strict"; var bind = require_function_bind(); module2.exports = bind.call(Function.call, Object.prototype.hasOwnProperty); @@ -55451,7 +55940,7 @@ var require_core3 = __commonJS2((exports2, module2) => { // ../../node_modules/.pnpm/is-core-module@2.0.0/node_modules/is-core-module/index.js var require_is_core_module = __commonJS2((exports2, module2) => { "use strict"; - var has = require_src6(); + var has = require_src7(); function specifierIncluded(current, specifier) { var nodeParts = current.split("."); var parts = specifier.split(" "); @@ -59578,7 +60067,7 @@ var require_destroy = __commonJS2((exports2, module2) => { }); // ../../node_modules/.pnpm/util-deprecate@1.0.2/node_modules/util-deprecate/node.js -var require_node4 = __commonJS2((exports2, module2) => { +var require_node5 = __commonJS2((exports2, module2) => { module2.exports = require("util").deprecate; }); @@ -59601,7 +60090,7 @@ var require_stream_writable = __commonJS2((exports2, module2) => { var util2 = Object.create(require_util7()); util2.inherits = require_inherits2(); var internalUtil = { - deprecate: require_node4() + deprecate: require_node5() }; var Stream = require_stream11(); var Buffer2 = require_safe_buffer().Buffer; @@ -62977,7 +63466,7 @@ var require_stream_writable2 = __commonJS2((exports2, module2) => { var Duplex; Writable.WritableState = WritableState; var internalUtil = { - deprecate: require_node4() + deprecate: require_node5() }; var Stream = require_stream12(); var Buffer2 = require("buffer").Buffer; @@ -71816,9 +72305,10 @@ var require_isCi = __commonJS2((exports2) => { Object.defineProperty(exports2, "__esModule", {value: true}); exports2.isCi = void 0; const is_ci_1 = require_is_ci(); - exports2.isCi = () => { + const isCi = () => { return !process.stdout.isTTY || is_ci_1.isCi || Boolean(process.env.GITHUB_ACTIONS); }; + exports2.isCi = isCi; }); // ../sdk/dist/cli/Help.js @@ -72978,7 +73468,8 @@ ${e.stderr}`); var require_dist19 = __commonJS2((exports2) => { "use strict"; Object.defineProperty(exports2, "__esModule", {value: true}); - exports2.printConfigWarnings = exports2.dropDatabase = exports2.createDatabase = exports2.canConnectToDatabase = exports2.trimNewLine = exports2.trimBlocksFromSchema = exports2.mapPreviewFeatures = exports2.extractPreviewFeatures = exports2.tryLoadEnvs = exports2.getEnvPaths = exports2.getSchemaPathFromPackageJsonSync = exports2.getSchemaPathFromPackageJson = exports2.getSchemaDirSync = exports2.getSchemaSync = exports2.getSchemaPathSync = exports2.getSchema = exports2.getSchemaDir = exports2.getSchemaPath = exports2.getRelativeSchemaPath = exports2.isError = exports2.format = exports2.arg = exports2.getProjectHash = exports2.getCLIPathHash = exports2.unknownCommand = exports2.HelpError = exports2.isCi = exports2.getCommandWithExecutor = exports2.isCurrentBinInstalledGlobally = exports2.drawBox = exports2.maskSchema = exports2.sendPanic = exports2.link = exports2.ErrorArea = exports2.RustPanic = exports2.uriToCredentials = exports2.credentialsToUri = exports2.getPackedPackage = exports2.formatSchema = exports2.getVersion = exports2.getConfig = exports2.getDMMF = exports2.getGenerator = exports2.getGenerators = exports2.Generator = exports2.IntrospectionEngine = exports2.highlightTS = exports2.highlightSql = exports2.highlightDatamodel = exports2.missingGeneratorMessage = exports2.resolveBinary = exports2.keyBy = exports2.pick = void 0; + exports2.canConnectToDatabase = exports2.trimNewLine = exports2.trimBlocksFromSchema = exports2.mapPreviewFeatures = exports2.extractPreviewFeatures = exports2.tryLoadEnvs = exports2.getEnvPaths = exports2.getSchemaPathFromPackageJsonSync = exports2.getSchemaPathFromPackageJson = exports2.getSchemaDirSync = exports2.getSchemaSync = exports2.getSchemaPathSync = exports2.getSchema = exports2.getSchemaDir = exports2.getSchemaPath = exports2.getRelativeSchemaPath = exports2.isError = exports2.format = exports2.arg = exports2.getProjectHash = exports2.getCLIPathHash = exports2.unknownCommand = exports2.HelpError = exports2.isCi = exports2.getCommandWithExecutor = exports2.isCurrentBinInstalledGlobally = exports2.drawBox = exports2.maskSchema = exports2.sendPanic = exports2.link = exports2.ErrorArea = exports2.RustPanic = exports2.uriToCredentials = exports2.credentialsToUri = exports2.getPackedPackage = exports2.formatSchema = exports2.getVersion = exports2.getConfig = exports2.getDMMF = exports2.getGenerator = exports2.getGenerators = exports2.Generator = exports2.IntrospectionEngine = exports2.highlightTS = exports2.highlightSql = exports2.highlightDatamodel = exports2.missingGeneratorMessage = exports2.resolveBinary = exports2.keyBy = exports2.pick = void 0; + exports2.printConfigWarnings = exports2.dropDatabase = exports2.createDatabase = void 0; var pick_12 = require_pick(); Object.defineProperty(exports2, "pick", {enumerable: true, get: function() { return pick_12.pick; @@ -77039,55 +77530,58 @@ class Args { return flatMap(this.args, (arg) => arg.collectErrors()); } } -function stringify2(obj, _3, tabbing, isEnum, isJson) { - if (Buffer.isBuffer(obj)) { - return JSON.stringify(obj.toString("base64")); +function stringify2(value, inputType) { + if (Buffer.isBuffer(value)) { + return JSON.stringify(value.toString("base64")); } - if (Object.prototype.toString.call(obj) === "[object BigInt]") { - return obj.toString(); + if (Object.prototype.toString.call(value) === "[object BigInt]") { + return value.toString(); } - if (isJson) { - if (obj === null) { + if (typeof (inputType == null ? void 0 : inputType.type) === "string" && inputType.type === "Json") { + if (value === null) { return "null"; } - if (obj && obj.values && obj.__prismaRawParamaters__) { - return JSON.stringify(obj.values); + if (value && value.values && value.__prismaRawParamaters__) { + return JSON.stringify(value.values); + } + if ((inputType == null ? void 0 : inputType.isList) && Array.isArray(value)) { + return JSON.stringify(value.map((o) => JSON.stringify(o))); } - return JSON.stringify(JSON.stringify(obj)); + return JSON.stringify(JSON.stringify(value)); } - if (obj === void 0) { + if (value === void 0) { return null; } - if (obj === null) { + if (value === null) { return "null"; } - if (decimal_default.isDecimal(obj)) { - return obj.toString(); - } - if (isEnum && typeof obj === "string") { - return obj; + if (decimal_default.isDecimal(value)) { + return value.toString(); } - if (isEnum && Array.isArray(obj)) { - return `[${obj.join(", ")}]`; + if ((inputType == null ? void 0 : inputType.location) === "enumTypes" && typeof value === "string") { + if (Array.isArray(value)) { + return `[${value.join(", ")}]`; + } + return value; } - return JSON.stringify(obj, _3, tabbing); + return JSON.stringify(value, null, 2); } class Arg { constructor({ key, value, - argType, isEnum = false, error, - schemaArg + schemaArg, + inputType }) { + this.inputType = inputType; this.key = key; this.value = value; - this.argType = argType; this.isEnum = isEnum; this.error = error; this.schemaArg = schemaArg; - this.isNullable = (schemaArg == null ? void 0 : schemaArg.inputTypes.reduce((isNullable, inputType) => isNullable && schemaArg.isNullable, true)) || false; + this.isNullable = (schemaArg == null ? void 0 : schemaArg.inputTypes.reduce((isNullable, inputType2) => isNullable && schemaArg.isNullable, true)) || false; this.hasError = Boolean(error) || (value instanceof Args ? value.hasInvalidArg : false) || Array.isArray(value) && value.some((v) => v instanceof Args ? v.hasInvalidArg : false); } _toString(value, key) { @@ -77096,18 +77590,13 @@ class Arg { return void 0; } if (value instanceof Args) { - if (value.args.length === 1 && value.args[0].key === "set" && ((_a = value.args[0].schemaArg) == null ? void 0 : _a.inputTypes[0].type) === "Json") { - return `${key}: { - set: ${stringify2(value.args[0].value, null, 2, this.isEnum, true)} -}`; - } return `${key}: { ${indent_string2.default(value.toString(), 2)} }`; } if (Array.isArray(value)) { - if (this.argType === "Json") { - return `${key}: ${stringify2(value, null, 2, this.isEnum, this.argType === "Json")}`; + if (((_a = this.inputType) == null ? void 0 : _a.type) === "Json") { + return `${key}: ${stringify2(value, this.inputType)}`; } const isScalar = !value.some((v) => typeof v === "object"); return `${key}: [${isScalar ? "" : "\n"}${indent_string2.default(value.map((nestedValue) => { @@ -77116,10 +77605,10 @@ ${indent_string2.default(value.toString(), 2)} ${indent_string2.default(nestedValue.toString(), tab)} }`; } - return stringify2(nestedValue, null, 2, this.isEnum); + return stringify2(nestedValue, this.inputType); }).join(`,${isScalar ? " " : "\n"}`), isScalar ? 0 : tab)}${isScalar ? "" : "\n"}]`; } - return `${key}: ${stringify2(value, null, 2, this.isEnum, this.argType === "Json")}`; + return `${key}: ${stringify2(value, this.inputType)}`; } toString() { return this._toString(this.value, this.key); @@ -77351,7 +77840,7 @@ function getInvalidTypeArg(key, value, arg, bestFittingType) { key, value, isEnum: bestFittingType.location === "enumTypes", - argType: bestFittingType.type, + inputType: bestFittingType, error: { type: "invalidType", providedValue: value, @@ -77456,6 +77945,7 @@ function tryInferArgs(key, value, arg, inputType) { key, value, isEnum: inputType.location === "enumTypes", + inputType, error: { type: "missingArg", missingName: key, @@ -77473,6 +77963,7 @@ function tryInferArgs(key, value, arg, inputType) { key, value, isEnum: inputType.location === "enumTypes", + inputType, error: { type: "invalidNullArg", name: key, @@ -77511,7 +78002,7 @@ function tryInferArgs(key, value, arg, inputType) { value: val === null ? null : objectToArgs(val, inputType.type, arg.inputTypes), isEnum: inputType.location === "enumTypes", error, - argType: inputType.type, + inputType, schemaArg: arg }); } @@ -77546,10 +78037,10 @@ function tryInferArgs(key, value, arg, inputType) { } } if (!Array.isArray(value)) { - for (const argInputType2 of arg.inputTypes) { - const args = objectToArgs(value, argInputType2.type); + for (const nestedArgInputType of arg.inputTypes) { + const args = objectToArgs(value, nestedArgInputType.type); if (args.collectErrors().length === 0) { - return new Arg({key, value: args, isEnum: false, argType: argInputType2.type, schemaArg: arg}); + return new Arg({key, value: args, isEnum: false, schemaArg: arg, inputType: nestedArgInputType}); } } } @@ -77565,7 +78056,7 @@ function tryInferArgs(key, value, arg, inputType) { return objectToArgs(v, argInputType); }), isEnum: false, - argType: argInputType, + inputType, schemaArg: arg, error: err }); @@ -77584,9 +78075,9 @@ function scalarToArg(key, value, arg, inputType) { return new Arg({ key, value, - isEnum: arg.inputTypes[0].location === "enumTypes", - argType: inputType.type, - schemaArg: arg + isEnum: inputType.location === "enumTypes", + schemaArg: arg, + inputType }); } return getInvalidTypeArg(key, value, arg, inputType); @@ -77643,7 +78134,8 @@ function objectToArgs(initialObj, inputType, possibilities, outputType) { missingArg: arg, atLeastOne: Boolean(inputType.constraints.minNumFields) || false, atMostOne: inputType.constraints.maxNumFields === 1 || false - } + }, + inputType: argInputType }); })); } @@ -78160,10 +78652,10 @@ function getPrismaClient(config2) { if (!fs2.default.existsSync(cwd)) { cwd = config2.dirname; } - const schemaPath = path2.default.resolve(config2.dirname, config2.relativePath, ".schema"); const previewFeatures = (_e = (_d = config2.generator) == null ? void 0 : _d.previewFeatures) != null ? _e : []; this._engineConfig = { cwd, + dirname: config2.dirname, enableDebugLogs: useDebug, enableEngineDebugMode: engineConfig.enableEngineDebugMode, datamodelPath: path2.default.join(config2.dirname, "schema.prisma"), diff --git a/experiments/prisma/generated/type-graphql/dmmf.json b/experiments/prisma/generated/type-graphql/dmmf.json index 04eb9987..ce7b5e3c 100644 --- a/experiments/prisma/generated/type-graphql/dmmf.json +++ b/experiments/prisma/generated/type-graphql/dmmf.json @@ -12796,12 +12796,78 @@ ] }, "outputObjectTypes": { - "prisma": [ + "model": [ { - "name": "Query", + "name": "User", "fields": [ { - "name": "findFirstUser", + "name": "id", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "Int", + "location": "scalar", + "isList": false + } + }, + { + "name": "email", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "String", + "location": "scalar", + "isList": false + } + }, + { + "name": "name", + "args": [], + "isRequired": false, + "isNullable": true, + "outputType": { + "type": "String", + "location": "scalar", + "isList": false + } + }, + { + "name": "age", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "Int", + "location": "scalar", + "isList": false + } + }, + { + "name": "balance", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "Float", + "location": "scalar", + "isList": false + } + }, + { + "name": "amount", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "Float", + "location": "scalar", + "isList": false + } + }, + { + "name": "posts", "args": [ { "name": "where", @@ -12809,7 +12875,7 @@ "isNullable": false, "inputTypes": [ { - "type": "UserWhereInput", + "type": "postWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -12822,13 +12888,13 @@ "isNullable": false, "inputTypes": [ { - "type": "UserOrderByInput", + "type": "postOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "UserOrderByInput", + "type": "postOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -12841,7 +12907,7 @@ "isNullable": false, "inputTypes": [ { - "type": "UserWhereUniqueInput", + "type": "postWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -12878,7 +12944,7 @@ "isNullable": false, "inputTypes": [ { - "type": "UserDistinctFieldEnum", + "type": "PostDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -12889,14 +12955,26 @@ "isRequired": false, "isNullable": true, "outputType": { - "type": "User", + "type": "post", "namespace": "model", "location": "outputObjectTypes", + "isList": true + } + }, + { + "name": "role", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "Role", + "namespace": "model", + "location": "enumTypes", "isList": false } }, { - "name": "findManyUser", + "name": "editorPosts", "args": [ { "name": "where", @@ -12904,7 +12982,7 @@ "isNullable": false, "inputTypes": [ { - "type": "UserWhereInput", + "type": "postWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -12917,13 +12995,13 @@ "isNullable": false, "inputTypes": [ { - "type": "UserOrderByInput", + "type": "postOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "UserOrderByInput", + "type": "postOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -12936,7 +13014,7 @@ "isNullable": false, "inputTypes": [ { - "type": "UserWhereUniqueInput", + "type": "postWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -12973,7 +13051,7 @@ "isNullable": false, "inputTypes": [ { - "type": "UserDistinctFieldEnum", + "type": "PostDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -12981,233 +13059,321 @@ ] } ], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "User", + "type": "post", "namespace": "model", "location": "outputObjectTypes", "isList": true } + } + ] + }, + { + "name": "post", + "fields": [ + { + "name": "uuid", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "String", + "location": "scalar", + "isList": false + } }, { - "name": "aggregateUser", - "args": [ - { - "name": "where", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "UserWhereInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "orderBy", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "UserOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": true - }, - { - "type": "UserOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "cursor", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "UserWhereUniqueInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "take", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "skip", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "distinct", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "UserDistinctFieldEnum", - "namespace": "prisma", - "location": "enumTypes", - "isList": true - } - ] - } - ], + "name": "createdAt", + "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "AggregateUser", - "namespace": "prisma", - "location": "outputObjectTypes", + "type": "DateTime", + "location": "scalar", "isList": false } }, { - "name": "findOneUser", - "args": [ - { - "name": "where", - "isRequired": true, - "isNullable": false, - "inputTypes": [ - { - "type": "UserWhereUniqueInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - } - ], - "isRequired": false, - "isNullable": true, + "name": "updatedAt", + "args": [], + "isRequired": true, + "isNullable": false, "outputType": { - "type": "User", - "namespace": "model", - "location": "outputObjectTypes", + "type": "DateTime", + "location": "scalar", "isList": false } }, { - "name": "findFirstpost", - "args": [ - { - "name": "where", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "postWhereInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "orderBy", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "postOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": true - }, - { - "type": "postOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "cursor", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "postWhereUniqueInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "take", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "skip", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "distinct", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "PostDistinctFieldEnum", - "namespace": "prisma", - "location": "enumTypes", - "isList": true - } - ] - } - ], + "name": "published", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "Boolean", + "location": "scalar", + "isList": false + } + }, + { + "name": "title", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "String", + "location": "scalar", + "isList": false + } + }, + { + "name": "subtitle", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "String", + "location": "scalar", + "isList": false + } + }, + { + "name": "content", + "args": [], + "isRequired": false, + "isNullable": true, + "outputType": { + "type": "String", + "location": "scalar", + "isList": false + } + }, + { + "name": "author", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "User", + "namespace": "model", + "location": "outputObjectTypes", + "isList": false + } + }, + { + "name": "authorId", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "Int", + "location": "scalar", + "isList": false + } + }, + { + "name": "editor", + "args": [], + "isRequired": false, + "isNullable": true, + "outputType": { + "type": "User", + "namespace": "model", + "location": "outputObjectTypes", + "isList": false + } + }, + { + "name": "editorId", + "args": [], + "isRequired": false, + "isNullable": true, + "outputType": { + "type": "Int", + "location": "scalar", + "isList": false + } + }, + { + "name": "kind", + "args": [], "isRequired": false, "isNullable": true, "outputType": { - "type": "post", - "namespace": "model", - "location": "outputObjectTypes", + "type": "PostKind", + "namespace": "model", + "location": "enumTypes", + "isList": false + } + }, + { + "name": "metadata", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "Json", + "location": "scalar", + "isList": false + } + } + ] + }, + { + "name": "Category", + "fields": [ + { + "name": "name", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "String", + "location": "scalar", + "isList": false + } + }, + { + "name": "slug", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "String", + "location": "scalar", + "isList": false + } + }, + { + "name": "number", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "Int", + "location": "scalar", + "isList": false + } + } + ] + }, + { + "name": "Patient", + "fields": [ + { + "name": "firstName", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "String", + "location": "scalar", + "isList": false + } + }, + { + "name": "lastName", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "String", + "location": "scalar", + "isList": false + } + }, + { + "name": "email", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "String", + "location": "scalar", + "isList": false + } + } + ] + }, + { + "name": "Movie", + "fields": [ + { + "name": "directorFirstName", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "String", + "location": "scalar", + "isList": false + } + }, + { + "name": "directorLastName", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "String", + "location": "scalar", + "isList": false + } + }, + { + "name": "director", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "Director", + "namespace": "model", + "location": "outputObjectTypes", + "isList": false + } + }, + { + "name": "title", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "String", + "location": "scalar", + "isList": false + } + } + ] + }, + { + "name": "Director", + "fields": [ + { + "name": "firstName", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "String", + "location": "scalar", "isList": false } }, { - "name": "findManypost", + "name": "lastName", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "String", + "location": "scalar", + "isList": false + } + }, + { + "name": "movies", "args": [ { "name": "where", @@ -13215,7 +13381,7 @@ "isNullable": false, "inputTypes": [ { - "type": "postWhereInput", + "type": "MovieWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13228,13 +13394,13 @@ "isNullable": false, "inputTypes": [ { - "type": "postOrderByInput", + "type": "MovieOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "postOrderByInput", + "type": "MovieOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13247,7 +13413,7 @@ "isNullable": false, "inputTypes": [ { - "type": "postWhereUniqueInput", + "type": "MovieWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13284,7 +13450,7 @@ "isNullable": false, "inputTypes": [ { - "type": "PostDistinctFieldEnum", + "type": "MovieDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -13292,17 +13458,44 @@ ] } ], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "post", + "type": "Movie", "namespace": "model", "location": "outputObjectTypes", "isList": true } + } + ] + }, + { + "name": "Problem", + "fields": [ + { + "name": "id", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "Int", + "location": "scalar", + "isList": false + } }, { - "name": "aggregatepost", + "name": "problemText", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "String", + "location": "scalar", + "isList": false + } + }, + { + "name": "likedBy", "args": [ { "name": "where", @@ -13310,7 +13503,7 @@ "isNullable": false, "inputTypes": [ { - "type": "postWhereInput", + "type": "CreatorWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13323,13 +13516,13 @@ "isNullable": false, "inputTypes": [ { - "type": "postOrderByInput", + "type": "CreatorOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "postOrderByInput", + "type": "CreatorOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13342,7 +13535,7 @@ "isNullable": false, "inputTypes": [ { - "type": "postWhereUniqueInput", + "type": "CreatorWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13379,7 +13572,7 @@ "isNullable": false, "inputTypes": [ { - "type": "PostDistinctFieldEnum", + "type": "CreatorDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -13387,138 +13580,67 @@ ] } ], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "AggregatePost", - "namespace": "prisma", + "type": "Creator", + "namespace": "model", "location": "outputObjectTypes", - "isList": false + "isList": true } }, { - "name": "findOnepost", - "args": [ - { - "name": "where", - "isRequired": true, - "isNullable": false, - "inputTypes": [ - { - "type": "postWhereUniqueInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - } - ], + "name": "creator", + "args": [], "isRequired": false, "isNullable": true, "outputType": { - "type": "post", + "type": "Creator", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "findFirstCategory", - "args": [ - { - "name": "where", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "CategoryWhereInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "orderBy", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "CategoryOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": true - }, - { - "type": "CategoryOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "cursor", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "CategoryWhereUniqueInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "take", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "skip", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "distinct", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "CategoryDistinctFieldEnum", - "namespace": "prisma", - "location": "enumTypes", - "isList": true - } - ] - } - ], + "name": "creatorId", + "args": [], "isRequired": false, "isNullable": true, "outputType": { - "type": "Category", - "namespace": "model", - "location": "outputObjectTypes", + "type": "Int", + "location": "scalar", + "isList": false + } + } + ] + }, + { + "name": "Creator", + "fields": [ + { + "name": "id", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "Int", + "location": "scalar", "isList": false } }, { - "name": "findManyCategory", + "name": "name", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "String", + "location": "scalar", + "isList": false + } + }, + { + "name": "likes", "args": [ { "name": "where", @@ -13526,7 +13648,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CategoryWhereInput", + "type": "ProblemWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13539,13 +13661,13 @@ "isNullable": false, "inputTypes": [ { - "type": "CategoryOrderByInput", + "type": "ProblemOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "CategoryOrderByInput", + "type": "ProblemOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13558,7 +13680,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CategoryWhereUniqueInput", + "type": "ProblemWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13595,7 +13717,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CategoryDistinctFieldEnum", + "type": "ProblemDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -13603,17 +13725,17 @@ ] } ], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Category", + "type": "Problem", "namespace": "model", "location": "outputObjectTypes", "isList": true } }, { - "name": "aggregateCategory", + "name": "problems", "args": [ { "name": "where", @@ -13621,7 +13743,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CategoryWhereInput", + "type": "ProblemWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13634,13 +13756,13 @@ "isNullable": false, "inputTypes": [ { - "type": "CategoryOrderByInput", + "type": "ProblemOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "CategoryOrderByInput", + "type": "ProblemOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13653,7 +13775,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CategoryWhereUniqueInput", + "type": "ProblemWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13690,7 +13812,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CategoryDistinctFieldEnum", + "type": "ProblemDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -13698,43 +13820,24 @@ ] } ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "AggregateCategory", - "namespace": "prisma", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "findOneCategory", - "args": [ - { - "name": "where", - "isRequired": true, - "isNullable": false, - "inputTypes": [ - { - "type": "CategoryWhereUniqueInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - } - ], "isRequired": false, "isNullable": true, "outputType": { - "type": "Category", + "type": "Problem", "namespace": "model", "location": "outputObjectTypes", - "isList": false + "isList": true } - }, + } + ] + } + ], + "prisma": [ + { + "name": "Query", + "fields": [ { - "name": "findFirstPatient", + "name": "findFirstUser", "args": [ { "name": "where", @@ -13742,7 +13845,7 @@ "isNullable": false, "inputTypes": [ { - "type": "PatientWhereInput", + "type": "UserWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13755,13 +13858,13 @@ "isNullable": false, "inputTypes": [ { - "type": "PatientOrderByInput", + "type": "UserOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "PatientOrderByInput", + "type": "UserOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13774,7 +13877,7 @@ "isNullable": false, "inputTypes": [ { - "type": "PatientWhereUniqueInput", + "type": "UserWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13811,7 +13914,7 @@ "isNullable": false, "inputTypes": [ { - "type": "PatientDistinctFieldEnum", + "type": "UserDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -13822,14 +13925,14 @@ "isRequired": false, "isNullable": true, "outputType": { - "type": "Patient", + "type": "User", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "findManyPatient", + "name": "findManyUser", "args": [ { "name": "where", @@ -13837,7 +13940,7 @@ "isNullable": false, "inputTypes": [ { - "type": "PatientWhereInput", + "type": "UserWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13850,13 +13953,13 @@ "isNullable": false, "inputTypes": [ { - "type": "PatientOrderByInput", + "type": "UserOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "PatientOrderByInput", + "type": "UserOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13869,7 +13972,7 @@ "isNullable": false, "inputTypes": [ { - "type": "PatientWhereUniqueInput", + "type": "UserWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13906,7 +14009,7 @@ "isNullable": false, "inputTypes": [ { - "type": "PatientDistinctFieldEnum", + "type": "UserDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -13917,14 +14020,14 @@ "isRequired": true, "isNullable": false, "outputType": { - "type": "Patient", + "type": "User", "namespace": "model", "location": "outputObjectTypes", "isList": true } }, { - "name": "aggregatePatient", + "name": "aggregateUser", "args": [ { "name": "where", @@ -13932,7 +14035,7 @@ "isNullable": false, "inputTypes": [ { - "type": "PatientWhereInput", + "type": "UserWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13945,13 +14048,13 @@ "isNullable": false, "inputTypes": [ { - "type": "PatientOrderByInput", + "type": "UserOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "PatientOrderByInput", + "type": "UserOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13964,7 +14067,7 @@ "isNullable": false, "inputTypes": [ { - "type": "PatientWhereUniqueInput", + "type": "UserWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14001,7 +14104,7 @@ "isNullable": false, "inputTypes": [ { - "type": "PatientDistinctFieldEnum", + "type": "UserDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -14012,14 +14115,14 @@ "isRequired": true, "isNullable": false, "outputType": { - "type": "AggregatePatient", + "type": "AggregateUser", "namespace": "prisma", "location": "outputObjectTypes", "isList": false } }, { - "name": "findOnePatient", + "name": "findOneUser", "args": [ { "name": "where", @@ -14027,7 +14130,7 @@ "isNullable": false, "inputTypes": [ { - "type": "PatientWhereUniqueInput", + "type": "UserWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14038,14 +14141,14 @@ "isRequired": false, "isNullable": true, "outputType": { - "type": "Patient", + "type": "User", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "findFirstMovie", + "name": "findFirstpost", "args": [ { "name": "where", @@ -14053,7 +14156,7 @@ "isNullable": false, "inputTypes": [ { - "type": "MovieWhereInput", + "type": "postWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14066,13 +14169,13 @@ "isNullable": false, "inputTypes": [ { - "type": "MovieOrderByInput", + "type": "postOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "MovieOrderByInput", + "type": "postOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14085,7 +14188,7 @@ "isNullable": false, "inputTypes": [ { - "type": "MovieWhereUniqueInput", + "type": "postWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14122,7 +14225,7 @@ "isNullable": false, "inputTypes": [ { - "type": "MovieDistinctFieldEnum", + "type": "PostDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -14133,14 +14236,14 @@ "isRequired": false, "isNullable": true, "outputType": { - "type": "Movie", + "type": "post", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "findManyMovie", + "name": "findManypost", "args": [ { "name": "where", @@ -14148,7 +14251,7 @@ "isNullable": false, "inputTypes": [ { - "type": "MovieWhereInput", + "type": "postWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14161,13 +14264,13 @@ "isNullable": false, "inputTypes": [ { - "type": "MovieOrderByInput", + "type": "postOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "MovieOrderByInput", + "type": "postOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14180,7 +14283,7 @@ "isNullable": false, "inputTypes": [ { - "type": "MovieWhereUniqueInput", + "type": "postWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14217,7 +14320,7 @@ "isNullable": false, "inputTypes": [ { - "type": "MovieDistinctFieldEnum", + "type": "PostDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -14228,14 +14331,14 @@ "isRequired": true, "isNullable": false, "outputType": { - "type": "Movie", + "type": "post", "namespace": "model", "location": "outputObjectTypes", "isList": true } }, { - "name": "aggregateMovie", + "name": "aggregatepost", "args": [ { "name": "where", @@ -14243,7 +14346,7 @@ "isNullable": false, "inputTypes": [ { - "type": "MovieWhereInput", + "type": "postWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14256,13 +14359,13 @@ "isNullable": false, "inputTypes": [ { - "type": "MovieOrderByInput", + "type": "postOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "MovieOrderByInput", + "type": "postOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14275,7 +14378,7 @@ "isNullable": false, "inputTypes": [ { - "type": "MovieWhereUniqueInput", + "type": "postWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14312,7 +14415,7 @@ "isNullable": false, "inputTypes": [ { - "type": "MovieDistinctFieldEnum", + "type": "PostDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -14323,14 +14426,14 @@ "isRequired": true, "isNullable": false, "outputType": { - "type": "AggregateMovie", + "type": "AggregatePost", "namespace": "prisma", "location": "outputObjectTypes", "isList": false } }, { - "name": "findOneMovie", + "name": "findOnepost", "args": [ { "name": "where", @@ -14338,7 +14441,7 @@ "isNullable": false, "inputTypes": [ { - "type": "MovieWhereUniqueInput", + "type": "postWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14349,14 +14452,14 @@ "isRequired": false, "isNullable": true, "outputType": { - "type": "Movie", + "type": "post", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "findFirstDirector", + "name": "findFirstCategory", "args": [ { "name": "where", @@ -14364,7 +14467,7 @@ "isNullable": false, "inputTypes": [ { - "type": "DirectorWhereInput", + "type": "CategoryWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14377,13 +14480,13 @@ "isNullable": false, "inputTypes": [ { - "type": "DirectorOrderByInput", + "type": "CategoryOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "DirectorOrderByInput", + "type": "CategoryOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14396,7 +14499,7 @@ "isNullable": false, "inputTypes": [ { - "type": "DirectorWhereUniqueInput", + "type": "CategoryWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14433,7 +14536,7 @@ "isNullable": false, "inputTypes": [ { - "type": "DirectorDistinctFieldEnum", + "type": "CategoryDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -14444,14 +14547,14 @@ "isRequired": false, "isNullable": true, "outputType": { - "type": "Director", + "type": "Category", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "findManyDirector", + "name": "findManyCategory", "args": [ { "name": "where", @@ -14459,7 +14562,7 @@ "isNullable": false, "inputTypes": [ { - "type": "DirectorWhereInput", + "type": "CategoryWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14472,13 +14575,13 @@ "isNullable": false, "inputTypes": [ { - "type": "DirectorOrderByInput", + "type": "CategoryOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "DirectorOrderByInput", + "type": "CategoryOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14491,7 +14594,7 @@ "isNullable": false, "inputTypes": [ { - "type": "DirectorWhereUniqueInput", + "type": "CategoryWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14528,7 +14631,7 @@ "isNullable": false, "inputTypes": [ { - "type": "DirectorDistinctFieldEnum", + "type": "CategoryDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -14539,14 +14642,14 @@ "isRequired": true, "isNullable": false, "outputType": { - "type": "Director", + "type": "Category", "namespace": "model", "location": "outputObjectTypes", "isList": true } }, { - "name": "aggregateDirector", + "name": "aggregateCategory", "args": [ { "name": "where", @@ -14554,7 +14657,7 @@ "isNullable": false, "inputTypes": [ { - "type": "DirectorWhereInput", + "type": "CategoryWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14567,13 +14670,13 @@ "isNullable": false, "inputTypes": [ { - "type": "DirectorOrderByInput", + "type": "CategoryOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "DirectorOrderByInput", + "type": "CategoryOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14586,7 +14689,7 @@ "isNullable": false, "inputTypes": [ { - "type": "DirectorWhereUniqueInput", + "type": "CategoryWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14623,7 +14726,7 @@ "isNullable": false, "inputTypes": [ { - "type": "DirectorDistinctFieldEnum", + "type": "CategoryDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -14634,14 +14737,14 @@ "isRequired": true, "isNullable": false, "outputType": { - "type": "AggregateDirector", + "type": "AggregateCategory", "namespace": "prisma", "location": "outputObjectTypes", "isList": false } }, { - "name": "findOneDirector", + "name": "findOneCategory", "args": [ { "name": "where", @@ -14649,7 +14752,7 @@ "isNullable": false, "inputTypes": [ { - "type": "DirectorWhereUniqueInput", + "type": "CategoryWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14660,14 +14763,14 @@ "isRequired": false, "isNullable": true, "outputType": { - "type": "Director", + "type": "Category", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "findFirstProblem", + "name": "findFirstPatient", "args": [ { "name": "where", @@ -14675,7 +14778,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemWhereInput", + "type": "PatientWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14688,13 +14791,13 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemOrderByInput", + "type": "PatientOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "ProblemOrderByInput", + "type": "PatientOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14707,7 +14810,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemWhereUniqueInput", + "type": "PatientWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14744,7 +14847,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemDistinctFieldEnum", + "type": "PatientDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -14755,14 +14858,14 @@ "isRequired": false, "isNullable": true, "outputType": { - "type": "Problem", + "type": "Patient", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "findManyProblem", + "name": "findManyPatient", "args": [ { "name": "where", @@ -14770,7 +14873,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemWhereInput", + "type": "PatientWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14783,13 +14886,13 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemOrderByInput", + "type": "PatientOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "ProblemOrderByInput", + "type": "PatientOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14802,7 +14905,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemWhereUniqueInput", + "type": "PatientWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14839,7 +14942,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemDistinctFieldEnum", + "type": "PatientDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -14850,14 +14953,14 @@ "isRequired": true, "isNullable": false, "outputType": { - "type": "Problem", + "type": "Patient", "namespace": "model", "location": "outputObjectTypes", "isList": true } }, { - "name": "aggregateProblem", + "name": "aggregatePatient", "args": [ { "name": "where", @@ -14865,7 +14968,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemWhereInput", + "type": "PatientWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14878,13 +14981,13 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemOrderByInput", + "type": "PatientOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "ProblemOrderByInput", + "type": "PatientOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14897,7 +15000,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemWhereUniqueInput", + "type": "PatientWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14934,7 +15037,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemDistinctFieldEnum", + "type": "PatientDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -14945,14 +15048,14 @@ "isRequired": true, "isNullable": false, "outputType": { - "type": "AggregateProblem", + "type": "AggregatePatient", "namespace": "prisma", "location": "outputObjectTypes", "isList": false } }, { - "name": "findOneProblem", + "name": "findOnePatient", "args": [ { "name": "where", @@ -14960,7 +15063,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemWhereUniqueInput", + "type": "PatientWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14971,14 +15074,14 @@ "isRequired": false, "isNullable": true, "outputType": { - "type": "Problem", + "type": "Patient", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "findFirstCreator", + "name": "findFirstMovie", "args": [ { "name": "where", @@ -14986,7 +15089,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorWhereInput", + "type": "MovieWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14999,13 +15102,13 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorOrderByInput", + "type": "MovieOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "CreatorOrderByInput", + "type": "MovieOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15018,7 +15121,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorWhereUniqueInput", + "type": "MovieWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15055,7 +15158,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorDistinctFieldEnum", + "type": "MovieDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -15066,14 +15169,14 @@ "isRequired": false, "isNullable": true, "outputType": { - "type": "Creator", + "type": "Movie", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "findManyCreator", + "name": "findManyMovie", "args": [ { "name": "where", @@ -15081,7 +15184,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorWhereInput", + "type": "MovieWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15094,13 +15197,13 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorOrderByInput", + "type": "MovieOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "CreatorOrderByInput", + "type": "MovieOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15113,7 +15216,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorWhereUniqueInput", + "type": "MovieWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15150,7 +15253,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorDistinctFieldEnum", + "type": "MovieDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -15161,14 +15264,14 @@ "isRequired": true, "isNullable": false, "outputType": { - "type": "Creator", + "type": "Movie", "namespace": "model", "location": "outputObjectTypes", "isList": true } }, { - "name": "aggregateCreator", + "name": "aggregateMovie", "args": [ { "name": "where", @@ -15176,7 +15279,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorWhereInput", + "type": "MovieWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15189,13 +15292,13 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorOrderByInput", + "type": "MovieOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "CreatorOrderByInput", + "type": "MovieOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15208,7 +15311,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorWhereUniqueInput", + "type": "MovieWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15245,7 +15348,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorDistinctFieldEnum", + "type": "MovieDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -15256,14 +15359,14 @@ "isRequired": true, "isNullable": false, "outputType": { - "type": "AggregateCreator", + "type": "AggregateMovie", "namespace": "prisma", "location": "outputObjectTypes", "isList": false } }, { - "name": "findOneCreator", + "name": "findOneMovie", "args": [ { "name": "where", @@ -15271,7 +15374,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorWhereUniqueInput", + "type": "MovieWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15282,79 +15385,22 @@ "isRequired": false, "isNullable": true, "outputType": { - "type": "Creator", - "namespace": "model", - "location": "outputObjectTypes", - "isList": false - } - } - ] - }, - { - "name": "Mutation", - "fields": [ - { - "name": "createOneUser", - "args": [ - { - "name": "data", - "isRequired": true, - "isNullable": false, - "inputTypes": [ - { - "type": "UserCreateInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - } - ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "User", + "type": "Movie", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "deleteOneUser", + "name": "findFirstDirector", "args": [ { "name": "where", - "isRequired": true, - "isNullable": false, - "inputTypes": [ - { - "type": "UserWhereUniqueInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - } - ], - "isRequired": false, - "isNullable": true, - "outputType": { - "type": "User", - "namespace": "model", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "updateOneUser", - "args": [ - { - "name": "data", - "isRequired": true, + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "UserUpdateInput", + "type": "DirectorWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15362,38 +15408,18 @@ ] }, { - "name": "where", - "isRequired": true, + "name": "orderBy", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "UserWhereUniqueInput", + "type": "DirectorOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", - "isList": false - } - ] - } - ], - "isRequired": false, - "isNullable": true, - "outputType": { - "type": "User", - "namespace": "model", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "upsertOneUser", - "args": [ - { - "name": "where", - "isRequired": true, - "isNullable": false, - "inputTypes": [ + "isList": true + }, { - "type": "UserWhereUniqueInput", + "type": "DirectorOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15401,12 +15427,12 @@ ] }, { - "name": "create", - "isRequired": true, + "name": "cursor", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "UserCreateInput", + "type": "DirectorWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15414,155 +15440,81 @@ ] }, { - "name": "update", - "isRequired": true, - "isNullable": false, - "inputTypes": [ - { - "type": "UserUpdateInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - } - ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "User", - "namespace": "model", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "updateManyUser", - "args": [ - { - "name": "data", - "isRequired": true, + "name": "take", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "UserUpdateManyMutationInput", - "namespace": "prisma", - "location": "inputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } ] }, { - "name": "where", + "name": "skip", "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "UserWhereInput", - "namespace": "prisma", - "location": "inputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } ] - } - ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "BatchPayload", - "namespace": "prisma", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "deleteManyUser", - "args": [ + }, { - "name": "where", + "name": "distinct", "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "UserWhereInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - } - ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "BatchPayload", - "namespace": "prisma", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "createOnepost", - "args": [ - { - "name": "data", - "isRequired": true, - "isNullable": false, - "inputTypes": [ - { - "type": "postCreateInput", + "type": "DirectorDistinctFieldEnum", "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false + "location": "enumTypes", + "isList": true } ] } ], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "post", + "type": "Director", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "deleteOnepost", + "name": "findManyDirector", "args": [ { "name": "where", - "isRequired": true, + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "postWhereUniqueInput", + "type": "DirectorWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false } ] - } - ], - "isRequired": false, - "isNullable": true, - "outputType": { - "type": "post", - "namespace": "model", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "updateOnepost", - "args": [ + }, { - "name": "data", - "isRequired": true, + "name": "orderBy", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "postUpdateInput", + "type": "DirectorOrderByInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": true + }, + { + "type": "DirectorOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15570,67 +15522,52 @@ ] }, { - "name": "where", - "isRequired": true, + "name": "cursor", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "postWhereUniqueInput", + "type": "DirectorWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false } ] - } - ], - "isRequired": false, - "isNullable": true, - "outputType": { - "type": "post", - "namespace": "model", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "upsertOnepost", - "args": [ + }, { - "name": "where", - "isRequired": true, + "name": "take", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "postWhereUniqueInput", - "namespace": "prisma", - "location": "inputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } ] }, { - "name": "create", - "isRequired": true, + "name": "skip", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "postCreateInput", - "namespace": "prisma", - "location": "inputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } ] }, { - "name": "update", - "isRequired": true, + "name": "distinct", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "postUpdateInput", + "type": "DirectorDistinctFieldEnum", "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false + "location": "enumTypes", + "isList": true } ] } @@ -15638,22 +15575,22 @@ "isRequired": true, "isNullable": false, "outputType": { - "type": "post", + "type": "Director", "namespace": "model", "location": "outputObjectTypes", - "isList": false + "isList": true } }, { - "name": "updateManypost", + "name": "aggregateDirector", "args": [ { - "name": "data", - "isRequired": true, + "name": "where", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "postUpdateManyMutationInput", + "type": "DirectorWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15661,129 +15598,94 @@ ] }, { - "name": "where", + "name": "orderBy", "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "postWhereInput", + "type": "DirectorOrderByInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": true + }, + { + "type": "DirectorOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false } ] - } - ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "BatchPayload", - "namespace": "prisma", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "deleteManypost", - "args": [ + }, { - "name": "where", + "name": "cursor", "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "postWhereInput", + "type": "DirectorWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false } ] - } - ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "BatchPayload", - "namespace": "prisma", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "createOneCategory", - "args": [ + }, { - "name": "data", - "isRequired": true, + "name": "take", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "CategoryCreateInput", - "namespace": "prisma", - "location": "inputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } ] - } - ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "Category", - "namespace": "model", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "deleteOneCategory", - "args": [ + }, { - "name": "where", - "isRequired": true, + "name": "skip", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "CategoryWhereUniqueInput", - "namespace": "prisma", - "location": "inputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } ] + }, + { + "name": "distinct", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "DirectorDistinctFieldEnum", + "namespace": "prisma", + "location": "enumTypes", + "isList": true + } + ] } ], - "isRequired": false, - "isNullable": true, + "isRequired": true, + "isNullable": false, "outputType": { - "type": "Category", - "namespace": "model", + "type": "AggregateDirector", + "namespace": "prisma", "location": "outputObjectTypes", "isList": false } }, { - "name": "updateOneCategory", + "name": "findOneDirector", "args": [ - { - "name": "data", - "isRequired": true, - "isNullable": false, - "inputTypes": [ - { - "type": "CategoryUpdateInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, { "name": "where", "isRequired": true, "isNullable": false, "inputTypes": [ { - "type": "CategoryWhereUniqueInput", + "type": "DirectorWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15794,22 +15696,22 @@ "isRequired": false, "isNullable": true, "outputType": { - "type": "Category", + "type": "Director", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "upsertOneCategory", + "name": "findFirstProblem", "args": [ { "name": "where", - "isRequired": true, + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "CategoryWhereUniqueInput", + "type": "ProblemWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15817,51 +15719,31 @@ ] }, { - "name": "create", - "isRequired": true, + "name": "orderBy", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "CategoryCreateInput", + "type": "ProblemOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "update", - "isRequired": true, - "isNullable": false, - "inputTypes": [ + "isList": true + }, { - "type": "CategoryUpdateInput", + "type": "ProblemOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false } ] - } - ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "Category", - "namespace": "model", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "updateManyCategory", - "args": [ + }, { - "name": "data", - "isRequired": true, + "name": "cursor", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "CategoryUpdateManyMutationInput", + "type": "ProblemWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15869,116 +15751,81 @@ ] }, { - "name": "where", + "name": "take", "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "CategoryWhereInput", - "namespace": "prisma", - "location": "inputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } - ] - } - ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "BatchPayload", - "namespace": "prisma", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "deleteManyCategory", - "args": [ + ] + }, { - "name": "where", + "name": "skip", "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "CategoryWhereInput", - "namespace": "prisma", - "location": "inputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } ] - } - ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "BatchPayload", - "namespace": "prisma", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "createOnePatient", - "args": [ + }, { - "name": "data", - "isRequired": true, + "name": "distinct", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "PatientCreateInput", + "type": "ProblemDistinctFieldEnum", "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false + "location": "enumTypes", + "isList": true } ] } ], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Patient", + "type": "Problem", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "deleteOnePatient", + "name": "findManyProblem", "args": [ { "name": "where", - "isRequired": true, + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "PatientWhereUniqueInput", + "type": "ProblemWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false } ] - } - ], - "isRequired": false, - "isNullable": true, - "outputType": { - "type": "Patient", - "namespace": "model", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "updateOnePatient", - "args": [ + }, { - "name": "data", - "isRequired": true, + "name": "orderBy", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "PatientUpdateInput", + "type": "ProblemOrderByInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": true + }, + { + "type": "ProblemOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15986,67 +15833,52 @@ ] }, { - "name": "where", - "isRequired": true, + "name": "cursor", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "PatientWhereUniqueInput", + "type": "ProblemWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false } ] - } - ], - "isRequired": false, - "isNullable": true, - "outputType": { - "type": "Patient", - "namespace": "model", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "upsertOnePatient", - "args": [ + }, { - "name": "where", - "isRequired": true, + "name": "take", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "PatientWhereUniqueInput", - "namespace": "prisma", - "location": "inputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } ] }, { - "name": "create", - "isRequired": true, + "name": "skip", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "PatientCreateInput", - "namespace": "prisma", - "location": "inputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } ] }, { - "name": "update", - "isRequired": true, + "name": "distinct", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "PatientUpdateInput", + "type": "ProblemDistinctFieldEnum", "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false + "location": "enumTypes", + "isList": true } ] } @@ -16054,22 +15886,22 @@ "isRequired": true, "isNullable": false, "outputType": { - "type": "Patient", + "type": "Problem", "namespace": "model", "location": "outputObjectTypes", - "isList": false + "isList": true } }, { - "name": "updateManyPatient", + "name": "aggregateProblem", "args": [ { - "name": "data", - "isRequired": true, + "name": "where", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "PatientUpdateManyMutationInput", + "type": "ProblemWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16077,82 +15909,86 @@ ] }, { - "name": "where", + "name": "orderBy", "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "PatientWhereInput", + "type": "ProblemOrderByInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": true + }, + { + "type": "ProblemOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false } ] - } - ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "BatchPayload", - "namespace": "prisma", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "deleteManyPatient", - "args": [ + }, { - "name": "where", + "name": "cursor", "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "PatientWhereInput", + "type": "ProblemWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false } ] - } - ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "BatchPayload", - "namespace": "prisma", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "createOneMovie", - "args": [ + }, { - "name": "data", - "isRequired": true, + "name": "take", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "MovieCreateInput", - "namespace": "prisma", - "location": "inputObjectTypes", + "type": "Int", + "location": "scalar", + "isList": false + } + ] + }, + { + "name": "skip", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "Int", + "location": "scalar", "isList": false } ] + }, + { + "name": "distinct", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "ProblemDistinctFieldEnum", + "namespace": "prisma", + "location": "enumTypes", + "isList": true + } + ] } ], "isRequired": true, "isNullable": false, "outputType": { - "type": "Movie", - "namespace": "model", + "type": "AggregateProblem", + "namespace": "prisma", "location": "outputObjectTypes", "isList": false } }, { - "name": "deleteOneMovie", + "name": "findOneProblem", "args": [ { "name": "where", @@ -16160,7 +15996,7 @@ "isNullable": false, "inputTypes": [ { - "type": "MovieWhereUniqueInput", + "type": "ProblemWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16171,61 +16007,41 @@ "isRequired": false, "isNullable": true, "outputType": { - "type": "Movie", + "type": "Problem", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "updateOneMovie", + "name": "findFirstCreator", "args": [ - { - "name": "data", - "isRequired": true, - "isNullable": false, - "inputTypes": [ - { - "type": "MovieUpdateInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, { "name": "where", - "isRequired": true, + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "MovieWhereUniqueInput", + "type": "CreatorWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false } ] - } - ], - "isRequired": false, - "isNullable": true, - "outputType": { - "type": "Movie", - "namespace": "model", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "upsertOneMovie", - "args": [ + }, { - "name": "where", - "isRequired": true, + "name": "orderBy", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "MovieWhereUniqueInput", + "type": "CreatorOrderByInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": true + }, + { + "type": "CreatorOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16233,12 +16049,12 @@ ] }, { - "name": "create", - "isRequired": true, + "name": "cursor", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "MovieCreateInput", + "type": "CreatorWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16246,69 +16062,54 @@ ] }, { - "name": "update", - "isRequired": true, + "name": "take", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "MovieUpdateInput", - "namespace": "prisma", - "location": "inputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } ] - } - ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "Movie", - "namespace": "model", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "updateManyMovie", - "args": [ + }, { - "name": "data", - "isRequired": true, + "name": "skip", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "MovieUpdateManyMutationInput", - "namespace": "prisma", - "location": "inputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } ] }, { - "name": "where", + "name": "distinct", "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "MovieWhereInput", + "type": "CreatorDistinctFieldEnum", "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false + "location": "enumTypes", + "isList": true } ] } ], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "BatchPayload", - "namespace": "prisma", + "type": "Creator", + "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "deleteManyMovie", + "name": "findManyCreator", "args": [ { "name": "where", @@ -16316,124 +16117,102 @@ "isNullable": false, "inputTypes": [ { - "type": "MovieWhereInput", + "type": "CreatorWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false } ] - } - ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "BatchPayload", - "namespace": "prisma", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "createOneDirector", - "args": [ + }, { - "name": "data", - "isRequired": true, + "name": "orderBy", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "DirectorCreateInput", + "type": "CreatorOrderByInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": true + }, + { + "type": "CreatorOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false } ] - } - ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "Director", - "namespace": "model", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "deleteOneDirector", - "args": [ + }, { - "name": "where", - "isRequired": true, + "name": "cursor", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "DirectorWhereUniqueInput", + "type": "CreatorWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false } ] - } - ], - "isRequired": false, - "isNullable": true, - "outputType": { - "type": "Director", - "namespace": "model", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "updateOneDirector", - "args": [ + }, { - "name": "data", - "isRequired": true, + "name": "take", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "DirectorUpdateInput", - "namespace": "prisma", - "location": "inputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } ] }, { - "name": "where", - "isRequired": true, + "name": "skip", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "DirectorWhereUniqueInput", - "namespace": "prisma", - "location": "inputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } ] + }, + { + "name": "distinct", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "CreatorDistinctFieldEnum", + "namespace": "prisma", + "location": "enumTypes", + "isList": true + } + ] } ], - "isRequired": false, - "isNullable": true, + "isRequired": true, + "isNullable": false, "outputType": { - "type": "Director", + "type": "Creator", "namespace": "model", "location": "outputObjectTypes", - "isList": false + "isList": true } }, { - "name": "upsertOneDirector", + "name": "aggregateCreator", "args": [ { "name": "where", - "isRequired": true, + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "DirectorWhereUniqueInput", + "type": "CreatorWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16441,12 +16220,18 @@ ] }, { - "name": "create", - "isRequired": true, + "name": "orderBy", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "DirectorCreateInput", + "type": "CreatorOrderByInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": true + }, + { + "type": "CreatorOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16454,77 +16239,75 @@ ] }, { - "name": "update", - "isRequired": true, + "name": "cursor", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "DirectorUpdateInput", + "type": "CreatorWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false } ] - } - ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "Director", - "namespace": "model", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "updateManyDirector", - "args": [ + }, { - "name": "data", - "isRequired": true, + "name": "take", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "DirectorUpdateManyMutationInput", - "namespace": "prisma", - "location": "inputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } ] }, { - "name": "where", + "name": "skip", "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "DirectorWhereInput", - "namespace": "prisma", - "location": "inputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } ] + }, + { + "name": "distinct", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "CreatorDistinctFieldEnum", + "namespace": "prisma", + "location": "enumTypes", + "isList": true + } + ] } ], "isRequired": true, "isNullable": false, "outputType": { - "type": "BatchPayload", + "type": "AggregateCreator", "namespace": "prisma", "location": "outputObjectTypes", "isList": false } }, { - "name": "deleteManyDirector", + "name": "findOneCreator", "args": [ { "name": "where", - "isRequired": false, + "isRequired": true, "isNullable": false, "inputTypes": [ { - "type": "DirectorWhereInput", + "type": "CreatorWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16532,17 +16315,22 @@ ] } ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "BatchPayload", - "namespace": "prisma", + "isRequired": false, + "isNullable": true, + "outputType": { + "type": "Creator", + "namespace": "model", "location": "outputObjectTypes", "isList": false } - }, + } + ] + }, + { + "name": "Mutation", + "fields": [ { - "name": "createOneProblem", + "name": "createOneUser", "args": [ { "name": "data", @@ -16550,7 +16338,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemCreateInput", + "type": "UserCreateInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16561,14 +16349,14 @@ "isRequired": true, "isNullable": false, "outputType": { - "type": "Problem", + "type": "User", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "deleteOneProblem", + "name": "deleteOneUser", "args": [ { "name": "where", @@ -16576,7 +16364,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemWhereUniqueInput", + "type": "UserWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16587,14 +16375,14 @@ "isRequired": false, "isNullable": true, "outputType": { - "type": "Problem", + "type": "User", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "updateOneProblem", + "name": "updateOneUser", "args": [ { "name": "data", @@ -16602,7 +16390,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemUpdateInput", + "type": "UserUpdateInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16615,7 +16403,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemWhereUniqueInput", + "type": "UserWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16626,14 +16414,14 @@ "isRequired": false, "isNullable": true, "outputType": { - "type": "Problem", + "type": "User", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "upsertOneProblem", + "name": "upsertOneUser", "args": [ { "name": "where", @@ -16641,7 +16429,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemWhereUniqueInput", + "type": "UserWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16654,7 +16442,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemCreateInput", + "type": "UserCreateInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16667,7 +16455,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemUpdateInput", + "type": "UserUpdateInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16678,14 +16466,14 @@ "isRequired": true, "isNullable": false, "outputType": { - "type": "Problem", + "type": "User", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "updateManyProblem", + "name": "updateManyUser", "args": [ { "name": "data", @@ -16693,7 +16481,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemUpdateManyMutationInput", + "type": "UserUpdateManyMutationInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16706,7 +16494,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemWhereInput", + "type": "UserWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16724,7 +16512,7 @@ } }, { - "name": "deleteManyProblem", + "name": "deleteManyUser", "args": [ { "name": "where", @@ -16732,7 +16520,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemWhereInput", + "type": "UserWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16750,7 +16538,7 @@ } }, { - "name": "createOneCreator", + "name": "createOnepost", "args": [ { "name": "data", @@ -16758,7 +16546,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorCreateInput", + "type": "postCreateInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16769,14 +16557,14 @@ "isRequired": true, "isNullable": false, "outputType": { - "type": "Creator", + "type": "post", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "deleteOneCreator", + "name": "deleteOnepost", "args": [ { "name": "where", @@ -16784,7 +16572,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorWhereUniqueInput", + "type": "postWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16795,14 +16583,14 @@ "isRequired": false, "isNullable": true, "outputType": { - "type": "Creator", + "type": "post", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "updateOneCreator", + "name": "updateOnepost", "args": [ { "name": "data", @@ -16810,7 +16598,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorUpdateInput", + "type": "postUpdateInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16823,7 +16611,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorWhereUniqueInput", + "type": "postWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16834,14 +16622,14 @@ "isRequired": false, "isNullable": true, "outputType": { - "type": "Creator", + "type": "post", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "upsertOneCreator", + "name": "upsertOnepost", "args": [ { "name": "where", @@ -16849,7 +16637,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorWhereUniqueInput", + "type": "postWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16862,7 +16650,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorCreateInput", + "type": "postCreateInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16875,7 +16663,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorUpdateInput", + "type": "postUpdateInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16886,14 +16674,14 @@ "isRequired": true, "isNullable": false, "outputType": { - "type": "Creator", + "type": "post", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "updateManyCreator", + "name": "updateManypost", "args": [ { "name": "data", @@ -16901,7 +16689,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorUpdateManyMutationInput", + "type": "postUpdateManyMutationInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16914,7 +16702,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorWhereInput", + "type": "postWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16932,7 +16720,7 @@ } }, { - "name": "deleteManyCreator", + "name": "deleteManypost", "args": [ { "name": "where", @@ -16940,7 +16728,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorWhereInput", + "type": "postWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16958,28 +16746,17 @@ } }, { - "name": "executeRaw", + "name": "createOneCategory", "args": [ { - "name": "query", + "name": "data", "isRequired": true, "isNullable": false, "inputTypes": [ { - "type": "String", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "parameters", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Json", - "location": "scalar", + "type": "CategoryCreateInput", + "namespace": "prisma", + "location": "inputObjectTypes", "isList": false } ] @@ -16988,704 +16765,1302 @@ "isRequired": true, "isNullable": false, "outputType": { - "type": "Json", - "location": "scalar", + "type": "Category", + "namespace": "model", + "location": "outputObjectTypes", "isList": false } }, { - "name": "queryRaw", + "name": "deleteOneCategory", "args": [ { - "name": "query", + "name": "where", "isRequired": true, "isNullable": false, "inputTypes": [ { - "type": "String", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "parameters", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Json", - "location": "scalar", + "type": "CategoryWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", "isList": false } ] } ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "Json", - "location": "scalar", - "isList": false - } - } - ] - }, - { - "name": "AggregateUser", - "fields": [ - { - "name": "count", - "args": [], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "Int", - "location": "scalar", - "isList": false - } - }, - { - "name": "avg", - "args": [], - "isRequired": false, - "isNullable": true, - "outputType": { - "type": "UserAvgAggregateOutputType", - "namespace": "prisma", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "sum", - "args": [], - "isRequired": false, - "isNullable": true, - "outputType": { - "type": "UserSumAggregateOutputType", - "namespace": "prisma", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "min", - "args": [], - "isRequired": false, - "isNullable": true, - "outputType": { - "type": "UserMinAggregateOutputType", - "namespace": "prisma", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "max", - "args": [], - "isRequired": false, - "isNullable": true, - "outputType": { - "type": "UserMaxAggregateOutputType", - "namespace": "prisma", - "location": "outputObjectTypes", - "isList": false - } - } - ] - }, - { - "name": "AggregatePost", - "fields": [ - { - "name": "count", - "args": [], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "Int", - "location": "scalar", - "isList": false - } - }, - { - "name": "avg", - "args": [], - "isRequired": false, - "isNullable": true, - "outputType": { - "type": "PostAvgAggregateOutputType", - "namespace": "prisma", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "sum", - "args": [], "isRequired": false, "isNullable": true, "outputType": { - "type": "PostSumAggregateOutputType", - "namespace": "prisma", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "min", - "args": [], - "isRequired": false, - "isNullable": true, - "outputType": { - "type": "PostMinAggregateOutputType", - "namespace": "prisma", + "type": "Category", + "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "max", - "args": [], + "name": "updateOneCategory", + "args": [ + { + "name": "data", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "CategoryUpdateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "where", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "CategoryWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": false, "isNullable": true, "outputType": { - "type": "PostMaxAggregateOutputType", - "namespace": "prisma", + "type": "Category", + "namespace": "model", "location": "outputObjectTypes", "isList": false } - } - ] - }, - { - "name": "AggregateCategory", - "fields": [ + }, { - "name": "count", - "args": [], + "name": "upsertOneCategory", + "args": [ + { + "name": "where", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "CategoryWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "create", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "CategoryCreateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "update", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "CategoryUpdateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": true, "isNullable": false, "outputType": { - "type": "Int", - "location": "scalar", + "type": "Category", + "namespace": "model", + "location": "outputObjectTypes", "isList": false } }, { - "name": "avg", - "args": [], - "isRequired": false, - "isNullable": true, + "name": "updateManyCategory", + "args": [ + { + "name": "data", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "CategoryUpdateManyMutationInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "where", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "CategoryWhereInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], + "isRequired": true, + "isNullable": false, "outputType": { - "type": "CategoryAvgAggregateOutputType", + "type": "BatchPayload", "namespace": "prisma", "location": "outputObjectTypes", "isList": false } }, { - "name": "sum", - "args": [], - "isRequired": false, - "isNullable": true, + "name": "deleteManyCategory", + "args": [ + { + "name": "where", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "CategoryWhereInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], + "isRequired": true, + "isNullable": false, "outputType": { - "type": "CategorySumAggregateOutputType", + "type": "BatchPayload", "namespace": "prisma", "location": "outputObjectTypes", "isList": false } }, { - "name": "min", - "args": [], - "isRequired": false, - "isNullable": true, + "name": "createOnePatient", + "args": [ + { + "name": "data", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "PatientCreateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], + "isRequired": true, + "isNullable": false, "outputType": { - "type": "CategoryMinAggregateOutputType", - "namespace": "prisma", + "type": "Patient", + "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "max", - "args": [], + "name": "deleteOnePatient", + "args": [ + { + "name": "where", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "PatientWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": false, "isNullable": true, "outputType": { - "type": "CategoryMaxAggregateOutputType", - "namespace": "prisma", + "type": "Patient", + "namespace": "model", "location": "outputObjectTypes", "isList": false } - } - ] - }, - { - "name": "AggregatePatient", - "fields": [ - { - "name": "count", - "args": [], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "Int", - "location": "scalar", - "isList": false - } - } - ] - }, - { - "name": "AggregateMovie", - "fields": [ + }, { - "name": "count", - "args": [], - "isRequired": true, - "isNullable": false, + "name": "updateOnePatient", + "args": [ + { + "name": "data", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "PatientUpdateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "where", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "PatientWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Int", - "location": "scalar", + "type": "Patient", + "namespace": "model", + "location": "outputObjectTypes", "isList": false } - } - ] - }, - { - "name": "AggregateDirector", - "fields": [ + }, { - "name": "count", - "args": [], + "name": "upsertOnePatient", + "args": [ + { + "name": "where", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "PatientWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "create", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "PatientCreateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "update", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "PatientUpdateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": true, "isNullable": false, "outputType": { - "type": "Int", - "location": "scalar", + "type": "Patient", + "namespace": "model", + "location": "outputObjectTypes", "isList": false } - } - ] - }, - { - "name": "AggregateProblem", - "fields": [ + }, { - "name": "count", - "args": [], + "name": "updateManyPatient", + "args": [ + { + "name": "data", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "PatientUpdateManyMutationInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "where", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "PatientWhereInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": true, "isNullable": false, "outputType": { - "type": "Int", - "location": "scalar", + "type": "BatchPayload", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } }, { - "name": "avg", - "args": [], - "isRequired": false, - "isNullable": true, + "name": "deleteManyPatient", + "args": [ + { + "name": "where", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "PatientWhereInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], + "isRequired": true, + "isNullable": false, "outputType": { - "type": "ProblemAvgAggregateOutputType", + "type": "BatchPayload", "namespace": "prisma", "location": "outputObjectTypes", "isList": false } }, { - "name": "sum", - "args": [], - "isRequired": false, - "isNullable": true, + "name": "createOneMovie", + "args": [ + { + "name": "data", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "MovieCreateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], + "isRequired": true, + "isNullable": false, "outputType": { - "type": "ProblemSumAggregateOutputType", - "namespace": "prisma", + "type": "Movie", + "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "min", - "args": [], + "name": "deleteOneMovie", + "args": [ + { + "name": "where", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "MovieWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": false, "isNullable": true, "outputType": { - "type": "ProblemMinAggregateOutputType", - "namespace": "prisma", + "type": "Movie", + "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "max", - "args": [], + "name": "updateOneMovie", + "args": [ + { + "name": "data", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "MovieUpdateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "where", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "MovieWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": false, "isNullable": true, "outputType": { - "type": "ProblemMaxAggregateOutputType", - "namespace": "prisma", + "type": "Movie", + "namespace": "model", "location": "outputObjectTypes", "isList": false } - } - ] - }, - { - "name": "AggregateCreator", - "fields": [ + }, { - "name": "count", - "args": [], + "name": "upsertOneMovie", + "args": [ + { + "name": "where", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "MovieWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "create", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "MovieCreateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "update", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "MovieUpdateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": true, "isNullable": false, "outputType": { - "type": "Int", - "location": "scalar", + "type": "Movie", + "namespace": "model", + "location": "outputObjectTypes", "isList": false } }, { - "name": "avg", - "args": [], - "isRequired": false, - "isNullable": true, + "name": "updateManyMovie", + "args": [ + { + "name": "data", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "MovieUpdateManyMutationInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "where", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "MovieWhereInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], + "isRequired": true, + "isNullable": false, "outputType": { - "type": "CreatorAvgAggregateOutputType", + "type": "BatchPayload", "namespace": "prisma", "location": "outputObjectTypes", "isList": false } }, { - "name": "sum", - "args": [], - "isRequired": false, - "isNullable": true, + "name": "deleteManyMovie", + "args": [ + { + "name": "where", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "MovieWhereInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], + "isRequired": true, + "isNullable": false, "outputType": { - "type": "CreatorSumAggregateOutputType", + "type": "BatchPayload", "namespace": "prisma", "location": "outputObjectTypes", "isList": false } }, { - "name": "min", - "args": [], - "isRequired": false, - "isNullable": true, + "name": "createOneDirector", + "args": [ + { + "name": "data", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "DirectorCreateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], + "isRequired": true, + "isNullable": false, "outputType": { - "type": "CreatorMinAggregateOutputType", - "namespace": "prisma", + "type": "Director", + "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "max", - "args": [], + "name": "deleteOneDirector", + "args": [ + { + "name": "where", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "DirectorWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": false, "isNullable": true, "outputType": { - "type": "CreatorMaxAggregateOutputType", - "namespace": "prisma", + "type": "Director", + "namespace": "model", "location": "outputObjectTypes", "isList": false } - } - ] - }, - { - "name": "BatchPayload", - "fields": [ - { - "name": "count", - "args": [], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "Int", - "location": "scalar", - "isList": false - } - } - ] - }, - { - "name": "UserAvgAggregateOutputType", - "fields": [ - { - "name": "id", - "args": [], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "Float", - "location": "scalar", - "isList": false - } - }, - { - "name": "age", - "args": [], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "Float", - "location": "scalar", - "isList": false - } }, { - "name": "balance", - "args": [], - "isRequired": true, - "isNullable": false, + "name": "updateOneDirector", + "args": [ + { + "name": "data", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "DirectorUpdateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "where", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "DirectorWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Float", - "location": "scalar", + "type": "Director", + "namespace": "model", + "location": "outputObjectTypes", "isList": false } }, { - "name": "amount", - "args": [], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "Float", - "location": "scalar", - "isList": false - } - } - ] - }, - { - "name": "UserSumAggregateOutputType", - "fields": [ - { - "name": "id", - "args": [], + "name": "upsertOneDirector", + "args": [ + { + "name": "where", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "DirectorWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "create", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "DirectorCreateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "update", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "DirectorUpdateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": true, "isNullable": false, "outputType": { - "type": "Int", - "location": "scalar", + "type": "Director", + "namespace": "model", + "location": "outputObjectTypes", "isList": false } }, { - "name": "age", - "args": [], + "name": "updateManyDirector", + "args": [ + { + "name": "data", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "DirectorUpdateManyMutationInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "where", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "DirectorWhereInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": true, "isNullable": false, "outputType": { - "type": "Int", - "location": "scalar", + "type": "BatchPayload", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } }, { - "name": "balance", - "args": [], + "name": "deleteManyDirector", + "args": [ + { + "name": "where", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "DirectorWhereInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": true, "isNullable": false, "outputType": { - "type": "Float", - "location": "scalar", + "type": "BatchPayload", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } }, { - "name": "amount", - "args": [], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "Float", - "location": "scalar", - "isList": false - } - } - ] - }, - { - "name": "UserMinAggregateOutputType", - "fields": [ - { - "name": "id", - "args": [], + "name": "createOneProblem", + "args": [ + { + "name": "data", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "ProblemCreateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": true, "isNullable": false, "outputType": { - "type": "Int", - "location": "scalar", + "type": "Problem", + "namespace": "model", + "location": "outputObjectTypes", "isList": false } }, { - "name": "age", - "args": [], - "isRequired": true, - "isNullable": false, + "name": "deleteOneProblem", + "args": [ + { + "name": "where", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "ProblemWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Int", - "location": "scalar", + "type": "Problem", + "namespace": "model", + "location": "outputObjectTypes", "isList": false } }, { - "name": "balance", - "args": [], - "isRequired": true, - "isNullable": false, + "name": "updateOneProblem", + "args": [ + { + "name": "data", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "ProblemUpdateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "where", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "ProblemWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Float", - "location": "scalar", + "type": "Problem", + "namespace": "model", + "location": "outputObjectTypes", "isList": false } }, { - "name": "amount", - "args": [], + "name": "upsertOneProblem", + "args": [ + { + "name": "where", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "ProblemWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "create", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "ProblemCreateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "update", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "ProblemUpdateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": true, "isNullable": false, "outputType": { - "type": "Float", - "location": "scalar", + "type": "Problem", + "namespace": "model", + "location": "outputObjectTypes", "isList": false } - } - ] - }, - { - "name": "UserMaxAggregateOutputType", - "fields": [ + }, { - "name": "id", - "args": [], + "name": "updateManyProblem", + "args": [ + { + "name": "data", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "ProblemUpdateManyMutationInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "where", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "ProblemWhereInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": true, "isNullable": false, "outputType": { - "type": "Int", - "location": "scalar", + "type": "BatchPayload", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } }, { - "name": "age", - "args": [], + "name": "deleteManyProblem", + "args": [ + { + "name": "where", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "ProblemWhereInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": true, "isNullable": false, "outputType": { - "type": "Int", - "location": "scalar", + "type": "BatchPayload", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } }, { - "name": "balance", - "args": [], + "name": "createOneCreator", + "args": [ + { + "name": "data", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "CreatorCreateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": true, "isNullable": false, "outputType": { - "type": "Float", - "location": "scalar", + "type": "Creator", + "namespace": "model", + "location": "outputObjectTypes", "isList": false } }, { - "name": "amount", - "args": [], - "isRequired": true, - "isNullable": false, + "name": "deleteOneCreator", + "args": [ + { + "name": "where", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "CreatorWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Float", - "location": "scalar", + "type": "Creator", + "namespace": "model", + "location": "outputObjectTypes", "isList": false } - } - ] - }, - { - "name": "PostAvgAggregateOutputType", - "fields": [ + }, { - "name": "authorId", - "args": [], - "isRequired": true, - "isNullable": false, + "name": "updateOneCreator", + "args": [ + { + "name": "data", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "CreatorUpdateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "where", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "CreatorWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Float", - "location": "scalar", + "type": "Creator", + "namespace": "model", + "location": "outputObjectTypes", "isList": false } }, { - "name": "editorId", - "args": [], - "isRequired": false, - "isNullable": true, + "name": "upsertOneCreator", + "args": [ + { + "name": "where", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "CreatorWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "create", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "CreatorCreateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "update", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "CreatorUpdateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], + "isRequired": true, + "isNullable": false, "outputType": { - "type": "Float", - "location": "scalar", + "type": "Creator", + "namespace": "model", + "location": "outputObjectTypes", "isList": false } - } - ] - }, - { - "name": "PostSumAggregateOutputType", - "fields": [ + }, { - "name": "authorId", - "args": [], + "name": "updateManyCreator", + "args": [ + { + "name": "data", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "CreatorUpdateManyMutationInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "where", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "CreatorWhereInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": true, "isNullable": false, "outputType": { - "type": "Int", - "location": "scalar", + "type": "BatchPayload", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } }, { - "name": "editorId", - "args": [], - "isRequired": false, - "isNullable": true, + "name": "deleteManyCreator", + "args": [ + { + "name": "where", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "CreatorWhereInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], + "isRequired": true, + "isNullable": false, "outputType": { - "type": "Int", - "location": "scalar", + "type": "BatchPayload", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } - } - ] - }, - { - "name": "PostMinAggregateOutputType", - "fields": [ + }, { - "name": "authorId", - "args": [], + "name": "executeRaw", + "args": [ + { + "name": "query", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "String", + "location": "scalar", + "isList": false + } + ] + }, + { + "name": "parameters", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "Json", + "location": "scalar", + "isList": false + } + ] + } + ], "isRequired": true, "isNullable": false, "outputType": { - "type": "Int", + "type": "Json", "location": "scalar", "isList": false } }, { - "name": "editorId", - "args": [], - "isRequired": false, - "isNullable": true, + "name": "queryRaw", + "args": [ + { + "name": "query", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "String", + "location": "scalar", + "isList": false + } + ] + }, + { + "name": "parameters", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "Json", + "location": "scalar", + "isList": false + } + ] + } + ], + "isRequired": true, + "isNullable": false, "outputType": { - "type": "Int", + "type": "Json", "location": "scalar", "isList": false } @@ -17693,10 +18068,10 @@ ] }, { - "name": "PostMaxAggregateOutputType", + "name": "AggregateUser", "fields": [ { - "name": "authorId", + "name": "count", "args": [], "isRequired": true, "isNullable": false, @@ -17707,71 +18082,60 @@ } }, { - "name": "editorId", + "name": "avg", "args": [], "isRequired": false, "isNullable": true, "outputType": { - "type": "Int", - "location": "scalar", + "type": "UserAvgAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } - } - ] - }, - { - "name": "CategoryAvgAggregateOutputType", - "fields": [ + }, { - "name": "number", + "name": "sum", "args": [], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Float", - "location": "scalar", + "type": "UserSumAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } - } - ] - }, - { - "name": "CategorySumAggregateOutputType", - "fields": [ + }, { - "name": "number", + "name": "min", "args": [], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Int", - "location": "scalar", + "type": "UserMinAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } - } - ] - }, - { - "name": "CategoryMinAggregateOutputType", - "fields": [ + }, { - "name": "number", + "name": "max", "args": [], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Int", - "location": "scalar", + "type": "UserMaxAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } } ] }, { - "name": "CategoryMaxAggregateOutputType", + "name": "AggregatePost", "fields": [ { - "name": "number", + "name": "count", "args": [], "isRequired": true, "isNullable": false, @@ -17780,68 +18144,62 @@ "location": "scalar", "isList": false } - } - ] - }, - { - "name": "ProblemAvgAggregateOutputType", - "fields": [ + }, { - "name": "id", + "name": "avg", "args": [], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Float", - "location": "scalar", + "type": "PostAvgAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } }, { - "name": "creatorId", + "name": "sum", "args": [], "isRequired": false, "isNullable": true, "outputType": { - "type": "Float", - "location": "scalar", + "type": "PostSumAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } - } - ] - }, - { - "name": "ProblemSumAggregateOutputType", - "fields": [ + }, { - "name": "id", + "name": "min", "args": [], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Int", - "location": "scalar", + "type": "PostMinAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } }, { - "name": "creatorId", + "name": "max", "args": [], "isRequired": false, "isNullable": true, "outputType": { - "type": "Int", - "location": "scalar", + "type": "PostMaxAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } } ] }, { - "name": "ProblemMinAggregateOutputType", + "name": "AggregateCategory", "fields": [ { - "name": "id", + "name": "count", "args": [], "isRequired": true, "isNullable": false, @@ -17852,66 +18210,60 @@ } }, { - "name": "creatorId", + "name": "avg", "args": [], "isRequired": false, "isNullable": true, "outputType": { - "type": "Int", - "location": "scalar", + "type": "CategoryAvgAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } - } - ] - }, - { - "name": "ProblemMaxAggregateOutputType", - "fields": [ + }, { - "name": "id", + "name": "sum", "args": [], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Int", - "location": "scalar", + "type": "CategorySumAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } }, { - "name": "creatorId", + "name": "min", "args": [], "isRequired": false, "isNullable": true, "outputType": { - "type": "Int", - "location": "scalar", + "type": "CategoryMinAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } - } - ] - }, - { - "name": "CreatorAvgAggregateOutputType", - "fields": [ + }, { - "name": "id", + "name": "max", "args": [], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Float", - "location": "scalar", + "type": "CategoryMaxAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } } ] }, { - "name": "CreatorSumAggregateOutputType", + "name": "AggregatePatient", "fields": [ { - "name": "id", + "name": "count", "args": [], "isRequired": true, "isNullable": false, @@ -17924,10 +18276,10 @@ ] }, { - "name": "CreatorMinAggregateOutputType", + "name": "AggregateMovie", "fields": [ { - "name": "id", + "name": "count", "args": [], "isRequired": true, "isNullable": false, @@ -17940,10 +18292,10 @@ ] }, { - "name": "CreatorMaxAggregateOutputType", + "name": "AggregateDirector", "fields": [ { - "name": "id", + "name": "count", "args": [], "isRequired": true, "isNullable": false, @@ -17954,14 +18306,12 @@ } } ] - } - ], - "model": [ + }, { - "name": "User", + "name": "AggregateProblem", "fields": [ { - "name": "id", + "name": "count", "args": [], "isRequired": true, "isNullable": false, @@ -17972,384 +18322,252 @@ } }, { - "name": "email", + "name": "avg", "args": [], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "String", - "location": "scalar", + "type": "ProblemAvgAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } }, { - "name": "name", + "name": "sum", "args": [], "isRequired": false, "isNullable": true, "outputType": { - "type": "String", - "location": "scalar", + "type": "ProblemSumAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } }, { - "name": "age", + "name": "min", "args": [], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Int", - "location": "scalar", + "type": "ProblemMinAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } }, { - "name": "balance", + "name": "max", "args": [], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Float", - "location": "scalar", + "type": "ProblemMaxAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } - }, + } + ] + }, + { + "name": "AggregateCreator", + "fields": [ { - "name": "amount", + "name": "count", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "Float", + "type": "Int", "location": "scalar", "isList": false } }, { - "name": "posts", - "args": [ - { - "name": "where", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "postWhereInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "orderBy", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "postOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": true - }, - { - "type": "postOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "cursor", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "postWhereUniqueInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "take", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "skip", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "distinct", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "PostDistinctFieldEnum", - "namespace": "prisma", - "location": "enumTypes", - "isList": true - } - ] - } - ], + "name": "avg", + "args": [], "isRequired": false, "isNullable": true, "outputType": { - "type": "post", - "namespace": "model", + "type": "CreatorAvgAggregateOutputType", + "namespace": "prisma", "location": "outputObjectTypes", - "isList": true + "isList": false } }, { - "name": "role", + "name": "sum", "args": [], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Role", - "namespace": "model", - "location": "enumTypes", + "type": "CreatorSumAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } }, { - "name": "editorPosts", - "args": [ - { - "name": "where", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "postWhereInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "orderBy", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "postOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": true - }, - { - "type": "postOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "cursor", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "postWhereUniqueInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "take", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "skip", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "distinct", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "PostDistinctFieldEnum", - "namespace": "prisma", - "location": "enumTypes", - "isList": true - } - ] - } - ], + "name": "min", + "args": [], + "isRequired": false, + "isNullable": true, + "outputType": { + "type": "CreatorMinAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", + "isList": false + } + }, + { + "name": "max", + "args": [], "isRequired": false, "isNullable": true, "outputType": { - "type": "post", - "namespace": "model", + "type": "CreatorMaxAggregateOutputType", + "namespace": "prisma", "location": "outputObjectTypes", - "isList": true + "isList": false } } ] }, { - "name": "post", + "name": "BatchPayload", "fields": [ { - "name": "uuid", + "name": "count", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "String", + "type": "Int", "location": "scalar", "isList": false } - }, + } + ] + }, + { + "name": "UserAvgAggregateOutputType", + "fields": [ { - "name": "createdAt", + "name": "id", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "DateTime", + "type": "Float", "location": "scalar", "isList": false } }, { - "name": "updatedAt", + "name": "age", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "DateTime", + "type": "Float", "location": "scalar", "isList": false } }, { - "name": "published", + "name": "balance", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "Boolean", + "type": "Float", "location": "scalar", "isList": false } }, { - "name": "title", + "name": "amount", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "String", + "type": "Float", "location": "scalar", "isList": false } - }, + } + ] + }, + { + "name": "UserSumAggregateOutputType", + "fields": [ { - "name": "subtitle", + "name": "id", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "String", + "type": "Int", "location": "scalar", "isList": false } }, { - "name": "content", + "name": "age", "args": [], - "isRequired": false, - "isNullable": true, + "isRequired": true, + "isNullable": false, "outputType": { - "type": "String", + "type": "Int", "location": "scalar", "isList": false } }, { - "name": "author", + "name": "balance", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "User", - "namespace": "model", - "location": "outputObjectTypes", + "type": "Float", + "location": "scalar", "isList": false } }, { - "name": "authorId", + "name": "amount", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "Int", + "type": "Float", "location": "scalar", "isList": false } - }, + } + ] + }, + { + "name": "UserMinAggregateOutputType", + "fields": [ { - "name": "editor", + "name": "id", "args": [], - "isRequired": false, - "isNullable": true, + "isRequired": true, + "isNullable": false, "outputType": { - "type": "User", - "namespace": "model", - "location": "outputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } }, { - "name": "editorId", + "name": "age", "args": [], - "isRequired": false, - "isNullable": true, + "isRequired": true, + "isNullable": false, "outputType": { "type": "Int", "location": "scalar", @@ -18357,24 +18575,23 @@ } }, { - "name": "kind", + "name": "balance", "args": [], - "isRequired": false, - "isNullable": true, + "isRequired": true, + "isNullable": false, "outputType": { - "type": "PostKind", - "namespace": "model", - "location": "enumTypes", + "type": "Float", + "location": "scalar", "isList": false } }, { - "name": "metadata", + "name": "amount", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "Json", + "type": "Float", "location": "scalar", "isList": false } @@ -18382,37 +18599,48 @@ ] }, { - "name": "Category", + "name": "UserMaxAggregateOutputType", "fields": [ { - "name": "name", + "name": "id", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "String", + "type": "Int", "location": "scalar", "isList": false } }, { - "name": "slug", + "name": "age", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "String", + "type": "Int", "location": "scalar", "isList": false } }, { - "name": "number", + "name": "balance", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "Int", + "type": "Float", + "location": "scalar", + "isList": false + } + }, + { + "name": "amount", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "Float", "location": "scalar", "isList": false } @@ -18420,37 +18648,80 @@ ] }, { - "name": "Patient", + "name": "PostAvgAggregateOutputType", "fields": [ { - "name": "firstName", + "name": "authorId", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "String", + "type": "Float", "location": "scalar", "isList": false } }, { - "name": "lastName", + "name": "editorId", + "args": [], + "isRequired": false, + "isNullable": true, + "outputType": { + "type": "Float", + "location": "scalar", + "isList": false + } + } + ] + }, + { + "name": "PostSumAggregateOutputType", + "fields": [ + { + "name": "authorId", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "String", + "type": "Int", "location": "scalar", "isList": false } }, { - "name": "email", + "name": "editorId", + "args": [], + "isRequired": false, + "isNullable": true, + "outputType": { + "type": "Int", + "location": "scalar", + "isList": false + } + } + ] + }, + { + "name": "PostMinAggregateOutputType", + "fields": [ + { + "name": "authorId", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "String", + "type": "Int", + "location": "scalar", + "isList": false + } + }, + { + "name": "editorId", + "args": [], + "isRequired": false, + "isNullable": true, + "outputType": { + "type": "Int", "location": "scalar", "isList": false } @@ -18458,49 +18729,90 @@ ] }, { - "name": "Movie", + "name": "PostMaxAggregateOutputType", "fields": [ { - "name": "directorFirstName", + "name": "authorId", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "String", + "type": "Int", "location": "scalar", "isList": false } }, { - "name": "directorLastName", + "name": "editorId", + "args": [], + "isRequired": false, + "isNullable": true, + "outputType": { + "type": "Int", + "location": "scalar", + "isList": false + } + } + ] + }, + { + "name": "CategoryAvgAggregateOutputType", + "fields": [ + { + "name": "number", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "String", + "type": "Float", "location": "scalar", "isList": false } - }, + } + ] + }, + { + "name": "CategorySumAggregateOutputType", + "fields": [ { - "name": "director", + "name": "number", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "Director", - "namespace": "model", - "location": "outputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } - }, + } + ] + }, + { + "name": "CategoryMinAggregateOutputType", + "fields": [ + { + "name": "number", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "Int", + "location": "scalar", + "isList": false + } + } + ] + }, + { + "name": "CategoryMaxAggregateOutputType", + "fields": [ { - "name": "title", + "name": "number", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "String", + "type": "Int", "location": "scalar", "isList": false } @@ -18508,129 +18820,61 @@ ] }, { - "name": "Director", + "name": "ProblemAvgAggregateOutputType", "fields": [ { - "name": "firstName", + "name": "id", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "String", + "type": "Float", "location": "scalar", "isList": false } }, { - "name": "lastName", + "name": "creatorId", + "args": [], + "isRequired": false, + "isNullable": true, + "outputType": { + "type": "Float", + "location": "scalar", + "isList": false + } + } + ] + }, + { + "name": "ProblemSumAggregateOutputType", + "fields": [ + { + "name": "id", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "String", + "type": "Int", "location": "scalar", "isList": false } }, { - "name": "movies", - "args": [ - { - "name": "where", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "MovieWhereInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "orderBy", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "MovieOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": true - }, - { - "type": "MovieOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "cursor", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "MovieWhereUniqueInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "take", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "skip", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "distinct", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "MovieDistinctFieldEnum", - "namespace": "prisma", - "location": "enumTypes", - "isList": true - } - ] - } - ], + "name": "creatorId", + "args": [], "isRequired": false, "isNullable": true, "outputType": { - "type": "Movie", - "namespace": "model", - "location": "outputObjectTypes", - "isList": true + "type": "Int", + "location": "scalar", + "isList": false } } ] }, { - "name": "Problem", + "name": "ProblemMinAggregateOutputType", "fields": [ { "name": "id", @@ -18644,128 +18888,69 @@ } }, { - "name": "problemText", + "name": "creatorId", + "args": [], + "isRequired": false, + "isNullable": true, + "outputType": { + "type": "Int", + "location": "scalar", + "isList": false + } + } + ] + }, + { + "name": "ProblemMaxAggregateOutputType", + "fields": [ + { + "name": "id", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "String", + "type": "Int", "location": "scalar", "isList": false } }, { - "name": "likedBy", - "args": [ - { - "name": "where", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "CreatorWhereInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "orderBy", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "CreatorOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": true - }, - { - "type": "CreatorOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "cursor", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "CreatorWhereUniqueInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "take", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "skip", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "distinct", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "CreatorDistinctFieldEnum", - "namespace": "prisma", - "location": "enumTypes", - "isList": true - } - ] - } - ], + "name": "creatorId", + "args": [], "isRequired": false, "isNullable": true, "outputType": { - "type": "Creator", - "namespace": "model", - "location": "outputObjectTypes", - "isList": true + "type": "Int", + "location": "scalar", + "isList": false } - }, + } + ] + }, + { + "name": "CreatorAvgAggregateOutputType", + "fields": [ { - "name": "creator", - "args": [], - "isRequired": false, - "isNullable": true, + "name": "id", + "args": [], + "isRequired": true, + "isNullable": false, "outputType": { - "type": "Creator", - "namespace": "model", - "location": "outputObjectTypes", + "type": "Float", + "location": "scalar", "isList": false } - }, + } + ] + }, + { + "name": "CreatorSumAggregateOutputType", + "fields": [ { - "name": "creatorId", + "name": "id", "args": [], - "isRequired": false, - "isNullable": true, + "isRequired": true, + "isNullable": false, "outputType": { "type": "Int", "location": "scalar", @@ -18775,7 +18960,7 @@ ] }, { - "name": "Creator", + "name": "CreatorMinAggregateOutputType", "fields": [ { "name": "id", @@ -18787,229 +18972,28 @@ "location": "scalar", "isList": false } - }, + } + ] + }, + { + "name": "CreatorMaxAggregateOutputType", + "fields": [ { - "name": "name", + "name": "id", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "String", + "type": "Int", "location": "scalar", "isList": false } - }, - { - "name": "likes", - "args": [ - { - "name": "where", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "ProblemWhereInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "orderBy", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "ProblemOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": true - }, - { - "type": "ProblemOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "cursor", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "ProblemWhereUniqueInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "take", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "skip", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "distinct", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "ProblemDistinctFieldEnum", - "namespace": "prisma", - "location": "enumTypes", - "isList": true - } - ] - } - ], - "isRequired": false, - "isNullable": true, - "outputType": { - "type": "Problem", - "namespace": "model", - "location": "outputObjectTypes", - "isList": true - } - }, - { - "name": "problems", - "args": [ - { - "name": "where", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "ProblemWhereInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "orderBy", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "ProblemOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": true - }, - { - "type": "ProblemOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "cursor", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "ProblemWhereUniqueInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "take", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "skip", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "distinct", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "ProblemDistinctFieldEnum", - "namespace": "prisma", - "location": "enumTypes", - "isList": true - } - ] - } - ], - "isRequired": false, - "isNullable": true, - "outputType": { - "type": "Problem", - "namespace": "model", - "location": "outputObjectTypes", - "isList": true - } } ] } ] }, "enumTypes": { - "model": [ - { - "name": "Role", - "values": [ - "USER", - "ADMIN" - ] - }, - { - "name": "PostKind", - "values": [ - "BLOG", - "ADVERT" - ] - } - ], "prisma": [ { "name": "UserDistinctFieldEnum", @@ -19099,6 +19083,22 @@ "insensitive" ] } + ], + "model": [ + { + "name": "Role", + "values": [ + "USER", + "ADMIN" + ] + }, + { + "name": "PostKind", + "values": [ + "BLOG", + "ADVERT" + ] + } ] } }, diff --git a/experiments/prisma/generated/type-graphql/prisma-client-dmmf.json b/experiments/prisma/generated/type-graphql/prisma-client-dmmf.json index 930d8c38..5882c055 100644 --- a/experiments/prisma/generated/type-graphql/prisma-client-dmmf.json +++ b/experiments/prisma/generated/type-graphql/prisma-client-dmmf.json @@ -12796,12 +12796,78 @@ ] }, "outputObjectTypes": { - "prisma": [ + "model": [ { - "name": "Query", + "name": "User", "fields": [ { - "name": "findFirstUser", + "name": "id", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "Int", + "location": "scalar", + "isList": false + } + }, + { + "name": "email", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "String", + "location": "scalar", + "isList": false + } + }, + { + "name": "name", + "args": [], + "isRequired": false, + "isNullable": true, + "outputType": { + "type": "String", + "location": "scalar", + "isList": false + } + }, + { + "name": "age", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "Int", + "location": "scalar", + "isList": false + } + }, + { + "name": "balance", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "Float", + "location": "scalar", + "isList": false + } + }, + { + "name": "amount", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "Float", + "location": "scalar", + "isList": false + } + }, + { + "name": "posts", "args": [ { "name": "where", @@ -12809,7 +12875,7 @@ "isNullable": false, "inputTypes": [ { - "type": "UserWhereInput", + "type": "postWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -12822,13 +12888,13 @@ "isNullable": false, "inputTypes": [ { - "type": "UserOrderByInput", + "type": "postOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "UserOrderByInput", + "type": "postOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -12841,7 +12907,7 @@ "isNullable": false, "inputTypes": [ { - "type": "UserWhereUniqueInput", + "type": "postWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -12878,7 +12944,7 @@ "isNullable": false, "inputTypes": [ { - "type": "UserDistinctFieldEnum", + "type": "PostDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -12889,14 +12955,26 @@ "isRequired": false, "isNullable": true, "outputType": { - "type": "User", + "type": "post", "namespace": "model", "location": "outputObjectTypes", + "isList": true + } + }, + { + "name": "role", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "Role", + "namespace": "model", + "location": "enumTypes", "isList": false } }, { - "name": "findManyUser", + "name": "editorPosts", "args": [ { "name": "where", @@ -12904,7 +12982,7 @@ "isNullable": false, "inputTypes": [ { - "type": "UserWhereInput", + "type": "postWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -12917,13 +12995,13 @@ "isNullable": false, "inputTypes": [ { - "type": "UserOrderByInput", + "type": "postOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "UserOrderByInput", + "type": "postOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -12936,7 +13014,7 @@ "isNullable": false, "inputTypes": [ { - "type": "UserWhereUniqueInput", + "type": "postWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -12973,7 +13051,7 @@ "isNullable": false, "inputTypes": [ { - "type": "UserDistinctFieldEnum", + "type": "PostDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -12981,233 +13059,321 @@ ] } ], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "User", + "type": "post", "namespace": "model", "location": "outputObjectTypes", "isList": true } + } + ] + }, + { + "name": "post", + "fields": [ + { + "name": "uuid", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "String", + "location": "scalar", + "isList": false + } }, { - "name": "aggregateUser", - "args": [ - { - "name": "where", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "UserWhereInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "orderBy", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "UserOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": true - }, - { - "type": "UserOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "cursor", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "UserWhereUniqueInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "take", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "skip", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "distinct", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "UserDistinctFieldEnum", - "namespace": "prisma", - "location": "enumTypes", - "isList": true - } - ] - } - ], + "name": "createdAt", + "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "AggregateUser", - "namespace": "prisma", - "location": "outputObjectTypes", + "type": "DateTime", + "location": "scalar", "isList": false } }, { - "name": "findOneUser", - "args": [ - { - "name": "where", - "isRequired": true, - "isNullable": false, - "inputTypes": [ - { - "type": "UserWhereUniqueInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - } - ], - "isRequired": false, - "isNullable": true, + "name": "updatedAt", + "args": [], + "isRequired": true, + "isNullable": false, "outputType": { - "type": "User", - "namespace": "model", - "location": "outputObjectTypes", + "type": "DateTime", + "location": "scalar", "isList": false } }, { - "name": "findFirstpost", - "args": [ - { - "name": "where", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "postWhereInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "orderBy", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "postOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": true - }, - { - "type": "postOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "cursor", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "postWhereUniqueInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "take", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "skip", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "distinct", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "PostDistinctFieldEnum", - "namespace": "prisma", - "location": "enumTypes", - "isList": true - } - ] - } - ], + "name": "published", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "Boolean", + "location": "scalar", + "isList": false + } + }, + { + "name": "title", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "String", + "location": "scalar", + "isList": false + } + }, + { + "name": "subtitle", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "String", + "location": "scalar", + "isList": false + } + }, + { + "name": "content", + "args": [], + "isRequired": false, + "isNullable": true, + "outputType": { + "type": "String", + "location": "scalar", + "isList": false + } + }, + { + "name": "author", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "User", + "namespace": "model", + "location": "outputObjectTypes", + "isList": false + } + }, + { + "name": "authorId", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "Int", + "location": "scalar", + "isList": false + } + }, + { + "name": "editor", + "args": [], + "isRequired": false, + "isNullable": true, + "outputType": { + "type": "User", + "namespace": "model", + "location": "outputObjectTypes", + "isList": false + } + }, + { + "name": "editorId", + "args": [], + "isRequired": false, + "isNullable": true, + "outputType": { + "type": "Int", + "location": "scalar", + "isList": false + } + }, + { + "name": "kind", + "args": [], "isRequired": false, "isNullable": true, "outputType": { - "type": "post", - "namespace": "model", - "location": "outputObjectTypes", + "type": "PostKind", + "namespace": "model", + "location": "enumTypes", + "isList": false + } + }, + { + "name": "metadata", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "Json", + "location": "scalar", + "isList": false + } + } + ] + }, + { + "name": "Category", + "fields": [ + { + "name": "name", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "String", + "location": "scalar", + "isList": false + } + }, + { + "name": "slug", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "String", + "location": "scalar", + "isList": false + } + }, + { + "name": "number", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "Int", + "location": "scalar", + "isList": false + } + } + ] + }, + { + "name": "Patient", + "fields": [ + { + "name": "firstName", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "String", + "location": "scalar", + "isList": false + } + }, + { + "name": "lastName", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "String", + "location": "scalar", + "isList": false + } + }, + { + "name": "email", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "String", + "location": "scalar", + "isList": false + } + } + ] + }, + { + "name": "Movie", + "fields": [ + { + "name": "directorFirstName", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "String", + "location": "scalar", + "isList": false + } + }, + { + "name": "directorLastName", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "String", + "location": "scalar", + "isList": false + } + }, + { + "name": "director", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "Director", + "namespace": "model", + "location": "outputObjectTypes", + "isList": false + } + }, + { + "name": "title", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "String", + "location": "scalar", + "isList": false + } + } + ] + }, + { + "name": "Director", + "fields": [ + { + "name": "firstName", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "String", + "location": "scalar", "isList": false } }, { - "name": "findManypost", + "name": "lastName", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "String", + "location": "scalar", + "isList": false + } + }, + { + "name": "movies", "args": [ { "name": "where", @@ -13215,7 +13381,7 @@ "isNullable": false, "inputTypes": [ { - "type": "postWhereInput", + "type": "MovieWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13228,13 +13394,13 @@ "isNullable": false, "inputTypes": [ { - "type": "postOrderByInput", + "type": "MovieOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "postOrderByInput", + "type": "MovieOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13247,7 +13413,7 @@ "isNullable": false, "inputTypes": [ { - "type": "postWhereUniqueInput", + "type": "MovieWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13284,7 +13450,7 @@ "isNullable": false, "inputTypes": [ { - "type": "PostDistinctFieldEnum", + "type": "MovieDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -13292,17 +13458,44 @@ ] } ], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "post", + "type": "Movie", "namespace": "model", "location": "outputObjectTypes", "isList": true } + } + ] + }, + { + "name": "Problem", + "fields": [ + { + "name": "id", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "Int", + "location": "scalar", + "isList": false + } }, { - "name": "aggregatepost", + "name": "problemText", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "String", + "location": "scalar", + "isList": false + } + }, + { + "name": "likedBy", "args": [ { "name": "where", @@ -13310,7 +13503,7 @@ "isNullable": false, "inputTypes": [ { - "type": "postWhereInput", + "type": "CreatorWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13323,13 +13516,13 @@ "isNullable": false, "inputTypes": [ { - "type": "postOrderByInput", + "type": "CreatorOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "postOrderByInput", + "type": "CreatorOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13342,7 +13535,7 @@ "isNullable": false, "inputTypes": [ { - "type": "postWhereUniqueInput", + "type": "CreatorWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13379,7 +13572,7 @@ "isNullable": false, "inputTypes": [ { - "type": "PostDistinctFieldEnum", + "type": "CreatorDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -13387,138 +13580,67 @@ ] } ], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "AggregatePost", - "namespace": "prisma", + "type": "Creator", + "namespace": "model", "location": "outputObjectTypes", - "isList": false + "isList": true } }, { - "name": "findOnepost", - "args": [ - { - "name": "where", - "isRequired": true, - "isNullable": false, - "inputTypes": [ - { - "type": "postWhereUniqueInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - } - ], + "name": "creator", + "args": [], "isRequired": false, "isNullable": true, "outputType": { - "type": "post", + "type": "Creator", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "findFirstCategory", - "args": [ - { - "name": "where", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "CategoryWhereInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "orderBy", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "CategoryOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": true - }, - { - "type": "CategoryOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "cursor", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "CategoryWhereUniqueInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "take", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "skip", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "distinct", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "CategoryDistinctFieldEnum", - "namespace": "prisma", - "location": "enumTypes", - "isList": true - } - ] - } - ], + "name": "creatorId", + "args": [], "isRequired": false, "isNullable": true, "outputType": { - "type": "Category", - "namespace": "model", - "location": "outputObjectTypes", + "type": "Int", + "location": "scalar", + "isList": false + } + } + ] + }, + { + "name": "Creator", + "fields": [ + { + "name": "id", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "Int", + "location": "scalar", "isList": false } }, { - "name": "findManyCategory", + "name": "name", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "String", + "location": "scalar", + "isList": false + } + }, + { + "name": "likes", "args": [ { "name": "where", @@ -13526,7 +13648,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CategoryWhereInput", + "type": "ProblemWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13539,13 +13661,13 @@ "isNullable": false, "inputTypes": [ { - "type": "CategoryOrderByInput", + "type": "ProblemOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "CategoryOrderByInput", + "type": "ProblemOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13558,7 +13680,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CategoryWhereUniqueInput", + "type": "ProblemWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13595,7 +13717,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CategoryDistinctFieldEnum", + "type": "ProblemDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -13603,17 +13725,17 @@ ] } ], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Category", + "type": "Problem", "namespace": "model", "location": "outputObjectTypes", "isList": true } }, { - "name": "aggregateCategory", + "name": "problems", "args": [ { "name": "where", @@ -13621,7 +13743,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CategoryWhereInput", + "type": "ProblemWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13634,13 +13756,13 @@ "isNullable": false, "inputTypes": [ { - "type": "CategoryOrderByInput", + "type": "ProblemOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "CategoryOrderByInput", + "type": "ProblemOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13653,7 +13775,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CategoryWhereUniqueInput", + "type": "ProblemWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13690,7 +13812,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CategoryDistinctFieldEnum", + "type": "ProblemDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -13698,43 +13820,24 @@ ] } ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "AggregateCategory", - "namespace": "prisma", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "findOneCategory", - "args": [ - { - "name": "where", - "isRequired": true, - "isNullable": false, - "inputTypes": [ - { - "type": "CategoryWhereUniqueInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - } - ], "isRequired": false, "isNullable": true, "outputType": { - "type": "Category", + "type": "Problem", "namespace": "model", "location": "outputObjectTypes", - "isList": false + "isList": true } - }, + } + ] + } + ], + "prisma": [ + { + "name": "Query", + "fields": [ { - "name": "findFirstPatient", + "name": "findFirstUser", "args": [ { "name": "where", @@ -13742,7 +13845,7 @@ "isNullable": false, "inputTypes": [ { - "type": "PatientWhereInput", + "type": "UserWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13755,13 +13858,13 @@ "isNullable": false, "inputTypes": [ { - "type": "PatientOrderByInput", + "type": "UserOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "PatientOrderByInput", + "type": "UserOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13774,7 +13877,7 @@ "isNullable": false, "inputTypes": [ { - "type": "PatientWhereUniqueInput", + "type": "UserWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13811,7 +13914,7 @@ "isNullable": false, "inputTypes": [ { - "type": "PatientDistinctFieldEnum", + "type": "UserDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -13822,14 +13925,14 @@ "isRequired": false, "isNullable": true, "outputType": { - "type": "Patient", + "type": "User", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "findManyPatient", + "name": "findManyUser", "args": [ { "name": "where", @@ -13837,7 +13940,7 @@ "isNullable": false, "inputTypes": [ { - "type": "PatientWhereInput", + "type": "UserWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13850,13 +13953,13 @@ "isNullable": false, "inputTypes": [ { - "type": "PatientOrderByInput", + "type": "UserOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "PatientOrderByInput", + "type": "UserOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13869,7 +13972,7 @@ "isNullable": false, "inputTypes": [ { - "type": "PatientWhereUniqueInput", + "type": "UserWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13906,7 +14009,7 @@ "isNullable": false, "inputTypes": [ { - "type": "PatientDistinctFieldEnum", + "type": "UserDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -13917,14 +14020,14 @@ "isRequired": true, "isNullable": false, "outputType": { - "type": "Patient", + "type": "User", "namespace": "model", "location": "outputObjectTypes", "isList": true } }, { - "name": "aggregatePatient", + "name": "aggregateUser", "args": [ { "name": "where", @@ -13932,7 +14035,7 @@ "isNullable": false, "inputTypes": [ { - "type": "PatientWhereInput", + "type": "UserWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13945,13 +14048,13 @@ "isNullable": false, "inputTypes": [ { - "type": "PatientOrderByInput", + "type": "UserOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "PatientOrderByInput", + "type": "UserOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -13964,7 +14067,7 @@ "isNullable": false, "inputTypes": [ { - "type": "PatientWhereUniqueInput", + "type": "UserWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14001,7 +14104,7 @@ "isNullable": false, "inputTypes": [ { - "type": "PatientDistinctFieldEnum", + "type": "UserDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -14012,14 +14115,14 @@ "isRequired": true, "isNullable": false, "outputType": { - "type": "AggregatePatient", + "type": "AggregateUser", "namespace": "prisma", "location": "outputObjectTypes", "isList": false } }, { - "name": "findOnePatient", + "name": "findOneUser", "args": [ { "name": "where", @@ -14027,7 +14130,7 @@ "isNullable": false, "inputTypes": [ { - "type": "PatientWhereUniqueInput", + "type": "UserWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14038,14 +14141,14 @@ "isRequired": false, "isNullable": true, "outputType": { - "type": "Patient", + "type": "User", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "findFirstMovie", + "name": "findFirstpost", "args": [ { "name": "where", @@ -14053,7 +14156,7 @@ "isNullable": false, "inputTypes": [ { - "type": "MovieWhereInput", + "type": "postWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14066,13 +14169,13 @@ "isNullable": false, "inputTypes": [ { - "type": "MovieOrderByInput", + "type": "postOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "MovieOrderByInput", + "type": "postOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14085,7 +14188,7 @@ "isNullable": false, "inputTypes": [ { - "type": "MovieWhereUniqueInput", + "type": "postWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14122,7 +14225,7 @@ "isNullable": false, "inputTypes": [ { - "type": "MovieDistinctFieldEnum", + "type": "PostDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -14133,14 +14236,14 @@ "isRequired": false, "isNullable": true, "outputType": { - "type": "Movie", + "type": "post", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "findManyMovie", + "name": "findManypost", "args": [ { "name": "where", @@ -14148,7 +14251,7 @@ "isNullable": false, "inputTypes": [ { - "type": "MovieWhereInput", + "type": "postWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14161,13 +14264,13 @@ "isNullable": false, "inputTypes": [ { - "type": "MovieOrderByInput", + "type": "postOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "MovieOrderByInput", + "type": "postOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14180,7 +14283,7 @@ "isNullable": false, "inputTypes": [ { - "type": "MovieWhereUniqueInput", + "type": "postWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14217,7 +14320,7 @@ "isNullable": false, "inputTypes": [ { - "type": "MovieDistinctFieldEnum", + "type": "PostDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -14228,14 +14331,14 @@ "isRequired": true, "isNullable": false, "outputType": { - "type": "Movie", + "type": "post", "namespace": "model", "location": "outputObjectTypes", "isList": true } }, { - "name": "aggregateMovie", + "name": "aggregatepost", "args": [ { "name": "where", @@ -14243,7 +14346,7 @@ "isNullable": false, "inputTypes": [ { - "type": "MovieWhereInput", + "type": "postWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14256,13 +14359,13 @@ "isNullable": false, "inputTypes": [ { - "type": "MovieOrderByInput", + "type": "postOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "MovieOrderByInput", + "type": "postOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14275,7 +14378,7 @@ "isNullable": false, "inputTypes": [ { - "type": "MovieWhereUniqueInput", + "type": "postWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14312,7 +14415,7 @@ "isNullable": false, "inputTypes": [ { - "type": "MovieDistinctFieldEnum", + "type": "PostDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -14323,14 +14426,14 @@ "isRequired": true, "isNullable": false, "outputType": { - "type": "AggregateMovie", + "type": "AggregatePost", "namespace": "prisma", "location": "outputObjectTypes", "isList": false } }, { - "name": "findOneMovie", + "name": "findOnepost", "args": [ { "name": "where", @@ -14338,7 +14441,7 @@ "isNullable": false, "inputTypes": [ { - "type": "MovieWhereUniqueInput", + "type": "postWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14349,14 +14452,14 @@ "isRequired": false, "isNullable": true, "outputType": { - "type": "Movie", + "type": "post", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "findFirstDirector", + "name": "findFirstCategory", "args": [ { "name": "where", @@ -14364,7 +14467,7 @@ "isNullable": false, "inputTypes": [ { - "type": "DirectorWhereInput", + "type": "CategoryWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14377,13 +14480,13 @@ "isNullable": false, "inputTypes": [ { - "type": "DirectorOrderByInput", + "type": "CategoryOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "DirectorOrderByInput", + "type": "CategoryOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14396,7 +14499,7 @@ "isNullable": false, "inputTypes": [ { - "type": "DirectorWhereUniqueInput", + "type": "CategoryWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14433,7 +14536,7 @@ "isNullable": false, "inputTypes": [ { - "type": "DirectorDistinctFieldEnum", + "type": "CategoryDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -14444,14 +14547,14 @@ "isRequired": false, "isNullable": true, "outputType": { - "type": "Director", + "type": "Category", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "findManyDirector", + "name": "findManyCategory", "args": [ { "name": "where", @@ -14459,7 +14562,7 @@ "isNullable": false, "inputTypes": [ { - "type": "DirectorWhereInput", + "type": "CategoryWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14472,13 +14575,13 @@ "isNullable": false, "inputTypes": [ { - "type": "DirectorOrderByInput", + "type": "CategoryOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "DirectorOrderByInput", + "type": "CategoryOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14491,7 +14594,7 @@ "isNullable": false, "inputTypes": [ { - "type": "DirectorWhereUniqueInput", + "type": "CategoryWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14528,7 +14631,7 @@ "isNullable": false, "inputTypes": [ { - "type": "DirectorDistinctFieldEnum", + "type": "CategoryDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -14539,14 +14642,14 @@ "isRequired": true, "isNullable": false, "outputType": { - "type": "Director", + "type": "Category", "namespace": "model", "location": "outputObjectTypes", "isList": true } }, { - "name": "aggregateDirector", + "name": "aggregateCategory", "args": [ { "name": "where", @@ -14554,7 +14657,7 @@ "isNullable": false, "inputTypes": [ { - "type": "DirectorWhereInput", + "type": "CategoryWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14567,13 +14670,13 @@ "isNullable": false, "inputTypes": [ { - "type": "DirectorOrderByInput", + "type": "CategoryOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "DirectorOrderByInput", + "type": "CategoryOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14586,7 +14689,7 @@ "isNullable": false, "inputTypes": [ { - "type": "DirectorWhereUniqueInput", + "type": "CategoryWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14623,7 +14726,7 @@ "isNullable": false, "inputTypes": [ { - "type": "DirectorDistinctFieldEnum", + "type": "CategoryDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -14634,14 +14737,14 @@ "isRequired": true, "isNullable": false, "outputType": { - "type": "AggregateDirector", + "type": "AggregateCategory", "namespace": "prisma", "location": "outputObjectTypes", "isList": false } }, { - "name": "findOneDirector", + "name": "findOneCategory", "args": [ { "name": "where", @@ -14649,7 +14752,7 @@ "isNullable": false, "inputTypes": [ { - "type": "DirectorWhereUniqueInput", + "type": "CategoryWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14660,14 +14763,14 @@ "isRequired": false, "isNullable": true, "outputType": { - "type": "Director", + "type": "Category", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "findFirstProblem", + "name": "findFirstPatient", "args": [ { "name": "where", @@ -14675,7 +14778,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemWhereInput", + "type": "PatientWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14688,13 +14791,13 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemOrderByInput", + "type": "PatientOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "ProblemOrderByInput", + "type": "PatientOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14707,7 +14810,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemWhereUniqueInput", + "type": "PatientWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14744,7 +14847,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemDistinctFieldEnum", + "type": "PatientDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -14755,14 +14858,14 @@ "isRequired": false, "isNullable": true, "outputType": { - "type": "Problem", + "type": "Patient", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "findManyProblem", + "name": "findManyPatient", "args": [ { "name": "where", @@ -14770,7 +14873,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemWhereInput", + "type": "PatientWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14783,13 +14886,13 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemOrderByInput", + "type": "PatientOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "ProblemOrderByInput", + "type": "PatientOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14802,7 +14905,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemWhereUniqueInput", + "type": "PatientWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14839,7 +14942,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemDistinctFieldEnum", + "type": "PatientDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -14850,14 +14953,14 @@ "isRequired": true, "isNullable": false, "outputType": { - "type": "Problem", + "type": "Patient", "namespace": "model", "location": "outputObjectTypes", "isList": true } }, { - "name": "aggregateProblem", + "name": "aggregatePatient", "args": [ { "name": "where", @@ -14865,7 +14968,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemWhereInput", + "type": "PatientWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14878,13 +14981,13 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemOrderByInput", + "type": "PatientOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "ProblemOrderByInput", + "type": "PatientOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14897,7 +15000,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemWhereUniqueInput", + "type": "PatientWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14934,7 +15037,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemDistinctFieldEnum", + "type": "PatientDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -14945,14 +15048,14 @@ "isRequired": true, "isNullable": false, "outputType": { - "type": "AggregateProblem", + "type": "AggregatePatient", "namespace": "prisma", "location": "outputObjectTypes", "isList": false } }, { - "name": "findOneProblem", + "name": "findOnePatient", "args": [ { "name": "where", @@ -14960,7 +15063,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemWhereUniqueInput", + "type": "PatientWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14971,14 +15074,14 @@ "isRequired": false, "isNullable": true, "outputType": { - "type": "Problem", + "type": "Patient", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "findFirstCreator", + "name": "findFirstMovie", "args": [ { "name": "where", @@ -14986,7 +15089,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorWhereInput", + "type": "MovieWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -14999,13 +15102,13 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorOrderByInput", + "type": "MovieOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "CreatorOrderByInput", + "type": "MovieOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15018,7 +15121,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorWhereUniqueInput", + "type": "MovieWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15055,7 +15158,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorDistinctFieldEnum", + "type": "MovieDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -15066,14 +15169,14 @@ "isRequired": false, "isNullable": true, "outputType": { - "type": "Creator", + "type": "Movie", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "findManyCreator", + "name": "findManyMovie", "args": [ { "name": "where", @@ -15081,7 +15184,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorWhereInput", + "type": "MovieWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15094,13 +15197,13 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorOrderByInput", + "type": "MovieOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "CreatorOrderByInput", + "type": "MovieOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15113,7 +15216,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorWhereUniqueInput", + "type": "MovieWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15150,7 +15253,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorDistinctFieldEnum", + "type": "MovieDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -15161,14 +15264,14 @@ "isRequired": true, "isNullable": false, "outputType": { - "type": "Creator", + "type": "Movie", "namespace": "model", "location": "outputObjectTypes", "isList": true } }, { - "name": "aggregateCreator", + "name": "aggregateMovie", "args": [ { "name": "where", @@ -15176,7 +15279,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorWhereInput", + "type": "MovieWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15189,13 +15292,13 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorOrderByInput", + "type": "MovieOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": true }, { - "type": "CreatorOrderByInput", + "type": "MovieOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15208,7 +15311,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorWhereUniqueInput", + "type": "MovieWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15245,7 +15348,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorDistinctFieldEnum", + "type": "MovieDistinctFieldEnum", "namespace": "prisma", "location": "enumTypes", "isList": true @@ -15256,14 +15359,14 @@ "isRequired": true, "isNullable": false, "outputType": { - "type": "AggregateCreator", + "type": "AggregateMovie", "namespace": "prisma", "location": "outputObjectTypes", "isList": false } }, { - "name": "findOneCreator", + "name": "findOneMovie", "args": [ { "name": "where", @@ -15271,7 +15374,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorWhereUniqueInput", + "type": "MovieWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15282,79 +15385,22 @@ "isRequired": false, "isNullable": true, "outputType": { - "type": "Creator", - "namespace": "model", - "location": "outputObjectTypes", - "isList": false - } - } - ] - }, - { - "name": "Mutation", - "fields": [ - { - "name": "createOneUser", - "args": [ - { - "name": "data", - "isRequired": true, - "isNullable": false, - "inputTypes": [ - { - "type": "UserCreateInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - } - ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "User", + "type": "Movie", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "deleteOneUser", + "name": "findFirstDirector", "args": [ { "name": "where", - "isRequired": true, - "isNullable": false, - "inputTypes": [ - { - "type": "UserWhereUniqueInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - } - ], - "isRequired": false, - "isNullable": true, - "outputType": { - "type": "User", - "namespace": "model", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "updateOneUser", - "args": [ - { - "name": "data", - "isRequired": true, + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "UserUpdateInput", + "type": "DirectorWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15362,38 +15408,18 @@ ] }, { - "name": "where", - "isRequired": true, + "name": "orderBy", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "UserWhereUniqueInput", + "type": "DirectorOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", - "isList": false - } - ] - } - ], - "isRequired": false, - "isNullable": true, - "outputType": { - "type": "User", - "namespace": "model", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "upsertOneUser", - "args": [ - { - "name": "where", - "isRequired": true, - "isNullable": false, - "inputTypes": [ + "isList": true + }, { - "type": "UserWhereUniqueInput", + "type": "DirectorOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15401,12 +15427,12 @@ ] }, { - "name": "create", - "isRequired": true, + "name": "cursor", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "UserCreateInput", + "type": "DirectorWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15414,155 +15440,81 @@ ] }, { - "name": "update", - "isRequired": true, - "isNullable": false, - "inputTypes": [ - { - "type": "UserUpdateInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - } - ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "User", - "namespace": "model", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "updateManyUser", - "args": [ - { - "name": "data", - "isRequired": true, + "name": "take", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "UserUpdateManyMutationInput", - "namespace": "prisma", - "location": "inputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } ] }, { - "name": "where", + "name": "skip", "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "UserWhereInput", - "namespace": "prisma", - "location": "inputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } ] - } - ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "BatchPayload", - "namespace": "prisma", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "deleteManyUser", - "args": [ + }, { - "name": "where", + "name": "distinct", "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "UserWhereInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - } - ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "BatchPayload", - "namespace": "prisma", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "createOnepost", - "args": [ - { - "name": "data", - "isRequired": true, - "isNullable": false, - "inputTypes": [ - { - "type": "postCreateInput", + "type": "DirectorDistinctFieldEnum", "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false + "location": "enumTypes", + "isList": true } ] } ], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "post", + "type": "Director", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "deleteOnepost", + "name": "findManyDirector", "args": [ { "name": "where", - "isRequired": true, + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "postWhereUniqueInput", + "type": "DirectorWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false } ] - } - ], - "isRequired": false, - "isNullable": true, - "outputType": { - "type": "post", - "namespace": "model", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "updateOnepost", - "args": [ + }, { - "name": "data", - "isRequired": true, + "name": "orderBy", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "postUpdateInput", + "type": "DirectorOrderByInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": true + }, + { + "type": "DirectorOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15570,67 +15522,52 @@ ] }, { - "name": "where", - "isRequired": true, + "name": "cursor", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "postWhereUniqueInput", + "type": "DirectorWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false } ] - } - ], - "isRequired": false, - "isNullable": true, - "outputType": { - "type": "post", - "namespace": "model", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "upsertOnepost", - "args": [ + }, { - "name": "where", - "isRequired": true, + "name": "take", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "postWhereUniqueInput", - "namespace": "prisma", - "location": "inputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } ] }, { - "name": "create", - "isRequired": true, + "name": "skip", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "postCreateInput", - "namespace": "prisma", - "location": "inputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } ] }, { - "name": "update", - "isRequired": true, + "name": "distinct", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "postUpdateInput", + "type": "DirectorDistinctFieldEnum", "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false + "location": "enumTypes", + "isList": true } ] } @@ -15638,22 +15575,22 @@ "isRequired": true, "isNullable": false, "outputType": { - "type": "post", + "type": "Director", "namespace": "model", "location": "outputObjectTypes", - "isList": false + "isList": true } }, { - "name": "updateManypost", + "name": "aggregateDirector", "args": [ { - "name": "data", - "isRequired": true, + "name": "where", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "postUpdateManyMutationInput", + "type": "DirectorWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15661,129 +15598,94 @@ ] }, { - "name": "where", + "name": "orderBy", "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "postWhereInput", + "type": "DirectorOrderByInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": true + }, + { + "type": "DirectorOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false } ] - } - ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "BatchPayload", - "namespace": "prisma", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "deleteManypost", - "args": [ + }, { - "name": "where", + "name": "cursor", "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "postWhereInput", + "type": "DirectorWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false } ] - } - ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "BatchPayload", - "namespace": "prisma", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "createOneCategory", - "args": [ + }, { - "name": "data", - "isRequired": true, + "name": "take", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "CategoryCreateInput", - "namespace": "prisma", - "location": "inputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } ] - } - ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "Category", - "namespace": "model", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "deleteOneCategory", - "args": [ + }, { - "name": "where", - "isRequired": true, + "name": "skip", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "CategoryWhereUniqueInput", - "namespace": "prisma", - "location": "inputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } ] + }, + { + "name": "distinct", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "DirectorDistinctFieldEnum", + "namespace": "prisma", + "location": "enumTypes", + "isList": true + } + ] } ], - "isRequired": false, - "isNullable": true, + "isRequired": true, + "isNullable": false, "outputType": { - "type": "Category", - "namespace": "model", + "type": "AggregateDirector", + "namespace": "prisma", "location": "outputObjectTypes", "isList": false } }, { - "name": "updateOneCategory", + "name": "findOneDirector", "args": [ - { - "name": "data", - "isRequired": true, - "isNullable": false, - "inputTypes": [ - { - "type": "CategoryUpdateInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, { "name": "where", "isRequired": true, "isNullable": false, "inputTypes": [ { - "type": "CategoryWhereUniqueInput", + "type": "DirectorWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15794,22 +15696,22 @@ "isRequired": false, "isNullable": true, "outputType": { - "type": "Category", + "type": "Director", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "upsertOneCategory", + "name": "findFirstProblem", "args": [ { "name": "where", - "isRequired": true, + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "CategoryWhereUniqueInput", + "type": "ProblemWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15817,51 +15719,31 @@ ] }, { - "name": "create", - "isRequired": true, + "name": "orderBy", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "CategoryCreateInput", + "type": "ProblemOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "update", - "isRequired": true, - "isNullable": false, - "inputTypes": [ + "isList": true + }, { - "type": "CategoryUpdateInput", + "type": "ProblemOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false } ] - } - ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "Category", - "namespace": "model", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "updateManyCategory", - "args": [ + }, { - "name": "data", - "isRequired": true, + "name": "cursor", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "CategoryUpdateManyMutationInput", + "type": "ProblemWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15869,116 +15751,81 @@ ] }, { - "name": "where", + "name": "take", "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "CategoryWhereInput", - "namespace": "prisma", - "location": "inputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } - ] - } - ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "BatchPayload", - "namespace": "prisma", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "deleteManyCategory", - "args": [ + ] + }, { - "name": "where", + "name": "skip", "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "CategoryWhereInput", - "namespace": "prisma", - "location": "inputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } ] - } - ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "BatchPayload", - "namespace": "prisma", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "createOnePatient", - "args": [ + }, { - "name": "data", - "isRequired": true, + "name": "distinct", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "PatientCreateInput", + "type": "ProblemDistinctFieldEnum", "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false + "location": "enumTypes", + "isList": true } ] } ], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Patient", + "type": "Problem", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "deleteOnePatient", + "name": "findManyProblem", "args": [ { "name": "where", - "isRequired": true, + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "PatientWhereUniqueInput", + "type": "ProblemWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false } ] - } - ], - "isRequired": false, - "isNullable": true, - "outputType": { - "type": "Patient", - "namespace": "model", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "updateOnePatient", - "args": [ + }, { - "name": "data", - "isRequired": true, + "name": "orderBy", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "PatientUpdateInput", + "type": "ProblemOrderByInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": true + }, + { + "type": "ProblemOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -15986,67 +15833,52 @@ ] }, { - "name": "where", - "isRequired": true, + "name": "cursor", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "PatientWhereUniqueInput", + "type": "ProblemWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false } ] - } - ], - "isRequired": false, - "isNullable": true, - "outputType": { - "type": "Patient", - "namespace": "model", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "upsertOnePatient", - "args": [ + }, { - "name": "where", - "isRequired": true, + "name": "take", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "PatientWhereUniqueInput", - "namespace": "prisma", - "location": "inputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } ] }, { - "name": "create", - "isRequired": true, + "name": "skip", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "PatientCreateInput", - "namespace": "prisma", - "location": "inputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } ] }, { - "name": "update", - "isRequired": true, + "name": "distinct", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "PatientUpdateInput", + "type": "ProblemDistinctFieldEnum", "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false + "location": "enumTypes", + "isList": true } ] } @@ -16054,22 +15886,22 @@ "isRequired": true, "isNullable": false, "outputType": { - "type": "Patient", + "type": "Problem", "namespace": "model", "location": "outputObjectTypes", - "isList": false + "isList": true } }, { - "name": "updateManyPatient", + "name": "aggregateProblem", "args": [ { - "name": "data", - "isRequired": true, + "name": "where", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "PatientUpdateManyMutationInput", + "type": "ProblemWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16077,82 +15909,86 @@ ] }, { - "name": "where", + "name": "orderBy", "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "PatientWhereInput", + "type": "ProblemOrderByInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": true + }, + { + "type": "ProblemOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false } ] - } - ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "BatchPayload", - "namespace": "prisma", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "deleteManyPatient", - "args": [ + }, { - "name": "where", + "name": "cursor", "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "PatientWhereInput", + "type": "ProblemWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false } ] - } - ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "BatchPayload", - "namespace": "prisma", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "createOneMovie", - "args": [ + }, { - "name": "data", - "isRequired": true, + "name": "take", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "MovieCreateInput", - "namespace": "prisma", - "location": "inputObjectTypes", + "type": "Int", + "location": "scalar", + "isList": false + } + ] + }, + { + "name": "skip", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "Int", + "location": "scalar", "isList": false } ] + }, + { + "name": "distinct", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "ProblemDistinctFieldEnum", + "namespace": "prisma", + "location": "enumTypes", + "isList": true + } + ] } ], "isRequired": true, "isNullable": false, "outputType": { - "type": "Movie", - "namespace": "model", + "type": "AggregateProblem", + "namespace": "prisma", "location": "outputObjectTypes", "isList": false } }, { - "name": "deleteOneMovie", + "name": "findOneProblem", "args": [ { "name": "where", @@ -16160,7 +15996,7 @@ "isNullable": false, "inputTypes": [ { - "type": "MovieWhereUniqueInput", + "type": "ProblemWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16171,61 +16007,41 @@ "isRequired": false, "isNullable": true, "outputType": { - "type": "Movie", + "type": "Problem", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "updateOneMovie", + "name": "findFirstCreator", "args": [ - { - "name": "data", - "isRequired": true, - "isNullable": false, - "inputTypes": [ - { - "type": "MovieUpdateInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, { "name": "where", - "isRequired": true, + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "MovieWhereUniqueInput", + "type": "CreatorWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false } ] - } - ], - "isRequired": false, - "isNullable": true, - "outputType": { - "type": "Movie", - "namespace": "model", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "upsertOneMovie", - "args": [ + }, { - "name": "where", - "isRequired": true, + "name": "orderBy", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "MovieWhereUniqueInput", + "type": "CreatorOrderByInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": true + }, + { + "type": "CreatorOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16233,12 +16049,12 @@ ] }, { - "name": "create", - "isRequired": true, + "name": "cursor", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "MovieCreateInput", + "type": "CreatorWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16246,69 +16062,54 @@ ] }, { - "name": "update", - "isRequired": true, + "name": "take", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "MovieUpdateInput", - "namespace": "prisma", - "location": "inputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } ] - } - ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "Movie", - "namespace": "model", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "updateManyMovie", - "args": [ + }, { - "name": "data", - "isRequired": true, + "name": "skip", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "MovieUpdateManyMutationInput", - "namespace": "prisma", - "location": "inputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } ] }, { - "name": "where", + "name": "distinct", "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "MovieWhereInput", + "type": "CreatorDistinctFieldEnum", "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false + "location": "enumTypes", + "isList": true } ] } ], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "BatchPayload", - "namespace": "prisma", + "type": "Creator", + "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "deleteManyMovie", + "name": "findManyCreator", "args": [ { "name": "where", @@ -16316,124 +16117,102 @@ "isNullable": false, "inputTypes": [ { - "type": "MovieWhereInput", + "type": "CreatorWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false } ] - } - ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "BatchPayload", - "namespace": "prisma", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "createOneDirector", - "args": [ + }, { - "name": "data", - "isRequired": true, + "name": "orderBy", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "DirectorCreateInput", + "type": "CreatorOrderByInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": true + }, + { + "type": "CreatorOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false } ] - } - ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "Director", - "namespace": "model", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "deleteOneDirector", - "args": [ + }, { - "name": "where", - "isRequired": true, + "name": "cursor", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "DirectorWhereUniqueInput", + "type": "CreatorWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false } ] - } - ], - "isRequired": false, - "isNullable": true, - "outputType": { - "type": "Director", - "namespace": "model", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "updateOneDirector", - "args": [ + }, { - "name": "data", - "isRequired": true, + "name": "take", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "DirectorUpdateInput", - "namespace": "prisma", - "location": "inputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } ] }, { - "name": "where", - "isRequired": true, + "name": "skip", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "DirectorWhereUniqueInput", - "namespace": "prisma", - "location": "inputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } ] + }, + { + "name": "distinct", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "CreatorDistinctFieldEnum", + "namespace": "prisma", + "location": "enumTypes", + "isList": true + } + ] } ], - "isRequired": false, - "isNullable": true, + "isRequired": true, + "isNullable": false, "outputType": { - "type": "Director", + "type": "Creator", "namespace": "model", "location": "outputObjectTypes", - "isList": false + "isList": true } }, { - "name": "upsertOneDirector", + "name": "aggregateCreator", "args": [ { "name": "where", - "isRequired": true, + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "DirectorWhereUniqueInput", + "type": "CreatorWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16441,12 +16220,18 @@ ] }, { - "name": "create", - "isRequired": true, + "name": "orderBy", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "DirectorCreateInput", + "type": "CreatorOrderByInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": true + }, + { + "type": "CreatorOrderByInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16454,77 +16239,75 @@ ] }, { - "name": "update", - "isRequired": true, + "name": "cursor", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "DirectorUpdateInput", + "type": "CreatorWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false } ] - } - ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "Director", - "namespace": "model", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "updateManyDirector", - "args": [ + }, { - "name": "data", - "isRequired": true, + "name": "take", + "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "DirectorUpdateManyMutationInput", - "namespace": "prisma", - "location": "inputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } ] }, { - "name": "where", + "name": "skip", "isRequired": false, "isNullable": false, "inputTypes": [ { - "type": "DirectorWhereInput", - "namespace": "prisma", - "location": "inputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } ] + }, + { + "name": "distinct", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "CreatorDistinctFieldEnum", + "namespace": "prisma", + "location": "enumTypes", + "isList": true + } + ] } ], "isRequired": true, "isNullable": false, "outputType": { - "type": "BatchPayload", + "type": "AggregateCreator", "namespace": "prisma", "location": "outputObjectTypes", "isList": false } }, { - "name": "deleteManyDirector", + "name": "findOneCreator", "args": [ { "name": "where", - "isRequired": false, + "isRequired": true, "isNullable": false, "inputTypes": [ { - "type": "DirectorWhereInput", + "type": "CreatorWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16532,17 +16315,22 @@ ] } ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "BatchPayload", - "namespace": "prisma", + "isRequired": false, + "isNullable": true, + "outputType": { + "type": "Creator", + "namespace": "model", "location": "outputObjectTypes", "isList": false } - }, + } + ] + }, + { + "name": "Mutation", + "fields": [ { - "name": "createOneProblem", + "name": "createOneUser", "args": [ { "name": "data", @@ -16550,7 +16338,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemCreateInput", + "type": "UserCreateInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16561,14 +16349,14 @@ "isRequired": true, "isNullable": false, "outputType": { - "type": "Problem", + "type": "User", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "deleteOneProblem", + "name": "deleteOneUser", "args": [ { "name": "where", @@ -16576,7 +16364,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemWhereUniqueInput", + "type": "UserWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16587,14 +16375,14 @@ "isRequired": false, "isNullable": true, "outputType": { - "type": "Problem", + "type": "User", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "updateOneProblem", + "name": "updateOneUser", "args": [ { "name": "data", @@ -16602,7 +16390,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemUpdateInput", + "type": "UserUpdateInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16615,7 +16403,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemWhereUniqueInput", + "type": "UserWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16626,14 +16414,14 @@ "isRequired": false, "isNullable": true, "outputType": { - "type": "Problem", + "type": "User", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "upsertOneProblem", + "name": "upsertOneUser", "args": [ { "name": "where", @@ -16641,7 +16429,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemWhereUniqueInput", + "type": "UserWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16654,7 +16442,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemCreateInput", + "type": "UserCreateInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16667,7 +16455,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemUpdateInput", + "type": "UserUpdateInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16678,14 +16466,14 @@ "isRequired": true, "isNullable": false, "outputType": { - "type": "Problem", + "type": "User", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "updateManyProblem", + "name": "updateManyUser", "args": [ { "name": "data", @@ -16693,7 +16481,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemUpdateManyMutationInput", + "type": "UserUpdateManyMutationInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16706,7 +16494,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemWhereInput", + "type": "UserWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16724,7 +16512,7 @@ } }, { - "name": "deleteManyProblem", + "name": "deleteManyUser", "args": [ { "name": "where", @@ -16732,7 +16520,7 @@ "isNullable": false, "inputTypes": [ { - "type": "ProblemWhereInput", + "type": "UserWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16750,7 +16538,7 @@ } }, { - "name": "createOneCreator", + "name": "createOnepost", "args": [ { "name": "data", @@ -16758,7 +16546,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorCreateInput", + "type": "postCreateInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16769,14 +16557,14 @@ "isRequired": true, "isNullable": false, "outputType": { - "type": "Creator", + "type": "post", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "deleteOneCreator", + "name": "deleteOnepost", "args": [ { "name": "where", @@ -16784,7 +16572,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorWhereUniqueInput", + "type": "postWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16795,14 +16583,14 @@ "isRequired": false, "isNullable": true, "outputType": { - "type": "Creator", + "type": "post", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "updateOneCreator", + "name": "updateOnepost", "args": [ { "name": "data", @@ -16810,7 +16598,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorUpdateInput", + "type": "postUpdateInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16823,7 +16611,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorWhereUniqueInput", + "type": "postWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16834,14 +16622,14 @@ "isRequired": false, "isNullable": true, "outputType": { - "type": "Creator", + "type": "post", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "upsertOneCreator", + "name": "upsertOnepost", "args": [ { "name": "where", @@ -16849,7 +16637,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorWhereUniqueInput", + "type": "postWhereUniqueInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16862,7 +16650,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorCreateInput", + "type": "postCreateInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16875,7 +16663,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorUpdateInput", + "type": "postUpdateInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16886,14 +16674,14 @@ "isRequired": true, "isNullable": false, "outputType": { - "type": "Creator", + "type": "post", "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "updateManyCreator", + "name": "updateManypost", "args": [ { "name": "data", @@ -16901,7 +16689,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorUpdateManyMutationInput", + "type": "postUpdateManyMutationInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16914,7 +16702,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorWhereInput", + "type": "postWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16932,7 +16720,7 @@ } }, { - "name": "deleteManyCreator", + "name": "deleteManypost", "args": [ { "name": "where", @@ -16940,7 +16728,7 @@ "isNullable": false, "inputTypes": [ { - "type": "CreatorWhereInput", + "type": "postWhereInput", "namespace": "prisma", "location": "inputObjectTypes", "isList": false @@ -16958,28 +16746,17 @@ } }, { - "name": "executeRaw", + "name": "createOneCategory", "args": [ { - "name": "query", + "name": "data", "isRequired": true, "isNullable": false, "inputTypes": [ { - "type": "String", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "parameters", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Json", - "location": "scalar", + "type": "CategoryCreateInput", + "namespace": "prisma", + "location": "inputObjectTypes", "isList": false } ] @@ -16988,704 +16765,1302 @@ "isRequired": true, "isNullable": false, "outputType": { - "type": "Json", - "location": "scalar", + "type": "Category", + "namespace": "model", + "location": "outputObjectTypes", "isList": false } }, { - "name": "queryRaw", + "name": "deleteOneCategory", "args": [ { - "name": "query", + "name": "where", "isRequired": true, "isNullable": false, "inputTypes": [ { - "type": "String", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "parameters", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Json", - "location": "scalar", + "type": "CategoryWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", "isList": false } ] } ], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "Json", - "location": "scalar", - "isList": false - } - } - ] - }, - { - "name": "AggregateUser", - "fields": [ - { - "name": "count", - "args": [], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "Int", - "location": "scalar", - "isList": false - } - }, - { - "name": "avg", - "args": [], - "isRequired": false, - "isNullable": true, - "outputType": { - "type": "UserAvgAggregateOutputType", - "namespace": "prisma", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "sum", - "args": [], - "isRequired": false, - "isNullable": true, - "outputType": { - "type": "UserSumAggregateOutputType", - "namespace": "prisma", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "min", - "args": [], - "isRequired": false, - "isNullable": true, - "outputType": { - "type": "UserMinAggregateOutputType", - "namespace": "prisma", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "max", - "args": [], - "isRequired": false, - "isNullable": true, - "outputType": { - "type": "UserMaxAggregateOutputType", - "namespace": "prisma", - "location": "outputObjectTypes", - "isList": false - } - } - ] - }, - { - "name": "AggregatePost", - "fields": [ - { - "name": "count", - "args": [], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "Int", - "location": "scalar", - "isList": false - } - }, - { - "name": "avg", - "args": [], - "isRequired": false, - "isNullable": true, - "outputType": { - "type": "PostAvgAggregateOutputType", - "namespace": "prisma", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "sum", - "args": [], "isRequired": false, "isNullable": true, "outputType": { - "type": "PostSumAggregateOutputType", - "namespace": "prisma", - "location": "outputObjectTypes", - "isList": false - } - }, - { - "name": "min", - "args": [], - "isRequired": false, - "isNullable": true, - "outputType": { - "type": "PostMinAggregateOutputType", - "namespace": "prisma", + "type": "Category", + "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "max", - "args": [], + "name": "updateOneCategory", + "args": [ + { + "name": "data", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "CategoryUpdateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "where", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "CategoryWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": false, "isNullable": true, "outputType": { - "type": "PostMaxAggregateOutputType", - "namespace": "prisma", + "type": "Category", + "namespace": "model", "location": "outputObjectTypes", "isList": false } - } - ] - }, - { - "name": "AggregateCategory", - "fields": [ + }, { - "name": "count", - "args": [], + "name": "upsertOneCategory", + "args": [ + { + "name": "where", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "CategoryWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "create", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "CategoryCreateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "update", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "CategoryUpdateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": true, "isNullable": false, "outputType": { - "type": "Int", - "location": "scalar", + "type": "Category", + "namespace": "model", + "location": "outputObjectTypes", "isList": false } }, { - "name": "avg", - "args": [], - "isRequired": false, - "isNullable": true, + "name": "updateManyCategory", + "args": [ + { + "name": "data", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "CategoryUpdateManyMutationInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "where", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "CategoryWhereInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], + "isRequired": true, + "isNullable": false, "outputType": { - "type": "CategoryAvgAggregateOutputType", + "type": "BatchPayload", "namespace": "prisma", "location": "outputObjectTypes", "isList": false } }, { - "name": "sum", - "args": [], - "isRequired": false, - "isNullable": true, + "name": "deleteManyCategory", + "args": [ + { + "name": "where", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "CategoryWhereInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], + "isRequired": true, + "isNullable": false, "outputType": { - "type": "CategorySumAggregateOutputType", + "type": "BatchPayload", "namespace": "prisma", "location": "outputObjectTypes", "isList": false } }, { - "name": "min", - "args": [], - "isRequired": false, - "isNullable": true, + "name": "createOnePatient", + "args": [ + { + "name": "data", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "PatientCreateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], + "isRequired": true, + "isNullable": false, "outputType": { - "type": "CategoryMinAggregateOutputType", - "namespace": "prisma", + "type": "Patient", + "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "max", - "args": [], + "name": "deleteOnePatient", + "args": [ + { + "name": "where", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "PatientWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": false, "isNullable": true, "outputType": { - "type": "CategoryMaxAggregateOutputType", - "namespace": "prisma", + "type": "Patient", + "namespace": "model", "location": "outputObjectTypes", "isList": false } - } - ] - }, - { - "name": "AggregatePatient", - "fields": [ - { - "name": "count", - "args": [], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "Int", - "location": "scalar", - "isList": false - } - } - ] - }, - { - "name": "AggregateMovie", - "fields": [ + }, { - "name": "count", - "args": [], - "isRequired": true, - "isNullable": false, + "name": "updateOnePatient", + "args": [ + { + "name": "data", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "PatientUpdateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "where", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "PatientWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Int", - "location": "scalar", + "type": "Patient", + "namespace": "model", + "location": "outputObjectTypes", "isList": false } - } - ] - }, - { - "name": "AggregateDirector", - "fields": [ + }, { - "name": "count", - "args": [], + "name": "upsertOnePatient", + "args": [ + { + "name": "where", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "PatientWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "create", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "PatientCreateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "update", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "PatientUpdateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": true, "isNullable": false, "outputType": { - "type": "Int", - "location": "scalar", + "type": "Patient", + "namespace": "model", + "location": "outputObjectTypes", "isList": false } - } - ] - }, - { - "name": "AggregateProblem", - "fields": [ + }, { - "name": "count", - "args": [], + "name": "updateManyPatient", + "args": [ + { + "name": "data", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "PatientUpdateManyMutationInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "where", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "PatientWhereInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": true, "isNullable": false, "outputType": { - "type": "Int", - "location": "scalar", + "type": "BatchPayload", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } }, { - "name": "avg", - "args": [], - "isRequired": false, - "isNullable": true, + "name": "deleteManyPatient", + "args": [ + { + "name": "where", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "PatientWhereInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], + "isRequired": true, + "isNullable": false, "outputType": { - "type": "ProblemAvgAggregateOutputType", + "type": "BatchPayload", "namespace": "prisma", "location": "outputObjectTypes", "isList": false } }, { - "name": "sum", - "args": [], - "isRequired": false, - "isNullable": true, + "name": "createOneMovie", + "args": [ + { + "name": "data", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "MovieCreateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], + "isRequired": true, + "isNullable": false, "outputType": { - "type": "ProblemSumAggregateOutputType", - "namespace": "prisma", + "type": "Movie", + "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "min", - "args": [], + "name": "deleteOneMovie", + "args": [ + { + "name": "where", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "MovieWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": false, "isNullable": true, "outputType": { - "type": "ProblemMinAggregateOutputType", - "namespace": "prisma", + "type": "Movie", + "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "max", - "args": [], + "name": "updateOneMovie", + "args": [ + { + "name": "data", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "MovieUpdateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "where", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "MovieWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": false, "isNullable": true, "outputType": { - "type": "ProblemMaxAggregateOutputType", - "namespace": "prisma", + "type": "Movie", + "namespace": "model", "location": "outputObjectTypes", "isList": false } - } - ] - }, - { - "name": "AggregateCreator", - "fields": [ + }, { - "name": "count", - "args": [], + "name": "upsertOneMovie", + "args": [ + { + "name": "where", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "MovieWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "create", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "MovieCreateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "update", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "MovieUpdateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": true, "isNullable": false, "outputType": { - "type": "Int", - "location": "scalar", + "type": "Movie", + "namespace": "model", + "location": "outputObjectTypes", "isList": false } }, { - "name": "avg", - "args": [], - "isRequired": false, - "isNullable": true, + "name": "updateManyMovie", + "args": [ + { + "name": "data", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "MovieUpdateManyMutationInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "where", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "MovieWhereInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], + "isRequired": true, + "isNullable": false, "outputType": { - "type": "CreatorAvgAggregateOutputType", + "type": "BatchPayload", "namespace": "prisma", "location": "outputObjectTypes", "isList": false } }, { - "name": "sum", - "args": [], - "isRequired": false, - "isNullable": true, + "name": "deleteManyMovie", + "args": [ + { + "name": "where", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "MovieWhereInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], + "isRequired": true, + "isNullable": false, "outputType": { - "type": "CreatorSumAggregateOutputType", + "type": "BatchPayload", "namespace": "prisma", "location": "outputObjectTypes", "isList": false } }, { - "name": "min", - "args": [], - "isRequired": false, - "isNullable": true, + "name": "createOneDirector", + "args": [ + { + "name": "data", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "DirectorCreateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], + "isRequired": true, + "isNullable": false, "outputType": { - "type": "CreatorMinAggregateOutputType", - "namespace": "prisma", + "type": "Director", + "namespace": "model", "location": "outputObjectTypes", "isList": false } }, { - "name": "max", - "args": [], + "name": "deleteOneDirector", + "args": [ + { + "name": "where", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "DirectorWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": false, "isNullable": true, "outputType": { - "type": "CreatorMaxAggregateOutputType", - "namespace": "prisma", + "type": "Director", + "namespace": "model", "location": "outputObjectTypes", "isList": false } - } - ] - }, - { - "name": "BatchPayload", - "fields": [ - { - "name": "count", - "args": [], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "Int", - "location": "scalar", - "isList": false - } - } - ] - }, - { - "name": "UserAvgAggregateOutputType", - "fields": [ - { - "name": "id", - "args": [], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "Float", - "location": "scalar", - "isList": false - } - }, - { - "name": "age", - "args": [], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "Float", - "location": "scalar", - "isList": false - } }, { - "name": "balance", - "args": [], - "isRequired": true, - "isNullable": false, + "name": "updateOneDirector", + "args": [ + { + "name": "data", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "DirectorUpdateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "where", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "DirectorWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Float", - "location": "scalar", + "type": "Director", + "namespace": "model", + "location": "outputObjectTypes", "isList": false } }, { - "name": "amount", - "args": [], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "Float", - "location": "scalar", - "isList": false - } - } - ] - }, - { - "name": "UserSumAggregateOutputType", - "fields": [ - { - "name": "id", - "args": [], + "name": "upsertOneDirector", + "args": [ + { + "name": "where", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "DirectorWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "create", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "DirectorCreateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "update", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "DirectorUpdateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": true, "isNullable": false, "outputType": { - "type": "Int", - "location": "scalar", + "type": "Director", + "namespace": "model", + "location": "outputObjectTypes", "isList": false } }, { - "name": "age", - "args": [], + "name": "updateManyDirector", + "args": [ + { + "name": "data", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "DirectorUpdateManyMutationInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "where", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "DirectorWhereInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": true, "isNullable": false, "outputType": { - "type": "Int", - "location": "scalar", + "type": "BatchPayload", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } }, { - "name": "balance", - "args": [], + "name": "deleteManyDirector", + "args": [ + { + "name": "where", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "DirectorWhereInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": true, "isNullable": false, "outputType": { - "type": "Float", - "location": "scalar", + "type": "BatchPayload", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } }, { - "name": "amount", - "args": [], - "isRequired": true, - "isNullable": false, - "outputType": { - "type": "Float", - "location": "scalar", - "isList": false - } - } - ] - }, - { - "name": "UserMinAggregateOutputType", - "fields": [ - { - "name": "id", - "args": [], + "name": "createOneProblem", + "args": [ + { + "name": "data", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "ProblemCreateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": true, "isNullable": false, "outputType": { - "type": "Int", - "location": "scalar", + "type": "Problem", + "namespace": "model", + "location": "outputObjectTypes", "isList": false } }, { - "name": "age", - "args": [], - "isRequired": true, - "isNullable": false, + "name": "deleteOneProblem", + "args": [ + { + "name": "where", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "ProblemWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Int", - "location": "scalar", + "type": "Problem", + "namespace": "model", + "location": "outputObjectTypes", "isList": false } }, { - "name": "balance", - "args": [], - "isRequired": true, - "isNullable": false, + "name": "updateOneProblem", + "args": [ + { + "name": "data", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "ProblemUpdateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "where", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "ProblemWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Float", - "location": "scalar", + "type": "Problem", + "namespace": "model", + "location": "outputObjectTypes", "isList": false } }, { - "name": "amount", - "args": [], + "name": "upsertOneProblem", + "args": [ + { + "name": "where", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "ProblemWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "create", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "ProblemCreateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "update", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "ProblemUpdateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": true, "isNullable": false, "outputType": { - "type": "Float", - "location": "scalar", + "type": "Problem", + "namespace": "model", + "location": "outputObjectTypes", "isList": false } - } - ] - }, - { - "name": "UserMaxAggregateOutputType", - "fields": [ + }, { - "name": "id", - "args": [], + "name": "updateManyProblem", + "args": [ + { + "name": "data", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "ProblemUpdateManyMutationInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "where", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "ProblemWhereInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": true, "isNullable": false, "outputType": { - "type": "Int", - "location": "scalar", + "type": "BatchPayload", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } }, { - "name": "age", - "args": [], + "name": "deleteManyProblem", + "args": [ + { + "name": "where", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "ProblemWhereInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": true, "isNullable": false, "outputType": { - "type": "Int", - "location": "scalar", + "type": "BatchPayload", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } }, { - "name": "balance", - "args": [], + "name": "createOneCreator", + "args": [ + { + "name": "data", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "CreatorCreateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": true, "isNullable": false, "outputType": { - "type": "Float", - "location": "scalar", + "type": "Creator", + "namespace": "model", + "location": "outputObjectTypes", "isList": false } }, { - "name": "amount", - "args": [], - "isRequired": true, - "isNullable": false, + "name": "deleteOneCreator", + "args": [ + { + "name": "where", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "CreatorWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Float", - "location": "scalar", + "type": "Creator", + "namespace": "model", + "location": "outputObjectTypes", "isList": false } - } - ] - }, - { - "name": "PostAvgAggregateOutputType", - "fields": [ + }, { - "name": "authorId", - "args": [], - "isRequired": true, - "isNullable": false, + "name": "updateOneCreator", + "args": [ + { + "name": "data", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "CreatorUpdateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "where", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "CreatorWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Float", - "location": "scalar", + "type": "Creator", + "namespace": "model", + "location": "outputObjectTypes", "isList": false } }, { - "name": "editorId", - "args": [], - "isRequired": false, - "isNullable": true, + "name": "upsertOneCreator", + "args": [ + { + "name": "where", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "CreatorWhereUniqueInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "create", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "CreatorCreateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "update", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "CreatorUpdateInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], + "isRequired": true, + "isNullable": false, "outputType": { - "type": "Float", - "location": "scalar", + "type": "Creator", + "namespace": "model", + "location": "outputObjectTypes", "isList": false } - } - ] - }, - { - "name": "PostSumAggregateOutputType", - "fields": [ + }, { - "name": "authorId", - "args": [], + "name": "updateManyCreator", + "args": [ + { + "name": "data", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "CreatorUpdateManyMutationInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + }, + { + "name": "where", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "CreatorWhereInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], "isRequired": true, "isNullable": false, "outputType": { - "type": "Int", - "location": "scalar", + "type": "BatchPayload", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } }, { - "name": "editorId", - "args": [], - "isRequired": false, - "isNullable": true, + "name": "deleteManyCreator", + "args": [ + { + "name": "where", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "CreatorWhereInput", + "namespace": "prisma", + "location": "inputObjectTypes", + "isList": false + } + ] + } + ], + "isRequired": true, + "isNullable": false, "outputType": { - "type": "Int", - "location": "scalar", + "type": "BatchPayload", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } - } - ] - }, - { - "name": "PostMinAggregateOutputType", - "fields": [ + }, { - "name": "authorId", - "args": [], + "name": "executeRaw", + "args": [ + { + "name": "query", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "String", + "location": "scalar", + "isList": false + } + ] + }, + { + "name": "parameters", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "Json", + "location": "scalar", + "isList": false + } + ] + } + ], "isRequired": true, "isNullable": false, "outputType": { - "type": "Int", + "type": "Json", "location": "scalar", "isList": false } }, { - "name": "editorId", - "args": [], - "isRequired": false, - "isNullable": true, + "name": "queryRaw", + "args": [ + { + "name": "query", + "isRequired": true, + "isNullable": false, + "inputTypes": [ + { + "type": "String", + "location": "scalar", + "isList": false + } + ] + }, + { + "name": "parameters", + "isRequired": false, + "isNullable": false, + "inputTypes": [ + { + "type": "Json", + "location": "scalar", + "isList": false + } + ] + } + ], + "isRequired": true, + "isNullable": false, "outputType": { - "type": "Int", + "type": "Json", "location": "scalar", "isList": false } @@ -17693,10 +18068,10 @@ ] }, { - "name": "PostMaxAggregateOutputType", + "name": "AggregateUser", "fields": [ { - "name": "authorId", + "name": "count", "args": [], "isRequired": true, "isNullable": false, @@ -17707,71 +18082,60 @@ } }, { - "name": "editorId", + "name": "avg", "args": [], "isRequired": false, "isNullable": true, "outputType": { - "type": "Int", - "location": "scalar", + "type": "UserAvgAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } - } - ] - }, - { - "name": "CategoryAvgAggregateOutputType", - "fields": [ + }, { - "name": "number", + "name": "sum", "args": [], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Float", - "location": "scalar", + "type": "UserSumAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } - } - ] - }, - { - "name": "CategorySumAggregateOutputType", - "fields": [ + }, { - "name": "number", + "name": "min", "args": [], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Int", - "location": "scalar", + "type": "UserMinAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } - } - ] - }, - { - "name": "CategoryMinAggregateOutputType", - "fields": [ + }, { - "name": "number", + "name": "max", "args": [], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Int", - "location": "scalar", + "type": "UserMaxAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } } ] }, { - "name": "CategoryMaxAggregateOutputType", + "name": "AggregatePost", "fields": [ { - "name": "number", + "name": "count", "args": [], "isRequired": true, "isNullable": false, @@ -17780,68 +18144,62 @@ "location": "scalar", "isList": false } - } - ] - }, - { - "name": "ProblemAvgAggregateOutputType", - "fields": [ + }, { - "name": "id", + "name": "avg", "args": [], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Float", - "location": "scalar", + "type": "PostAvgAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } }, { - "name": "creatorId", + "name": "sum", "args": [], "isRequired": false, "isNullable": true, "outputType": { - "type": "Float", - "location": "scalar", + "type": "PostSumAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } - } - ] - }, - { - "name": "ProblemSumAggregateOutputType", - "fields": [ + }, { - "name": "id", + "name": "min", "args": [], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Int", - "location": "scalar", + "type": "PostMinAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } }, { - "name": "creatorId", + "name": "max", "args": [], "isRequired": false, "isNullable": true, "outputType": { - "type": "Int", - "location": "scalar", + "type": "PostMaxAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } } ] }, { - "name": "ProblemMinAggregateOutputType", + "name": "AggregateCategory", "fields": [ { - "name": "id", + "name": "count", "args": [], "isRequired": true, "isNullable": false, @@ -17852,66 +18210,60 @@ } }, { - "name": "creatorId", + "name": "avg", "args": [], "isRequired": false, "isNullable": true, "outputType": { - "type": "Int", - "location": "scalar", + "type": "CategoryAvgAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } - } - ] - }, - { - "name": "ProblemMaxAggregateOutputType", - "fields": [ + }, { - "name": "id", + "name": "sum", "args": [], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Int", - "location": "scalar", + "type": "CategorySumAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } }, { - "name": "creatorId", + "name": "min", "args": [], "isRequired": false, "isNullable": true, "outputType": { - "type": "Int", - "location": "scalar", + "type": "CategoryMinAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } - } - ] - }, - { - "name": "CreatorAvgAggregateOutputType", - "fields": [ + }, { - "name": "id", + "name": "max", "args": [], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Float", - "location": "scalar", + "type": "CategoryMaxAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } } ] }, { - "name": "CreatorSumAggregateOutputType", + "name": "AggregatePatient", "fields": [ { - "name": "id", + "name": "count", "args": [], "isRequired": true, "isNullable": false, @@ -17924,10 +18276,10 @@ ] }, { - "name": "CreatorMinAggregateOutputType", + "name": "AggregateMovie", "fields": [ { - "name": "id", + "name": "count", "args": [], "isRequired": true, "isNullable": false, @@ -17940,10 +18292,10 @@ ] }, { - "name": "CreatorMaxAggregateOutputType", + "name": "AggregateDirector", "fields": [ { - "name": "id", + "name": "count", "args": [], "isRequired": true, "isNullable": false, @@ -17954,14 +18306,12 @@ } } ] - } - ], - "model": [ + }, { - "name": "User", + "name": "AggregateProblem", "fields": [ { - "name": "id", + "name": "count", "args": [], "isRequired": true, "isNullable": false, @@ -17972,384 +18322,252 @@ } }, { - "name": "email", + "name": "avg", "args": [], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "String", - "location": "scalar", + "type": "ProblemAvgAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } }, { - "name": "name", + "name": "sum", "args": [], "isRequired": false, "isNullable": true, "outputType": { - "type": "String", - "location": "scalar", + "type": "ProblemSumAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } }, { - "name": "age", + "name": "min", "args": [], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Int", - "location": "scalar", + "type": "ProblemMinAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } }, { - "name": "balance", + "name": "max", "args": [], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Float", - "location": "scalar", + "type": "ProblemMaxAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } - }, + } + ] + }, + { + "name": "AggregateCreator", + "fields": [ { - "name": "amount", + "name": "count", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "Float", + "type": "Int", "location": "scalar", "isList": false } }, { - "name": "posts", - "args": [ - { - "name": "where", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "postWhereInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "orderBy", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "postOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": true - }, - { - "type": "postOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "cursor", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "postWhereUniqueInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "take", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "skip", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "distinct", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "PostDistinctFieldEnum", - "namespace": "prisma", - "location": "enumTypes", - "isList": true - } - ] - } - ], + "name": "avg", + "args": [], "isRequired": false, "isNullable": true, "outputType": { - "type": "post", - "namespace": "model", + "type": "CreatorAvgAggregateOutputType", + "namespace": "prisma", "location": "outputObjectTypes", - "isList": true + "isList": false } }, { - "name": "role", + "name": "sum", "args": [], - "isRequired": true, - "isNullable": false, + "isRequired": false, + "isNullable": true, "outputType": { - "type": "Role", - "namespace": "model", - "location": "enumTypes", + "type": "CreatorSumAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", "isList": false } }, { - "name": "editorPosts", - "args": [ - { - "name": "where", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "postWhereInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "orderBy", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "postOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": true - }, - { - "type": "postOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "cursor", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "postWhereUniqueInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "take", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "skip", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "distinct", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "PostDistinctFieldEnum", - "namespace": "prisma", - "location": "enumTypes", - "isList": true - } - ] - } - ], + "name": "min", + "args": [], + "isRequired": false, + "isNullable": true, + "outputType": { + "type": "CreatorMinAggregateOutputType", + "namespace": "prisma", + "location": "outputObjectTypes", + "isList": false + } + }, + { + "name": "max", + "args": [], "isRequired": false, "isNullable": true, "outputType": { - "type": "post", - "namespace": "model", + "type": "CreatorMaxAggregateOutputType", + "namespace": "prisma", "location": "outputObjectTypes", - "isList": true + "isList": false } } ] }, { - "name": "post", + "name": "BatchPayload", "fields": [ { - "name": "uuid", + "name": "count", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "String", + "type": "Int", "location": "scalar", "isList": false } - }, + } + ] + }, + { + "name": "UserAvgAggregateOutputType", + "fields": [ { - "name": "createdAt", + "name": "id", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "DateTime", + "type": "Float", "location": "scalar", "isList": false } }, { - "name": "updatedAt", + "name": "age", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "DateTime", + "type": "Float", "location": "scalar", "isList": false } }, { - "name": "published", + "name": "balance", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "Boolean", + "type": "Float", "location": "scalar", "isList": false } }, { - "name": "title", + "name": "amount", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "String", + "type": "Float", "location": "scalar", "isList": false } - }, + } + ] + }, + { + "name": "UserSumAggregateOutputType", + "fields": [ { - "name": "subtitle", + "name": "id", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "String", + "type": "Int", "location": "scalar", "isList": false } }, { - "name": "content", + "name": "age", "args": [], - "isRequired": false, - "isNullable": true, + "isRequired": true, + "isNullable": false, "outputType": { - "type": "String", + "type": "Int", "location": "scalar", "isList": false } }, { - "name": "author", + "name": "balance", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "User", - "namespace": "model", - "location": "outputObjectTypes", + "type": "Float", + "location": "scalar", "isList": false } }, { - "name": "authorId", + "name": "amount", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "Int", + "type": "Float", "location": "scalar", "isList": false } - }, + } + ] + }, + { + "name": "UserMinAggregateOutputType", + "fields": [ { - "name": "editor", + "name": "id", "args": [], - "isRequired": false, - "isNullable": true, + "isRequired": true, + "isNullable": false, "outputType": { - "type": "User", - "namespace": "model", - "location": "outputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } }, { - "name": "editorId", + "name": "age", "args": [], - "isRequired": false, - "isNullable": true, + "isRequired": true, + "isNullable": false, "outputType": { "type": "Int", "location": "scalar", @@ -18357,24 +18575,23 @@ } }, { - "name": "kind", + "name": "balance", "args": [], - "isRequired": false, - "isNullable": true, + "isRequired": true, + "isNullable": false, "outputType": { - "type": "PostKind", - "namespace": "model", - "location": "enumTypes", + "type": "Float", + "location": "scalar", "isList": false } }, { - "name": "metadata", + "name": "amount", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "Json", + "type": "Float", "location": "scalar", "isList": false } @@ -18382,37 +18599,48 @@ ] }, { - "name": "Category", + "name": "UserMaxAggregateOutputType", "fields": [ { - "name": "name", + "name": "id", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "String", + "type": "Int", "location": "scalar", "isList": false } }, { - "name": "slug", + "name": "age", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "String", + "type": "Int", "location": "scalar", "isList": false } }, { - "name": "number", + "name": "balance", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "Int", + "type": "Float", + "location": "scalar", + "isList": false + } + }, + { + "name": "amount", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "Float", "location": "scalar", "isList": false } @@ -18420,37 +18648,80 @@ ] }, { - "name": "Patient", + "name": "PostAvgAggregateOutputType", "fields": [ { - "name": "firstName", + "name": "authorId", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "String", + "type": "Float", "location": "scalar", "isList": false } }, { - "name": "lastName", + "name": "editorId", + "args": [], + "isRequired": false, + "isNullable": true, + "outputType": { + "type": "Float", + "location": "scalar", + "isList": false + } + } + ] + }, + { + "name": "PostSumAggregateOutputType", + "fields": [ + { + "name": "authorId", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "String", + "type": "Int", "location": "scalar", "isList": false } }, { - "name": "email", + "name": "editorId", + "args": [], + "isRequired": false, + "isNullable": true, + "outputType": { + "type": "Int", + "location": "scalar", + "isList": false + } + } + ] + }, + { + "name": "PostMinAggregateOutputType", + "fields": [ + { + "name": "authorId", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "String", + "type": "Int", + "location": "scalar", + "isList": false + } + }, + { + "name": "editorId", + "args": [], + "isRequired": false, + "isNullable": true, + "outputType": { + "type": "Int", "location": "scalar", "isList": false } @@ -18458,49 +18729,90 @@ ] }, { - "name": "Movie", + "name": "PostMaxAggregateOutputType", "fields": [ { - "name": "directorFirstName", + "name": "authorId", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "String", + "type": "Int", "location": "scalar", "isList": false } }, { - "name": "directorLastName", + "name": "editorId", + "args": [], + "isRequired": false, + "isNullable": true, + "outputType": { + "type": "Int", + "location": "scalar", + "isList": false + } + } + ] + }, + { + "name": "CategoryAvgAggregateOutputType", + "fields": [ + { + "name": "number", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "String", + "type": "Float", "location": "scalar", "isList": false } - }, + } + ] + }, + { + "name": "CategorySumAggregateOutputType", + "fields": [ { - "name": "director", + "name": "number", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "Director", - "namespace": "model", - "location": "outputObjectTypes", + "type": "Int", + "location": "scalar", "isList": false } - }, + } + ] + }, + { + "name": "CategoryMinAggregateOutputType", + "fields": [ + { + "name": "number", + "args": [], + "isRequired": true, + "isNullable": false, + "outputType": { + "type": "Int", + "location": "scalar", + "isList": false + } + } + ] + }, + { + "name": "CategoryMaxAggregateOutputType", + "fields": [ { - "name": "title", + "name": "number", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "String", + "type": "Int", "location": "scalar", "isList": false } @@ -18508,129 +18820,61 @@ ] }, { - "name": "Director", + "name": "ProblemAvgAggregateOutputType", "fields": [ { - "name": "firstName", + "name": "id", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "String", + "type": "Float", "location": "scalar", "isList": false } }, { - "name": "lastName", + "name": "creatorId", + "args": [], + "isRequired": false, + "isNullable": true, + "outputType": { + "type": "Float", + "location": "scalar", + "isList": false + } + } + ] + }, + { + "name": "ProblemSumAggregateOutputType", + "fields": [ + { + "name": "id", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "String", + "type": "Int", "location": "scalar", "isList": false } }, { - "name": "movies", - "args": [ - { - "name": "where", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "MovieWhereInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "orderBy", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "MovieOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": true - }, - { - "type": "MovieOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "cursor", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "MovieWhereUniqueInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "take", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "skip", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "distinct", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "MovieDistinctFieldEnum", - "namespace": "prisma", - "location": "enumTypes", - "isList": true - } - ] - } - ], + "name": "creatorId", + "args": [], "isRequired": false, "isNullable": true, "outputType": { - "type": "Movie", - "namespace": "model", - "location": "outputObjectTypes", - "isList": true + "type": "Int", + "location": "scalar", + "isList": false } } ] }, { - "name": "Problem", + "name": "ProblemMinAggregateOutputType", "fields": [ { "name": "id", @@ -18644,128 +18888,69 @@ } }, { - "name": "problemText", + "name": "creatorId", + "args": [], + "isRequired": false, + "isNullable": true, + "outputType": { + "type": "Int", + "location": "scalar", + "isList": false + } + } + ] + }, + { + "name": "ProblemMaxAggregateOutputType", + "fields": [ + { + "name": "id", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "String", + "type": "Int", "location": "scalar", "isList": false } }, { - "name": "likedBy", - "args": [ - { - "name": "where", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "CreatorWhereInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "orderBy", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "CreatorOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": true - }, - { - "type": "CreatorOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "cursor", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "CreatorWhereUniqueInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "take", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "skip", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "distinct", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "CreatorDistinctFieldEnum", - "namespace": "prisma", - "location": "enumTypes", - "isList": true - } - ] - } - ], + "name": "creatorId", + "args": [], "isRequired": false, "isNullable": true, "outputType": { - "type": "Creator", - "namespace": "model", - "location": "outputObjectTypes", - "isList": true + "type": "Int", + "location": "scalar", + "isList": false } - }, + } + ] + }, + { + "name": "CreatorAvgAggregateOutputType", + "fields": [ { - "name": "creator", - "args": [], - "isRequired": false, - "isNullable": true, + "name": "id", + "args": [], + "isRequired": true, + "isNullable": false, "outputType": { - "type": "Creator", - "namespace": "model", - "location": "outputObjectTypes", + "type": "Float", + "location": "scalar", "isList": false } - }, + } + ] + }, + { + "name": "CreatorSumAggregateOutputType", + "fields": [ { - "name": "creatorId", + "name": "id", "args": [], - "isRequired": false, - "isNullable": true, + "isRequired": true, + "isNullable": false, "outputType": { "type": "Int", "location": "scalar", @@ -18775,7 +18960,7 @@ ] }, { - "name": "Creator", + "name": "CreatorMinAggregateOutputType", "fields": [ { "name": "id", @@ -18787,229 +18972,28 @@ "location": "scalar", "isList": false } - }, + } + ] + }, + { + "name": "CreatorMaxAggregateOutputType", + "fields": [ { - "name": "name", + "name": "id", "args": [], "isRequired": true, "isNullable": false, "outputType": { - "type": "String", + "type": "Int", "location": "scalar", "isList": false } - }, - { - "name": "likes", - "args": [ - { - "name": "where", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "ProblemWhereInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "orderBy", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "ProblemOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": true - }, - { - "type": "ProblemOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "cursor", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "ProblemWhereUniqueInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "take", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "skip", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "distinct", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "ProblemDistinctFieldEnum", - "namespace": "prisma", - "location": "enumTypes", - "isList": true - } - ] - } - ], - "isRequired": false, - "isNullable": true, - "outputType": { - "type": "Problem", - "namespace": "model", - "location": "outputObjectTypes", - "isList": true - } - }, - { - "name": "problems", - "args": [ - { - "name": "where", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "ProblemWhereInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "orderBy", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "ProblemOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": true - }, - { - "type": "ProblemOrderByInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "cursor", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "ProblemWhereUniqueInput", - "namespace": "prisma", - "location": "inputObjectTypes", - "isList": false - } - ] - }, - { - "name": "take", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "skip", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "Int", - "location": "scalar", - "isList": false - } - ] - }, - { - "name": "distinct", - "isRequired": false, - "isNullable": false, - "inputTypes": [ - { - "type": "ProblemDistinctFieldEnum", - "namespace": "prisma", - "location": "enumTypes", - "isList": true - } - ] - } - ], - "isRequired": false, - "isNullable": true, - "outputType": { - "type": "Problem", - "namespace": "model", - "location": "outputObjectTypes", - "isList": true - } } ] } ] }, "enumTypes": { - "model": [ - { - "name": "Role", - "values": [ - "USER", - "ADMIN" - ] - }, - { - "name": "PostKind", - "values": [ - "BLOG", - "ADVERT" - ] - } - ], "prisma": [ { "name": "UserDistinctFieldEnum", @@ -19099,6 +19083,22 @@ "insensitive" ] } + ], + "model": [ + { + "name": "Role", + "values": [ + "USER", + "ADMIN" + ] + }, + { + "name": "PostKind", + "values": [ + "BLOG", + "ADVERT" + ] + } ] } }, diff --git a/package-lock.json b/package-lock.json index cb60cefa..2213b341 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8,23 +8,23 @@ "version": "0.8.5", "license": "MIT", "dependencies": { - "@prisma/generator-helper": "2.12.0-dev.38", - "@prisma/sdk": "2.12.0-dev.38", + "@prisma/generator-helper": "2.12.1", + "@prisma/sdk": "2.12.1", "pluralize": "^8.0.0", "semver": "^7.3.2", - "ts-morph": "^8.2.0", + "ts-morph": "^9.0.0", "tslib": "^2.0.3" }, "bin": { "typegraphql-prisma": "lib/generator.js" }, "devDependencies": { - "@prisma/cli": "^2.12.0-dev.38", - "@prisma/client": "2.12.0-dev.38", + "@prisma/cli": "^2.12.1", + "@prisma/client": "2.12.1", "@types/graphql-fields": "^1.3.3", "@types/graphql-type-json": "^0.3.2", "@types/jest": "^26.0.15", - "@types/node": "^14.14.8", + "@types/node": "^14.14.10", "@types/pg": "^7.14.7", "@types/pluralize": "0.0.29", "@types/semver": "^7.3.4", @@ -35,21 +35,21 @@ "graphql-type-json": "^0.3.2", "husky": "^4.3.0", "jest": "^26.6.3", - "lint-staged": "^10.5.1", + "lint-staged": "^10.5.2", "pg": "^8.5.1", - "prettier": "^2.1.2", + "prettier": "^2.2.0", "reflect-metadata": "^0.1.13", "ts-jest": "~26.4.4", "ts-node": "^9.0.0", "type-graphql": "^1.1.1", - "typescript": "~4.0.5" + "typescript": "~4.1.2" }, "engines": { "node": ">=12.4" }, "peerDependencies": { - "@prisma/cli": "~2.12.0-dev.38", - "@prisma/client": "~2.12.0-dev.38", + "@prisma/cli": "~2.12.1", + "@prisma/client": "~2.12.1", "@types/graphql-fields": "^1.3.3", "@types/node": "*", "graphql-fields": "^2.0.3", @@ -540,6 +540,9 @@ "dependencies": { "is-absolute": "^1.0.0", "is-negated-glob": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, "node_modules/@istanbuljs/load-nyc-config": { @@ -802,12 +805,18 @@ "dependencies": { "@nodelib/fs.stat": "2.0.3", "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" } }, "node_modules/@nodelib/fs.stat": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz", - "integrity": "sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==" + "integrity": "sha512-bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==", + "engines": { + "node": ">= 8" + } }, "node_modules/@nodelib/fs.walk": { "version": "1.2.4", @@ -816,6 +825,9 @@ "dependencies": { "@nodelib/fs.scandir": "2.1.3", "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" } }, "node_modules/@prisma/bar": { @@ -825,32 +837,31 @@ "dev": true }, "node_modules/@prisma/cli": { - "version": "2.12.0-integration-nextjs-output.1", - "resolved": "https://registry.npmjs.org/@prisma/cli/-/cli-2.12.0-integration-nextjs-output.1.tgz", - "integrity": "sha512-svPYzRqtLKfzScnN9EkGEZguH0u+oMwX3j4CaoqJmQzTRnytCY7vkbfJ6lMeH9jBj+w6r8B4zWxiUQBPfoyQ2w==", + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/@prisma/cli/-/cli-2.12.1.tgz", + "integrity": "sha512-obkwK95dEeifCdVehG0rS0BlPQGLsOtc9U1MgbrjNX3MnhXQdwROnvymfPB3DBlNyoLoHGklPgi9UlwBokNXcQ==", "dev": true, "hasInstallScript": true, - "license": "Apache-2.0", "dependencies": { "@prisma/bar": "^0.0.1", - "@prisma/engines": "2.12.0-10.a4ef806349a7b17c41f45735ce4a36322e01c250" + "@prisma/engines": "2.12.0-18.cf0680a1bfe8d5e743dc659cc7f08009f9587d58" }, "bin": { "prisma": "build/index.js", "prisma2": "build/index.js" }, "engines": { - "node": ">=10" + "node": ">=10.4" } }, "node_modules/@prisma/client": { - "version": "2.12.0-dev.38", - "resolved": "https://registry.npmjs.org/@prisma/client/-/client-2.12.0-dev.38.tgz", - "integrity": "sha512-lXASoc1ffP0wtiAxVjltdNn3CiQ535ZrUOYTqbmbLHX8gKVlPv07a+lOtx+vHWrHOKd/12UFxE/5J9Ygo/SZtg==", + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/@prisma/client/-/client-2.12.1.tgz", + "integrity": "sha512-HP4/E9sRdxw/FB7XP4EeRa5ri8Lp1U/L7G4VAA95aM8C+8ARioQHMNDpEjC83NrOrOr4EcaZV5pXDDQL1H+F0g==", "dev": true, "hasInstallScript": true, "dependencies": { - "@prisma/engines-version": "2.12.0-10.a4ef806349a7b17c41f45735ce4a36322e01c250" + "@prisma/engines-version": "2.12.0-18.cf0680a1bfe8d5e743dc659cc7f08009f9587d58" }, "engines": { "node": ">=10.4" @@ -865,22 +876,22 @@ } }, "node_modules/@prisma/debug": { - "version": "2.12.0-dev.38", - "resolved": "https://registry.npmjs.org/@prisma/debug/-/debug-2.12.0-dev.38.tgz", - "integrity": "sha512-M/TRjqfP1FnoVelXRVsjkbgyxqJ4PBVZx22fFcLhC7w3SOJo5Dow50423TtSuPh80K0pQaoSAZCMNQT56I5TTA==", + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/@prisma/debug/-/debug-2.12.1.tgz", + "integrity": "sha512-ke4ZOvWZffATjG7Z2Ksxhig6RU7El1YXZOquds3847Rq1/kTq0mp3NFPZuxnv1xq8XDpuKe5Op4tYnzsKibWyw==", "dependencies": { "debug": "^4.1.1" } }, "node_modules/@prisma/engine-core": { - "version": "2.12.0-dev.38", - "resolved": "https://registry.npmjs.org/@prisma/engine-core/-/engine-core-2.12.0-dev.38.tgz", - "integrity": "sha512-LVbGfTdt1vTXHWfqq2Xqqu7aPuXrNHW8pO5ZCfJX2bRSEVRQn25f8sz8bZ5KQAFCQjRfxnncatUShpIrn/Bz4g==", - "dependencies": { - "@prisma/debug": "2.12.0-dev.38", - "@prisma/engines": "2.12.0-10.a4ef806349a7b17c41f45735ce4a36322e01c250", - "@prisma/generator-helper": "2.12.0-dev.38", - "@prisma/get-platform": "2.12.0-dev.38", + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/@prisma/engine-core/-/engine-core-2.12.1.tgz", + "integrity": "sha512-7zl9X7rn5HQ7s3oR5T2kAP4nuIrIEFA1l8TkEas2XAnItlP9yTjy5q/CsHhP3Z4MW8XQseZSL6pHHD5g2YZ5CQ==", + "dependencies": { + "@prisma/debug": "2.12.1", + "@prisma/engines": "2.12.0-18.cf0680a1bfe8d5e743dc659cc7f08009f9587d58", + "@prisma/generator-helper": "2.12.1", + "@prisma/get-platform": "2.12.1", "chalk": "^4.0.0", "cross-fetch": "^3.0.4", "execa": "^4.0.2", @@ -893,24 +904,24 @@ } }, "node_modules/@prisma/engines": { - "version": "2.12.0-10.a4ef806349a7b17c41f45735ce4a36322e01c250", - "resolved": "https://registry.npmjs.org/@prisma/engines/-/engines-2.12.0-10.a4ef806349a7b17c41f45735ce4a36322e01c250.tgz", - "integrity": "sha512-K7T2YjR5BHGrzx0snFU4PYCOz2MsZG39NI5sQukBNomrpUU6E9//Y9cAaOKFs4U96tmdy7D/fUmsFh20tVJoHQ==", + "version": "2.12.0-18.cf0680a1bfe8d5e743dc659cc7f08009f9587d58", + "resolved": "https://registry.npmjs.org/@prisma/engines/-/engines-2.12.0-18.cf0680a1bfe8d5e743dc659cc7f08009f9587d58.tgz", + "integrity": "sha512-F6RmUZ5JpPWxmGvVDji8c4gepHIGkvYbtuFi0IoDDJVaCVo8yS656stciKFyswI6/BLWXa0X47/MIMbz6nzw7g==", "hasInstallScript": true }, "node_modules/@prisma/engines-version": { - "version": "2.12.0-10.a4ef806349a7b17c41f45735ce4a36322e01c250", - "resolved": "https://registry.npmjs.org/@prisma/engines-version/-/engines-version-2.12.0-10.a4ef806349a7b17c41f45735ce4a36322e01c250.tgz", - "integrity": "sha512-8t42GcPEQpDJzz+KyaB/VrH3VkiBngn9JmN5LXCljlPyOddV7mU10pEL8JcIq08l97wgxMRwLHTem7gMzWb5hA==", + "version": "2.12.0-18.cf0680a1bfe8d5e743dc659cc7f08009f9587d58", + "resolved": "https://registry.npmjs.org/@prisma/engines-version/-/engines-version-2.12.0-18.cf0680a1bfe8d5e743dc659cc7f08009f9587d58.tgz", + "integrity": "sha512-IHb/Jag1Wmoq5tLZhOHP5zqLHEXqQEfrHb6l0drIBSvh2AF7yWQ3yyuD0ZEb1Nq37SvbBgop5wrWMOU8YWFTGQ==", "dev": true }, "node_modules/@prisma/fetch-engine": { - "version": "2.12.0-dev.38", - "resolved": "https://registry.npmjs.org/@prisma/fetch-engine/-/fetch-engine-2.12.0-dev.38.tgz", - "integrity": "sha512-WfGacvfZRbObzoHmgnCE2YCElB0dTd4/B92iHw4lTirj7UpDWa/cw9AFfmO1qbGNMyX2Pk7xGHaHOyXM5KHhCw==", + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/@prisma/fetch-engine/-/fetch-engine-2.12.1.tgz", + "integrity": "sha512-huJS0uvkSUsnEU6CUrUfpgU9Z7PR3UlzJ9wbypk4hWtiMhfuoq2yU0ca2NxEpAhgHpSlERiLsZjBA8SlWw9WpQ==", "dependencies": { - "@prisma/debug": "2.12.0-dev.38", - "@prisma/get-platform": "2.12.0-dev.38", + "@prisma/debug": "2.12.1", + "@prisma/get-platform": "2.12.1", "chalk": "^4.0.0", "execa": "^4.0.0", "find-cache-dir": "^3.3.1", @@ -930,35 +941,35 @@ } }, "node_modules/@prisma/generator-helper": { - "version": "2.12.0-dev.38", - "resolved": "https://registry.npmjs.org/@prisma/generator-helper/-/generator-helper-2.12.0-dev.38.tgz", - "integrity": "sha512-V34kD7BqtNuujHAgmb2hgHlWcBEkgkHq18F8Re7gtcUiYn0MwtqoB+ZUnMx5k+6Dv0TTR00jvYg1pbAVM0sUnA==", + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/@prisma/generator-helper/-/generator-helper-2.12.1.tgz", + "integrity": "sha512-sqZcT6Lnb1xaogy1LVu/gnqrth71V/5hbw5wCXZ/3qeoSNdSmpcBJvfwXzmQ9R50K+tHVA1lZKfGyRlgYnhGUQ==", "dependencies": { - "@prisma/debug": "2.12.0-dev.38", + "@prisma/debug": "2.12.1", "@types/cross-spawn": "^6.0.1", "chalk": "^4.0.0", "cross-spawn": "^7.0.2" } }, "node_modules/@prisma/get-platform": { - "version": "2.12.0-dev.38", - "resolved": "https://registry.npmjs.org/@prisma/get-platform/-/get-platform-2.12.0-dev.38.tgz", - "integrity": "sha512-wPDR0gJyYhuztF3jaPPXW8wMw6fMSDtoxY++f4mHcvXVksZHea9L3oypFN4AoUqarfSPYAYen2bTlenIKXIUaw==", + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/@prisma/get-platform/-/get-platform-2.12.1.tgz", + "integrity": "sha512-bYTKvTgdbYXtNEZnaAUOdr0twiYNrtadDCGAc1YBwSCQ+P0cNmkrtn+EUwt0ZijCtKYZ1uLC6UAM0y7uxf1s6w==", "dependencies": { - "@prisma/debug": "2.12.0-dev.38" + "@prisma/debug": "2.12.1" } }, "node_modules/@prisma/sdk": { - "version": "2.12.0-dev.38", - "resolved": "https://registry.npmjs.org/@prisma/sdk/-/sdk-2.12.0-dev.38.tgz", - "integrity": "sha512-Zbw9jJD6nJcStOCA7omQR+T9l9qs6yWbSUx8QsIBkLc6098jU1Mvr45F6fLuB68munadV939dQAWNgtYd0BMpA==", - "dependencies": { - "@prisma/debug": "2.12.0-dev.38", - "@prisma/engine-core": "2.12.0-dev.38", - "@prisma/engines": "2.12.0-10.a4ef806349a7b17c41f45735ce4a36322e01c250", - "@prisma/fetch-engine": "2.12.0-dev.38", - "@prisma/generator-helper": "2.12.0-dev.38", - "@prisma/get-platform": "2.12.0-dev.38", + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/@prisma/sdk/-/sdk-2.12.1.tgz", + "integrity": "sha512-1/BokOdZU11lyOSaLhnmXnfY4c6JVLGFXWVfohIiPgemqbjUPvhbk7DpZYDOeNBozlLHIlzXYbU7Kdmwy7nsJQ==", + "dependencies": { + "@prisma/debug": "2.12.1", + "@prisma/engine-core": "2.12.1", + "@prisma/engines": "2.12.0-18.cf0680a1bfe8d5e743dc659cc7f08009f9587d58", + "@prisma/fetch-engine": "2.12.1", + "@prisma/generator-helper": "2.12.1", + "@prisma/get-platform": "2.12.1", "@timsuchanek/copy": "^1.4.5", "archiver": "^4.0.0", "arg": "^5.0.0", @@ -1071,16 +1082,16 @@ } }, "node_modules/@ts-morph/common": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/@ts-morph/common/-/common-0.6.0.tgz", - "integrity": "sha512-pI35nZz5bs3tL3btSVX2cWkAE8rc80F+Fn4TwSC6bQvn7fgn9IyLXVcAfpG6X6NBY5wN9TkSWXn/QYUkBvR/Fw==", + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/@ts-morph/common/-/common-0.7.0.tgz", + "integrity": "sha512-1EJYuiAjfOxrxB0VRZR4KVvPr4S7ylQv9M0IvUiBVB1HTcXAgWfineqx8n/tNIu5OhNjPQ8w9Qd7JzHbcVa64g==", "dependencies": { "@dsherret/to-absolute-glob": "^2.0.2", "fast-glob": "^3.2.4", - "fs-extra": "^9.0.1", "is-negated-glob": "^1.0.0", - "multimatch": "^4.0.0", - "typescript": "~4.0.2" + "mkdirp": "^1.0.4", + "multimatch": "^5.0.0", + "typescript": "~4.1.2" } }, "node_modules/@types/babel__core": { @@ -1223,9 +1234,9 @@ "integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==" }, "node_modules/@types/node": { - "version": "14.14.8", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.8.tgz", - "integrity": "sha512-z/5Yd59dCKI5kbxauAJgw6dLPzW+TNOItNE00PkpzNwUIEwdj/Lsqwq94H5DdYBX7C13aRA0CY32BK76+neEUA==" + "version": "14.14.10", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.10.tgz", + "integrity": "sha512-J32dgx2hw8vXrSbu4ZlVhn1Nm3GbeCFNw2FWL8S5QKucHGY0cyNwjdQdO+KMBZ4wpmC7KhLCiNsdk1RFRIYUQQ==" }, "node_modules/@types/normalize-package-data": { "version": "2.4.0", @@ -1509,12 +1520,18 @@ "node_modules/array-differ": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-3.0.0.tgz", - "integrity": "sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==" + "integrity": "sha512-THtfYS6KtME/yIAhKjZ2ul7XI96lQGHRputJQHO80LAWQnuGP4iCIN8vdMRboGbIEYBwU33q8Tch1os2+X0kMg==", + "engines": { + "node": ">=8" + } }, "node_modules/array-union": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "engines": { + "node": ">=8" + } }, "node_modules/array-unique": { "version": "0.3.2", @@ -1528,7 +1545,10 @@ "node_modules/arrify": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", - "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==" + "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==", + "engines": { + "node": ">=8" + } }, "node_modules/asn1": { "version": "0.2.4", @@ -1573,11 +1593,6 @@ "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", "dev": true }, - "node_modules/at-least-node": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", - "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" - }, "node_modules/atob": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", @@ -2094,9 +2109,9 @@ } }, "node_modules/code-block-writer": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/code-block-writer/-/code-block-writer-10.1.0.tgz", - "integrity": "sha512-RG9hpXtWFeUWhuUav1YuP/vGcyncW+t90yJLk9fNZs1De2OuHTHKAKThVCokt29PYq5RoJ0QSZaIZ+rvPO23hA==" + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/code-block-writer/-/code-block-writer-10.1.1.tgz", + "integrity": "sha512-67ueh2IRGst/51p0n6FvPrnRjAGHY5F8xdjkgrYE7DDzpJe6qA07RYQ9VcoUeo5ATOjSOiWpSL3SWBRRbempMw==" }, "node_modules/collect-v8-coverage": { "version": "1.0.1", @@ -2916,6 +2931,9 @@ "merge2": "^1.3.0", "micromatch": "^4.0.2", "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8" } }, "node_modules/fast-json-stable-stringify": { @@ -2936,9 +2954,9 @@ "integrity": "sha512-WvJe06IfNYlr+6cO3uQkdKdy3Cb1LlCJSF8zRs2eT8yuhdbSlR9nIt+TgQ92RUxiRrQm+/S7RARnMfCs5iuAjw==" }, "node_modules/fastq": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.8.0.tgz", - "integrity": "sha512-SMIZoZdLh/fgofivvIkmknUXyPnvxRE3DhtZ5Me3Mrsk5gyPL42F0xr51TdRXskBxHfMp+07bcYzfsYEsSQA9Q==", + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.9.0.tgz", + "integrity": "sha512-i7FVWL8HhVY+CTkwFxkN2mk3h+787ixS5S63eb78diVRc1MCssarHq3W5cj0av7YDSwmaV928RNag+U1etRQ7w==", "dependencies": { "reusify": "^1.0.4" } @@ -3058,17 +3076,6 @@ "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" }, - "node_modules/fs-extra": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.0.1.tgz", - "integrity": "sha512-h2iAoN838FqAFJY2/qVpzFXy+EBxfVE220PalAqQLDVsFOHLJrZvut5puAbCdNv6WJk+B8ihI+k0c7JK5erwqQ==", - "dependencies": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^1.0.0" - } - }, "node_modules/fs-minipass": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", @@ -3182,6 +3189,9 @@ "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==", "dependencies": { "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" } }, "node_modules/global-dirs": { @@ -3597,6 +3607,9 @@ "dependencies": { "is-relative": "^1.0.0", "is-windows": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, "node_modules/is-accessor-descriptor": { @@ -3695,7 +3708,10 @@ "node_modules/is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "engines": { + "node": ">=0.10.0" + } }, "node_modules/is-fullwidth-code-point": { "version": "3.0.0", @@ -3717,12 +3733,18 @@ "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", "dependencies": { "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" } }, "node_modules/is-negated-glob": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz", - "integrity": "sha1-aRC8pdqMleeEtXUbl2z1oQ/uNtI=" + "integrity": "sha1-aRC8pdqMleeEtXUbl2z1oQ/uNtI=", + "engines": { + "node": ">=0.10.0" + } }, "node_modules/is-number": { "version": "7.0.0", @@ -3781,6 +3803,9 @@ "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", "dependencies": { "is-unc-path": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, "node_modules/is-stream": { @@ -3800,6 +3825,9 @@ "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", "dependencies": { "unc-path-regex": "^0.1.2" + }, + "engines": { + "node": ">=0.10.0" } }, "node_modules/is-windows": { @@ -4584,15 +4612,6 @@ "minimist": "^1.2.5" } }, - "node_modules/jsonfile": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.0.1.tgz", - "integrity": "sha512-jR2b5v7d2vIOust+w3wtFKZIfpC2pnRmFAhAC/BuweZFQR8qZzxH1OyrQ10HmdVYiXWkYUqPVsz91cG7EL2FBg==", - "dependencies": { - "graceful-fs": "^4.1.6", - "universalify": "^1.0.0" - } - }, "node_modules/jsprim": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", @@ -4676,9 +4695,9 @@ "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=" }, "node_modules/lint-staged": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-10.5.1.tgz", - "integrity": "sha512-fTkTGFtwFIJJzn/PbUO3RXyEBHIhbfYBE7+rJyLcOXabViaO/h6OslgeK6zpeUtzkDrzkgyAYDTLAwx6JzDTHw==", + "version": "10.5.2", + "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-10.5.2.tgz", + "integrity": "sha512-e8AYR1TDlzwB8VVd38Xu2lXDZf6BcshVqKVuBQThDJRaJLobqKnpbm4dkwJ2puypQNbLr9KF/9mfA649mAGvjA==", "dev": true, "dependencies": { "chalk": "^4.1.0", @@ -4890,7 +4909,10 @@ "node_modules/merge2": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "engines": { + "node": ">= 8" + } }, "node_modules/micromatch": { "version": "4.0.2", @@ -4987,15 +5009,21 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "node_modules/multimatch": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/multimatch/-/multimatch-4.0.0.tgz", - "integrity": "sha512-lDmx79y1z6i7RNx0ZGCPq1bzJ6ZoDDKbvh7jxr9SJcWLkShMzXrHbYVpTdnhNM5MXpDUxCQ4DgqVttVXlBgiBQ==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/multimatch/-/multimatch-5.0.0.tgz", + "integrity": "sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==", "dependencies": { "@types/minimatch": "^3.0.3", "array-differ": "^3.0.0", "array-union": "^2.1.0", "arrify": "^2.0.1", "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/nanomatch": { @@ -5599,10 +5627,16 @@ } }, "node_modules/prettier": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.1.2.tgz", - "integrity": "sha512-16c7K+x4qVlJg9rEbXl7HEGmQyZlG4R9AgP+oHKRMsMsuk8s+ATStlf1NpDqyBI1HpVyfjLOeMhH2LvuNvV5Vg==", - "dev": true + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.2.0.tgz", + "integrity": "sha512-yYerpkvseM4iKD/BXLYUkQV5aKt4tQPqaGW6EsZjzyu0r7sVZZNPJW4Y8MyKmicp6t42XUPcBVA+H6sB3gqndw==", + "dev": true, + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + } }, "node_modules/pretty-format": { "version": "26.6.2", @@ -5972,7 +6006,11 @@ "node_modules/reusify": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } }, "node_modules/rimraf": { "version": "3.0.2", @@ -5992,9 +6030,23 @@ } }, "node_modules/run-parallel": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.9.tgz", - "integrity": "sha512-DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q==" + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.10.tgz", + "integrity": "sha512-zb/1OuZ6flOlH6tQyMPUrE3x3Ulxjlo9WIVXR4yVYi4H9UXQaeIsPbLn2R3O3vQCnDKkAl2qHiuocKKX4Tz/Sw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] }, "node_modules/rxjs": { "version": "6.6.3", @@ -7243,13 +7295,13 @@ "dev": true }, "node_modules/ts-morph": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/ts-morph/-/ts-morph-8.2.0.tgz", - "integrity": "sha512-NHHWu+7I2/AOZiTni5w3f+xCfIxrkzPCcQbTGa81Yk3pr23a4h9xLLEE6tIGuYIubWjkjr9QVC3ITqgmA5touQ==", + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/ts-morph/-/ts-morph-9.0.0.tgz", + "integrity": "sha512-uhu0I4EDTdHCMptsR1GuEZU3gSKS5p0n41EOEZ69y5klmOAHNzntI0ivcZL5Ip9+G+o8dgQScAKSHeHXN2vEDw==", "dependencies": { "@dsherret/to-absolute-glob": "^2.0.2", - "@ts-morph/common": "~0.6.0", - "code-block-writer": "^10.1.0" + "@ts-morph/common": "~0.7.0", + "code-block-writer": "^10.1.1" } }, "node_modules/ts-node": { @@ -7352,14 +7404,24 @@ } }, "node_modules/typescript": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.0.5.tgz", - "integrity": "sha512-ywmr/VrTVCmNTJ6iV2LwIrfG1P+lv6luD8sUJs+2eI9NLGigaN+nUQc13iHqisq7bra9lnmUSYqbJvegraBOPQ==" + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.1.2.tgz", + "integrity": "sha512-thGloWsGH3SOxv1SoY7QojKi0tc+8FnOmiarEGMbd/lar7QOEd3hvlx3Fp5y6FlDUGl9L+pd4n2e+oToGMmhRQ==", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } }, "node_modules/unc-path-regex": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", - "integrity": "sha1-5z3T17DXxe2G+6xrCufYxqadUPo=" + "integrity": "sha1-5z3T17DXxe2G+6xrCufYxqadUPo=", + "engines": { + "node": ">=0.10.0" + } }, "node_modules/undici": { "version": "2.2.0", @@ -7401,11 +7463,6 @@ "node": ">=8" } }, - "node_modules/universalify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-1.0.0.tgz", - "integrity": "sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==" - }, "node_modules/unset-value": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", @@ -8447,41 +8504,41 @@ "dev": true }, "@prisma/cli": { - "version": "2.12.0-integration-nextjs-output.1", - "resolved": "https://registry.npmjs.org/@prisma/cli/-/cli-2.12.0-integration-nextjs-output.1.tgz", - "integrity": "sha512-svPYzRqtLKfzScnN9EkGEZguH0u+oMwX3j4CaoqJmQzTRnytCY7vkbfJ6lMeH9jBj+w6r8B4zWxiUQBPfoyQ2w==", + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/@prisma/cli/-/cli-2.12.1.tgz", + "integrity": "sha512-obkwK95dEeifCdVehG0rS0BlPQGLsOtc9U1MgbrjNX3MnhXQdwROnvymfPB3DBlNyoLoHGklPgi9UlwBokNXcQ==", "dev": true, "requires": { "@prisma/bar": "^0.0.1", - "@prisma/engines": "2.12.0-10.a4ef806349a7b17c41f45735ce4a36322e01c250" + "@prisma/engines": "2.12.0-18.cf0680a1bfe8d5e743dc659cc7f08009f9587d58" } }, "@prisma/client": { - "version": "2.12.0-dev.38", - "resolved": "https://registry.npmjs.org/@prisma/client/-/client-2.12.0-dev.38.tgz", - "integrity": "sha512-lXASoc1ffP0wtiAxVjltdNn3CiQ535ZrUOYTqbmbLHX8gKVlPv07a+lOtx+vHWrHOKd/12UFxE/5J9Ygo/SZtg==", + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/@prisma/client/-/client-2.12.1.tgz", + "integrity": "sha512-HP4/E9sRdxw/FB7XP4EeRa5ri8Lp1U/L7G4VAA95aM8C+8ARioQHMNDpEjC83NrOrOr4EcaZV5pXDDQL1H+F0g==", "dev": true, "requires": { - "@prisma/engines-version": "2.12.0-10.a4ef806349a7b17c41f45735ce4a36322e01c250" + "@prisma/engines-version": "2.12.0-18.cf0680a1bfe8d5e743dc659cc7f08009f9587d58" } }, "@prisma/debug": { - "version": "2.12.0-dev.38", - "resolved": "https://registry.npmjs.org/@prisma/debug/-/debug-2.12.0-dev.38.tgz", - "integrity": "sha512-M/TRjqfP1FnoVelXRVsjkbgyxqJ4PBVZx22fFcLhC7w3SOJo5Dow50423TtSuPh80K0pQaoSAZCMNQT56I5TTA==", + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/@prisma/debug/-/debug-2.12.1.tgz", + "integrity": "sha512-ke4ZOvWZffATjG7Z2Ksxhig6RU7El1YXZOquds3847Rq1/kTq0mp3NFPZuxnv1xq8XDpuKe5Op4tYnzsKibWyw==", "requires": { "debug": "^4.1.1" } }, "@prisma/engine-core": { - "version": "2.12.0-dev.38", - "resolved": "https://registry.npmjs.org/@prisma/engine-core/-/engine-core-2.12.0-dev.38.tgz", - "integrity": "sha512-LVbGfTdt1vTXHWfqq2Xqqu7aPuXrNHW8pO5ZCfJX2bRSEVRQn25f8sz8bZ5KQAFCQjRfxnncatUShpIrn/Bz4g==", - "requires": { - "@prisma/debug": "2.12.0-dev.38", - "@prisma/engines": "2.12.0-10.a4ef806349a7b17c41f45735ce4a36322e01c250", - "@prisma/generator-helper": "2.12.0-dev.38", - "@prisma/get-platform": "2.12.0-dev.38", + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/@prisma/engine-core/-/engine-core-2.12.1.tgz", + "integrity": "sha512-7zl9X7rn5HQ7s3oR5T2kAP4nuIrIEFA1l8TkEas2XAnItlP9yTjy5q/CsHhP3Z4MW8XQseZSL6pHHD5g2YZ5CQ==", + "requires": { + "@prisma/debug": "2.12.1", + "@prisma/engines": "2.12.0-18.cf0680a1bfe8d5e743dc659cc7f08009f9587d58", + "@prisma/generator-helper": "2.12.1", + "@prisma/get-platform": "2.12.1", "chalk": "^4.0.0", "cross-fetch": "^3.0.4", "execa": "^4.0.2", @@ -8494,23 +8551,23 @@ } }, "@prisma/engines": { - "version": "2.12.0-10.a4ef806349a7b17c41f45735ce4a36322e01c250", - "resolved": "https://registry.npmjs.org/@prisma/engines/-/engines-2.12.0-10.a4ef806349a7b17c41f45735ce4a36322e01c250.tgz", - "integrity": "sha512-K7T2YjR5BHGrzx0snFU4PYCOz2MsZG39NI5sQukBNomrpUU6E9//Y9cAaOKFs4U96tmdy7D/fUmsFh20tVJoHQ==" + "version": "2.12.0-18.cf0680a1bfe8d5e743dc659cc7f08009f9587d58", + "resolved": "https://registry.npmjs.org/@prisma/engines/-/engines-2.12.0-18.cf0680a1bfe8d5e743dc659cc7f08009f9587d58.tgz", + "integrity": "sha512-F6RmUZ5JpPWxmGvVDji8c4gepHIGkvYbtuFi0IoDDJVaCVo8yS656stciKFyswI6/BLWXa0X47/MIMbz6nzw7g==" }, "@prisma/engines-version": { - "version": "2.12.0-10.a4ef806349a7b17c41f45735ce4a36322e01c250", - "resolved": "https://registry.npmjs.org/@prisma/engines-version/-/engines-version-2.12.0-10.a4ef806349a7b17c41f45735ce4a36322e01c250.tgz", - "integrity": "sha512-8t42GcPEQpDJzz+KyaB/VrH3VkiBngn9JmN5LXCljlPyOddV7mU10pEL8JcIq08l97wgxMRwLHTem7gMzWb5hA==", + "version": "2.12.0-18.cf0680a1bfe8d5e743dc659cc7f08009f9587d58", + "resolved": "https://registry.npmjs.org/@prisma/engines-version/-/engines-version-2.12.0-18.cf0680a1bfe8d5e743dc659cc7f08009f9587d58.tgz", + "integrity": "sha512-IHb/Jag1Wmoq5tLZhOHP5zqLHEXqQEfrHb6l0drIBSvh2AF7yWQ3yyuD0ZEb1Nq37SvbBgop5wrWMOU8YWFTGQ==", "dev": true }, "@prisma/fetch-engine": { - "version": "2.12.0-dev.38", - "resolved": "https://registry.npmjs.org/@prisma/fetch-engine/-/fetch-engine-2.12.0-dev.38.tgz", - "integrity": "sha512-WfGacvfZRbObzoHmgnCE2YCElB0dTd4/B92iHw4lTirj7UpDWa/cw9AFfmO1qbGNMyX2Pk7xGHaHOyXM5KHhCw==", + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/@prisma/fetch-engine/-/fetch-engine-2.12.1.tgz", + "integrity": "sha512-huJS0uvkSUsnEU6CUrUfpgU9Z7PR3UlzJ9wbypk4hWtiMhfuoq2yU0ca2NxEpAhgHpSlERiLsZjBA8SlWw9WpQ==", "requires": { - "@prisma/debug": "2.12.0-dev.38", - "@prisma/get-platform": "2.12.0-dev.38", + "@prisma/debug": "2.12.1", + "@prisma/get-platform": "2.12.1", "chalk": "^4.0.0", "execa": "^4.0.0", "find-cache-dir": "^3.3.1", @@ -8530,35 +8587,35 @@ } }, "@prisma/generator-helper": { - "version": "2.12.0-dev.38", - "resolved": "https://registry.npmjs.org/@prisma/generator-helper/-/generator-helper-2.12.0-dev.38.tgz", - "integrity": "sha512-V34kD7BqtNuujHAgmb2hgHlWcBEkgkHq18F8Re7gtcUiYn0MwtqoB+ZUnMx5k+6Dv0TTR00jvYg1pbAVM0sUnA==", + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/@prisma/generator-helper/-/generator-helper-2.12.1.tgz", + "integrity": "sha512-sqZcT6Lnb1xaogy1LVu/gnqrth71V/5hbw5wCXZ/3qeoSNdSmpcBJvfwXzmQ9R50K+tHVA1lZKfGyRlgYnhGUQ==", "requires": { - "@prisma/debug": "2.12.0-dev.38", + "@prisma/debug": "2.12.1", "@types/cross-spawn": "^6.0.1", "chalk": "^4.0.0", "cross-spawn": "^7.0.2" } }, "@prisma/get-platform": { - "version": "2.12.0-dev.38", - "resolved": "https://registry.npmjs.org/@prisma/get-platform/-/get-platform-2.12.0-dev.38.tgz", - "integrity": "sha512-wPDR0gJyYhuztF3jaPPXW8wMw6fMSDtoxY++f4mHcvXVksZHea9L3oypFN4AoUqarfSPYAYen2bTlenIKXIUaw==", + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/@prisma/get-platform/-/get-platform-2.12.1.tgz", + "integrity": "sha512-bYTKvTgdbYXtNEZnaAUOdr0twiYNrtadDCGAc1YBwSCQ+P0cNmkrtn+EUwt0ZijCtKYZ1uLC6UAM0y7uxf1s6w==", "requires": { - "@prisma/debug": "2.12.0-dev.38" + "@prisma/debug": "2.12.1" } }, "@prisma/sdk": { - "version": "2.12.0-dev.38", - "resolved": "https://registry.npmjs.org/@prisma/sdk/-/sdk-2.12.0-dev.38.tgz", - "integrity": "sha512-Zbw9jJD6nJcStOCA7omQR+T9l9qs6yWbSUx8QsIBkLc6098jU1Mvr45F6fLuB68munadV939dQAWNgtYd0BMpA==", - "requires": { - "@prisma/debug": "2.12.0-dev.38", - "@prisma/engine-core": "2.12.0-dev.38", - "@prisma/engines": "2.12.0-10.a4ef806349a7b17c41f45735ce4a36322e01c250", - "@prisma/fetch-engine": "2.12.0-dev.38", - "@prisma/generator-helper": "2.12.0-dev.38", - "@prisma/get-platform": "2.12.0-dev.38", + "version": "2.12.1", + "resolved": "https://registry.npmjs.org/@prisma/sdk/-/sdk-2.12.1.tgz", + "integrity": "sha512-1/BokOdZU11lyOSaLhnmXnfY4c6JVLGFXWVfohIiPgemqbjUPvhbk7DpZYDOeNBozlLHIlzXYbU7Kdmwy7nsJQ==", + "requires": { + "@prisma/debug": "2.12.1", + "@prisma/engine-core": "2.12.1", + "@prisma/engines": "2.12.0-18.cf0680a1bfe8d5e743dc659cc7f08009f9587d58", + "@prisma/fetch-engine": "2.12.1", + "@prisma/generator-helper": "2.12.1", + "@prisma/get-platform": "2.12.1", "@timsuchanek/copy": "^1.4.5", "archiver": "^4.0.0", "arg": "^5.0.0", @@ -8670,16 +8727,16 @@ "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==" }, "@ts-morph/common": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/@ts-morph/common/-/common-0.6.0.tgz", - "integrity": "sha512-pI35nZz5bs3tL3btSVX2cWkAE8rc80F+Fn4TwSC6bQvn7fgn9IyLXVcAfpG6X6NBY5wN9TkSWXn/QYUkBvR/Fw==", + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/@ts-morph/common/-/common-0.7.0.tgz", + "integrity": "sha512-1EJYuiAjfOxrxB0VRZR4KVvPr4S7ylQv9M0IvUiBVB1HTcXAgWfineqx8n/tNIu5OhNjPQ8w9Qd7JzHbcVa64g==", "requires": { "@dsherret/to-absolute-glob": "^2.0.2", "fast-glob": "^3.2.4", - "fs-extra": "^9.0.1", "is-negated-glob": "^1.0.0", - "multimatch": "^4.0.0", - "typescript": "~4.0.2" + "mkdirp": "^1.0.4", + "multimatch": "^5.0.0", + "typescript": "~4.1.2" } }, "@types/babel__core": { @@ -8824,9 +8881,9 @@ "integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==" }, "@types/node": { - "version": "14.14.8", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.8.tgz", - "integrity": "sha512-z/5Yd59dCKI5kbxauAJgw6dLPzW+TNOItNE00PkpzNwUIEwdj/Lsqwq94H5DdYBX7C13aRA0CY32BK76+neEUA==" + "version": "14.14.10", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.10.tgz", + "integrity": "sha512-J32dgx2hw8vXrSbu4ZlVhn1Nm3GbeCFNw2FWL8S5QKucHGY0cyNwjdQdO+KMBZ4wpmC7KhLCiNsdk1RFRIYUQQ==" }, "@types/normalize-package-data": { "version": "2.4.0", @@ -9139,11 +9196,6 @@ "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", "dev": true }, - "at-least-node": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", - "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" - }, "atob": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", @@ -9591,9 +9643,9 @@ "dev": true }, "code-block-writer": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/code-block-writer/-/code-block-writer-10.1.0.tgz", - "integrity": "sha512-RG9hpXtWFeUWhuUav1YuP/vGcyncW+t90yJLk9fNZs1De2OuHTHKAKThVCokt29PYq5RoJ0QSZaIZ+rvPO23hA==" + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/code-block-writer/-/code-block-writer-10.1.1.tgz", + "integrity": "sha512-67ueh2IRGst/51p0n6FvPrnRjAGHY5F8xdjkgrYE7DDzpJe6qA07RYQ9VcoUeo5ATOjSOiWpSL3SWBRRbempMw==" }, "collect-v8-coverage": { "version": "1.0.1", @@ -10308,9 +10360,9 @@ "integrity": "sha512-WvJe06IfNYlr+6cO3uQkdKdy3Cb1LlCJSF8zRs2eT8yuhdbSlR9nIt+TgQ92RUxiRrQm+/S7RARnMfCs5iuAjw==" }, "fastq": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.8.0.tgz", - "integrity": "sha512-SMIZoZdLh/fgofivvIkmknUXyPnvxRE3DhtZ5Me3Mrsk5gyPL42F0xr51TdRXskBxHfMp+07bcYzfsYEsSQA9Q==", + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.9.0.tgz", + "integrity": "sha512-i7FVWL8HhVY+CTkwFxkN2mk3h+787ixS5S63eb78diVRc1MCssarHq3W5cj0av7YDSwmaV928RNag+U1etRQ7w==", "requires": { "reusify": "^1.0.4" } @@ -10406,17 +10458,6 @@ "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" }, - "fs-extra": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.0.1.tgz", - "integrity": "sha512-h2iAoN838FqAFJY2/qVpzFXy+EBxfVE220PalAqQLDVsFOHLJrZvut5puAbCdNv6WJk+B8ihI+k0c7JK5erwqQ==", - "requires": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^1.0.0" - } - }, "fs-minipass": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", @@ -11654,15 +11695,6 @@ "minimist": "^1.2.5" } }, - "jsonfile": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.0.1.tgz", - "integrity": "sha512-jR2b5v7d2vIOust+w3wtFKZIfpC2pnRmFAhAC/BuweZFQR8qZzxH1OyrQ10HmdVYiXWkYUqPVsz91cG7EL2FBg==", - "requires": { - "graceful-fs": "^4.1.6", - "universalify": "^1.0.0" - } - }, "jsprim": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", @@ -11733,9 +11765,9 @@ "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=" }, "lint-staged": { - "version": "10.5.1", - "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-10.5.1.tgz", - "integrity": "sha512-fTkTGFtwFIJJzn/PbUO3RXyEBHIhbfYBE7+rJyLcOXabViaO/h6OslgeK6zpeUtzkDrzkgyAYDTLAwx6JzDTHw==", + "version": "10.5.2", + "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-10.5.2.tgz", + "integrity": "sha512-e8AYR1TDlzwB8VVd38Xu2lXDZf6BcshVqKVuBQThDJRaJLobqKnpbm4dkwJ2puypQNbLr9KF/9mfA649mAGvjA==", "dev": true, "requires": { "chalk": "^4.1.0", @@ -12011,9 +12043,9 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" }, "multimatch": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/multimatch/-/multimatch-4.0.0.tgz", - "integrity": "sha512-lDmx79y1z6i7RNx0ZGCPq1bzJ6ZoDDKbvh7jxr9SJcWLkShMzXrHbYVpTdnhNM5MXpDUxCQ4DgqVttVXlBgiBQ==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/multimatch/-/multimatch-5.0.0.tgz", + "integrity": "sha512-ypMKuglUrZUD99Tk2bUQ+xNQj43lPEfAeX2o9cTteAmShXy2VHDJpuwu1o0xqoKCt9jLVAvwyFKdLTPXKAfJyA==", "requires": { "@types/minimatch": "^3.0.3", "array-differ": "^3.0.0", @@ -12542,9 +12574,9 @@ "dev": true }, "prettier": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.1.2.tgz", - "integrity": "sha512-16c7K+x4qVlJg9rEbXl7HEGmQyZlG4R9AgP+oHKRMsMsuk8s+ATStlf1NpDqyBI1HpVyfjLOeMhH2LvuNvV5Vg==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.2.0.tgz", + "integrity": "sha512-yYerpkvseM4iKD/BXLYUkQV5aKt4tQPqaGW6EsZjzyu0r7sVZZNPJW4Y8MyKmicp6t42XUPcBVA+H6sB3gqndw==", "dev": true }, "pretty-format": { @@ -12874,9 +12906,9 @@ "dev": true }, "run-parallel": { - "version": "1.1.9", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.9.tgz", - "integrity": "sha512-DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q==" + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.10.tgz", + "integrity": "sha512-zb/1OuZ6flOlH6tQyMPUrE3x3Ulxjlo9WIVXR4yVYi4H9UXQaeIsPbLn2R3O3vQCnDKkAl2qHiuocKKX4Tz/Sw==" }, "rxjs": { "version": "6.6.3", @@ -13938,13 +13970,13 @@ } }, "ts-morph": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/ts-morph/-/ts-morph-8.2.0.tgz", - "integrity": "sha512-NHHWu+7I2/AOZiTni5w3f+xCfIxrkzPCcQbTGa81Yk3pr23a4h9xLLEE6tIGuYIubWjkjr9QVC3ITqgmA5touQ==", + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/ts-morph/-/ts-morph-9.0.0.tgz", + "integrity": "sha512-uhu0I4EDTdHCMptsR1GuEZU3gSKS5p0n41EOEZ69y5klmOAHNzntI0ivcZL5Ip9+G+o8dgQScAKSHeHXN2vEDw==", "requires": { "@dsherret/to-absolute-glob": "^2.0.2", - "@ts-morph/common": "~0.6.0", - "code-block-writer": "^10.1.0" + "@ts-morph/common": "~0.7.0", + "code-block-writer": "^10.1.1" } }, "ts-node": { @@ -14026,9 +14058,9 @@ } }, "typescript": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.0.5.tgz", - "integrity": "sha512-ywmr/VrTVCmNTJ6iV2LwIrfG1P+lv6luD8sUJs+2eI9NLGigaN+nUQc13iHqisq7bra9lnmUSYqbJvegraBOPQ==" + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.1.2.tgz", + "integrity": "sha512-thGloWsGH3SOxv1SoY7QojKi0tc+8FnOmiarEGMbd/lar7QOEd3hvlx3Fp5y6FlDUGl9L+pd4n2e+oToGMmhRQ==" }, "unc-path-regex": { "version": "0.1.2", @@ -14068,11 +14100,6 @@ "crypto-random-string": "^2.0.0" } }, - "universalify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-1.0.0.tgz", - "integrity": "sha512-rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==" - }, "unset-value": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", diff --git a/package.json b/package.json index d5a8d638..3e0c339c 100644 --- a/package.json +++ b/package.json @@ -17,8 +17,8 @@ "typegraphql-prisma": "lib/generator.js" }, "peerDependencies": { - "@prisma/cli": "~2.12.0-dev.38", - "@prisma/client": "~2.12.0-dev.38", + "@prisma/cli": "~2.12.1", + "@prisma/client": "~2.12.1", "@types/graphql-fields": "^1.3.3", "@types/node": "*", "graphql-fields": "^2.0.3", @@ -26,20 +26,20 @@ "type-graphql": "^1.1.1" }, "dependencies": { - "@prisma/generator-helper": "2.12.0-dev.38", - "@prisma/sdk": "2.12.0-dev.38", + "@prisma/generator-helper": "2.12.1", + "@prisma/sdk": "2.12.1", "pluralize": "^8.0.0", "semver": "^7.3.2", - "ts-morph": "^8.2.0", + "ts-morph": "^9.0.0", "tslib": "^2.0.3" }, "devDependencies": { - "@prisma/cli": "^2.12.0-dev.38", - "@prisma/client": "2.12.0-dev.38", + "@prisma/cli": "^2.12.1", + "@prisma/client": "2.12.1", "@types/graphql-fields": "^1.3.3", "@types/graphql-type-json": "^0.3.2", "@types/jest": "^26.0.15", - "@types/node": "^14.14.8", + "@types/node": "^14.14.10", "@types/pg": "^7.14.7", "@types/pluralize": "0.0.29", "@types/semver": "^7.3.4", @@ -50,14 +50,14 @@ "graphql-type-json": "^0.3.2", "husky": "^4.3.0", "jest": "^26.6.3", - "lint-staged": "^10.5.1", + "lint-staged": "^10.5.2", "pg": "^8.5.1", - "prettier": "^2.1.2", + "prettier": "^2.2.0", "reflect-metadata": "^0.1.13", "ts-jest": "~26.4.4", "ts-node": "^9.0.0", "type-graphql": "^1.1.1", - "typescript": "~4.0.5" + "typescript": "~4.1.2" }, "license": "MIT", "engines": {